0byt3m1n1
Path:
/
data
/
17
/
1
/
36
/
100
/
1688263
/
meta
/
1821359
/
mysql.backup
/
[
Home
]
File: 1_02c4f04_1.mysqlcluster12.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster12 Database: 1_02c4f04_1 -- ------------------------------------------------------ -- Server version 5.6.29-76.2-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_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 AUTO_INCREMENT=3 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 */; INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2016-06-23 15:23:45','2016-06-23 15:23:45','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0),(2,25350,'Mr WordPress','','https://wordpress.org/','','2016-07-19 01:51:11','2016-07-19 01:51:11','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_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(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=171 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.air-techinternational.com/airtech','yes'),(2,'home','http://www.air-techinternational.com/airtech','yes'),(3,'blogname','airtech','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','redhawx10@hotmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:154:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:1:{i:0;s:41:\"wordpress-importer/wordpress-importer.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','36686','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','36686','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'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'),(95,'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'),(96,'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'),(97,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";N;s:9:\"sidebar-3\";N;s:9:\"sidebar-4\";N;s:9:\"sidebar-5\";N;s:13:\"array_version\";i:3;}','yes'),(99,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'cron','a:7:{i:1469193858;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"adcb9b75260590ff6058773ddcb9ddd6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4;}}}}i:1469201026;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1469272820;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:1469273838;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"6392c3b0cd930fb020f301c8a7fc1e72\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:82;}}}}i:1469273899;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"33e6e6febfc725b03a630e1a428f66e3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:25381;}}}}i:1469274804;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"c05ec2472768d5d73517f3f6cc03184c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:25419;}}}}s:7:\"version\";i:2;}','yes'),(107,'_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.5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.5.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.5.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.5.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.5.3\";s:7:\"version\";s:5:\"4.5.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1469187355;s:15:\"version_checked\";s:5:\"4.5.3\";s:12:\"translations\";a:0:{}}','yes'),(110,'_site_transient_timeout_theme_roots','1469188515','yes'),(111,'_site_transient_theme_roots','a:4:{s:4:\"Divi\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','yes'),(113,'_site_transient_timeout_browser_cc3e81f38bdedf75fc40dbcb80756926','1469791220','yes'),(114,'_site_transient_browser_cc3e81f38bdedf75fc40dbcb80756926','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"51.0.2704.103\";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'),(116,'can_compress_scripts','0','yes'),(117,'_site_transient_timeout_wporg_theme_feature_list','1469197248','yes'),(118,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(120,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1469187356;s:7:\"checked\";a:4:{s:4:\"Divi\";s:3:\"2.7\";s:13:\"twentyfifteen\";s:3:\"1.5\";s:14:\"twentyfourteen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.2\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:2:{s:11:\"new_version\";s:5:\"2.7.8\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"translations\";a:0:{}}','yes'),(121,'theme_mods_twentysixteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1469186817;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'),(122,'current_theme','Divi','yes'),(123,'theme_mods_Divi','a:6:{i:0;b:0;s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:5;}}','yes'),(124,'theme_switched','','yes'),(125,'et_pb_cache_notice','a:1:{s:3:\"2.7\";s:6:\"ignore\";}','yes'),(126,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(130,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(131,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(132,'et_images_temp_folder','\\\\WDP\\DFS\\42\\8\\4\\2\\4279952248\\user\\sites\\1821359.site\\www\\airtech/wp-content/uploads/et_temp','yes'),(133,'et_schedule_clean_images_last_time','1469186819','yes'),(134,'et_divi','a:3:{s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";}','yes'),(135,'_site_transient_timeout_popular_importers_en_US','1469360118','yes'),(136,'_site_transient_popular_importers_en_US','a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:86:\"Install the Blogger importer to import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:109:\"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:9:\"wpcat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:82:\"Install the LiveJournal importer to import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:99:\"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:61:\"Install the blogroll importer to import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:58:\"Install the RSS importer to import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:84:\"Install the Tumblr importer to import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:130:\"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','yes'),(138,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:4:{s:4:\"Divi\";s:3:\"2.7\";s:13:\"twentyfifteen\";s:3:\"1.5\";s:14:\"twentyfourteen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.2\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:2:{s:11:\"new_version\";s:5:\"2.7.8\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"last_checked\";i:1469187357;}','yes'),(139,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1469187367;s:7:\"checked\";a:3:{s:19:\"akismet/akismet.php\";s:6:\"3.1.11\";s:9:\"hello.php\";s:3:\"1.6\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{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:6:\"3.1.11\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/akismet.3.1.11.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip\";}}}','yes'),(140,'_transient_timeout_plugin_slugs','1469273774','no'),(141,'_transient_plugin_slugs','a:3:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";i:2;s:41:\"wordpress-importer/wordpress-importer.php\";}','no'),(142,'recently_activated','a:0:{}','yes'),(143,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1469230584','no'),(144,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 18:55:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.6-beta4-38131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 18:49:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4396\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.6 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Dominik Schilling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4309:\"<p>WordPress 4.6 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.6-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-6+dev-notes/\">in-depth field guides</a>. This is the final <a href=\"https://make.wordpress.org/core/version-4-6-project-schedule/\">planned beta</a> of WordPress 4.6, with a release candidate scheduled for next week.</p>\n<p>Some of the fixes in Beta 4 include:</p>\n<ul>\n<li><strong>Media</strong>: <code>alt</code> attributes are now always added to images inserted from URLs (<a href=\"https://core.trac.wordpress.org/ticket/36735\">#36735</a>).</li>\n<li>Object subtype handling has been removed from <code>register_meta()</code>. Details about this change are explained in <a href=\"https://make.wordpress.org/core/2016/07/20/additional-register_meta-changes-in-4-6/\">a post for developers</a>.</li>\n<li><strong>Resource hints</strong> are now limited to enqueued assets (<a href=\"https://core.trac.wordpress.org/ticket/37385\">#37385</a>).</li>\n<li>A regression with query alterations introduced by the new <code>WP_Term_Query</code> has been fixed (<a href=\"https://core.trac.wordpress.org/ticket/37378\">#37378</a>).</li>\n<li>The Ajax searches for <strong>installed and new plugins</strong> have been enhanced to fix several accessibility issues and to improve compatibility with older browsers. (<a href=\"https://core.trac.wordpress.org/ticket/37233\">#37233</a>, <a href=\"https://core.trac.wordpress.org/ticket/37373\">#37373</a>)</li>\n<li>The media player <strong>MediaElement.js</strong> has been updated to 2.22.0 to fix YouTube video embeds (<a href=\"https://core.trac.wordpress.org/ticket/37363\">#37363</a>).</li>\n<li>The <strong>Import screen</strong> was overhauled, improving accessibility and making it much easier to install and run an importer (<a href=\"https://core.trac.wordpress.org/ticket/35191\">#35191</a>).</li>\n<li><strong>Emoji support</strong> has been updated to include all of the latest Unicode 9 emoji characters (<a href=\"https://core.trac.wordpress.org/ticket/37361\">#37361</a>). ???<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f57a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3fd.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />?<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3ff.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=38123&stop_rev=38060&limit=200&verbose=on\">more than 60 changes</a> during the last week.</li>\n</ul>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>This is Beta 4,</em><br />\n<em>The last before RC 1.</em><br />\n<em>Please test all the things.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jul 2016 19:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4386\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.6 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Dominik Schilling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3169:\"<p>WordPress 4.6 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.6-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-6+dev-notes/\">in-depth field guides on make/core</a>. Some of the fixes in Beta 3 include:</p>\n<ul>\n<li><strong>Revisions:</strong> Autosaves can now be restored when revisions are disabled (<a href=\"https://core.trac.wordpress.org/ticket/36262\">#36262</a>).</li>\n<li>An improved <strong>handling of PHP’s memory limit</strong> which doesn’t lower the limit anymore (<a href=\"https://core.trac.wordpress.org/ticket/32075\">#</a><a class=\"closed ticket\" title=\"defect (bug): Only set WP_MAX_MEMORY_LIMIT by default when its greater than memory_limit (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/32075\">32075</a>).</li>\n<li><strong>TinyMCE</strong> has been updated to 4.4.0 (<a href=\"https://core.trac.wordpress.org/ticket/32075\">#</a><a class=\"closed ticket\" title=\"defect (bug): TinyMCE 4.4.0 (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/37327\">37327</a>).</li>\n<li><strong>HTTP API:</strong> Proxy settings weren’t honored by the new HTTP library. This has been fixed (<a href=\"https://core.trac.wordpress.org/ticket/37107\">#37107</a>).</li>\n<li>Improved handling of <strong>UTF-8 address headers for emails </strong>(<a href=\"https://core.trac.wordpress.org/ticket/21659\">#21659</a>).</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=38059&stop_rev=37992&limit=200&verbose=on\">more than 65 changes</a> during the last week.</li>\n</ul>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>Beta 3 is here,</em><br />\n<em>The more testing, the better.</em><br />\n<em>Gotta catch ‘em all!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jul 2016 18:43:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4371\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.6 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Dominik Schilling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2803:\"<p>WordPress 4.6 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.6-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.6 Beta 1:</p>\n<ul>\n<li><strong>Meta:</strong> The fallback authentication for the previous registration method has been restored. Also, retrieving registered metadata now works and non-core object types are no longer forcibly blocked. See <a href=\"https://core.trac.wordpress.org/ticket/35658\">#35658</a>.</li>\n<li><strong>REST API:</strong> The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. Previously, the sanitization callback ran before the validation callback. See <a href=\"https://core.trac.wordpress.org/ticket/37192\">#37192</a>.</li>\n<li><strong>Customize:</strong> The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. See <a href=\"https://core.trac.wordpress.org/ticket/37247\">#37247</a>.</li>\n<li><strong>HTTP API:</strong> <code>WP_Http::request()</code> returns an array again. See <a href=\"https://core.trac.wordpress.org/ticket/37097\">#37097</a>.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=37992&stop_rev=37925&limit=200&verbose=on\">just over 50 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.6, <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>Teenage Beta 2</em><br />\n<em>Thirteen years of pressing words</em><br />\n<em>Rejoice with testing!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Jun 2016 01:22:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4343\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.6 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Dominik Schilling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5954:\"<p>WordPress 4.6 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.6-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.6 is slated for release on <a href=\"https://make.wordpress.org/core/version-4-6-project-schedule/\">August 16</a>, but to get there, we need your help testing what we have been working on, including:</p>\n<ul>\n<li><strong>Shiny Updates v2</strong> (<a href=\"https://core.trac.wordpress.org/changeset/37714\">[37714]</a>) – <a href=\"https://make.wordpress.org/core/features/shiny-updates/\">Shiny Updates</a> replaces progress updates with a simpler and more straight forward experience when installing, updating, and deleting plugins and themes.</li>\n<li><strong>Native Fonts in the Admin</strong> (<a href=\"https://core.trac.wordpress.org/ticket/36753\">#36753</a>) – Experience faster load times, especially when working offline, a removal of a third-party dependency, and a more <a href=\"https://make.wordpress.org/core/features/font-natively/\">native-feeling experience</a> as the lines between the mobile web and native applications continue to blur.</li>\n<li><strong>Editor Improvements</strong> – A more reliable recovery mode (<a href=\"https://core.trac.wordpress.org/ticket/37025\">#37025</a>) and detection of broken URLs while you type them (<a href=\"https://core.trac.wordpress.org/ticket/36638\">#36638</a>).</li>\n</ul>\n<p>There have been changes for developers to explore as well:</p>\n<ul>\n<li><strong>Resource Hints</strong> (<a href=\"https://core.trac.wordpress.org/ticket/34292\">#34292</a>) – Allow browsers to prefetch specific pages, render them in the background, perform DNS lookups, or to begin the connection handshake (DNS, TCP, TLS) in the background.</li>\n<li>New <code>WP_Site_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/35791\">#35791</a>) and <code>WP_Network_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/32504\">#32504</a>) classes to query sites and networks with lazy loading for details.</li>\n<li><strong>Requests</strong> (<a href=\"https://core.trac.wordpress.org/ticket/33055\">#33055</a>) – A new PHP library for HTTP requests that supports parallel requests and more.</li>\n<li><code>WP_Term_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/35381\">#35381</a>) is modeled on existing query classes and provides a more consistent structure for generating term queries.</li>\n<li><strong>Language Packs</strong> (<a href=\"https://core.trac.wordpress.org/ticket/34114\">#34114</a>, <a href=\"https://core.trac.wordpress.org/ticket/34213\">#34213</a>) – Translations managed through <a href=\"https://translate.wordpress.org\">translate.wordpress.org</a> now have a higher priority and are loaded just-in-time.</li>\n<li><code>WP_Post_Type</code> (<a href=\"https://core.trac.wordpress.org/ticket/36217\">#36217</a>) provides easier access to post type objects and their underlying properties.</li>\n<li>The <strong>Widgets API</strong> (<a href=\"https://core.trac.wordpress.org/ticket/28216\">#28216</a>) was enhanced to support registering pre-instantiated widgets.</li>\n<li>Index definitions are now normalized by <code>dbDelta()</code> (<a href=\"https://core.trac.wordpress.org/changeset/37583\">[37583]</a>).</li>\n<li><strong>Comments</strong> can now be stored in a persistent object cache (<a href=\"https://core.trac.wordpress.org/ticket/36906\">#36906</a>).</li>\n<li><strong>External Libraries</strong> were updated to the latest versions – Masonry to 3.3.2 and imagesLoaded to 3.2.0 (<a href=\"https://core.trac.wordpress.org/ticket/32802\">#32802</a>), MediaElement.js to 2.21.2 (<a href=\"https://core.trac.wordpress.org/ticket/36759\">#36759</a>), and TinyMCE to 4.3.13 (<a href=\"https://core.trac.wordpress.org/ticket/37225\">#37225</a>).</li>\n<li><strong>REST API</strong> responses now include an auto-discovery header (<a href=\"https://core.trac.wordpress.org/ticket/35580\">#35580</a>) and a refreshed nonce when responding to an authenticated response (<a href=\"https://core.trac.wordpress.org/ticket/35662\">#35662</a>).</li>\n<li>Expanded <strong>Meta Registration API</strong> via <code>register_meta()</code> (<a href=\"https://core.trac.wordpress.org/ticket/35658\">#35658</a>).</li>\n<li><strong>Customizer</strong> – Improved API for <a href=\"https://make.wordpress.org/core/2016/05/04/improving-setting-validation-in-the-customizer/\">setting validation</a> (<a href=\"https://core.trac.wordpress.org/ticket/34893\">#34893</a>, <a href=\"https://core.trac.wordpress.org/ticket/36944\">#36944</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.6, <a href=\"https://make.wordpress.org/core/tag/4-6/\">check out posts tagged with 4.6 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.6&group=component&order=priority\">list of everything</a> that’s changed.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p><em>More Shiny Updates</em><br />\n<em>In 4.6 Beta 1.</em><br />\n<em>And Font Natively.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.5.3 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2016/06/wordpress-4-5-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jun 2016 09:38:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4311\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:460:\"WordPress 4.5.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by Yassine Aboukir; two different XSS problems via attachment names, reported by Jouko Pynnönen and Divyesh Prajapati; revision history information disclosure, reported […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Adam Silverstein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3571:\"<p>WordPress 4.5.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by <a href=\"http://yassineaboukir.com\">Yassine Aboukir</a>; two different XSS problems via attachment names, reported by <a href=\"https://klikki.fi/\">Jouko Pynnönen</a> and <a href=\"https://twitter.com/divy_er\">Divyesh Prajapati</a>; revision history information disclosure, reported independently by <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a> from the WordPress security team and by Dan Moen from the Wordfence Research Team; oEmbed denial of service reported by Jennifer Dodd from Automattic; unauthorized category removal from a post, reported by David Herrera from <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>; password change via stolen cookie, reported by <a href=\"https://blogwaffe.com/\">Michael Adams</a> from the WordPress security team; and some less secure <code>sanitize_file_name</code> edge cases reported by <a href=\"http://peter.westwood.name/\">Peter Westwood</a> of the WordPress security team.</p>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.5.3 fixes 17 bugs from 4.5, 4.5.1 and 4.5.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.5.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.5.3\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.3.</p>\n<p>Thanks to everyone who contributed to 4.5.3:</p>\n<p><a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/neverything\">Silvan Hagen</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> and <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.5.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2016/05/wordpress-4-5-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2016 19:17:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4290\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:381:\"WordPress 4.5.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.5.1 and earlier are affected by a SOME vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1669:\"<p>WordPress 4.5.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.5.1 and earlier are affected by a <abbr title=\"Same-Origin Method Execution\">SOME</abbr> vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS using specially crafted URIs through MediaElement.js, the third-party library used for media players. MediaElement.js and Plupload have also released updates fixing these issues.</p>\n<p>Both issues were analyzed and reported by Mario Heiderich, Masato Kinugawa, and Filedescriptor from <a href=\"https://cure53.de/\">Cure53</a>. Thanks to the team for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>, and to the Plupload and MediaElement.js teams for working closely with us to coördinate and fix these issues.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.2.</p>\n<p>Additionally, there are multiple widely publicized vulnerabilities in the ImageMagick image processing library, which is used by a number of hosts and is supported in WordPress. For our current response to these issues, see <a href=\"https://make.wordpress.org/core/2016/05/06/imagemagick-vulnerability-information/\">this post on the core development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.5.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2016/04/wordpress-4-5-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Apr 2016 18:58:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4269\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release. This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Adam Silverstein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2134:\"<p>After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release.</p>\n<p>This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an Imagick bug that could break media uploads. This maintenance release fixes a total of 12 bugs in Version 4.5. <span style=\"line-height: 1.5\">For more information, see the </span><a style=\"line-height: 1.5\" href=\"https://codex.wordpress.org/Version_4.5.1\">release notes</a><span style=\"line-height: 1.5\"> or consult the </span><a style=\"line-height: 1.5\" href=\"https://core.trac.wordpress.org/log/branches/4.5?rev=37295&stop_rev=37182\">list of changes</a><span style=\"line-height: 1.5\">.</span></p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.1.</p>\n<p>Thanks to everyone who contributed to 4.5.1:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gblsm\">gblsm</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, and <a href=\"https://profiles.wordpress.org/WiZZarD_\">Pieter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.5 “Coleman”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2016/04/coleman/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Apr 2016 19:15:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4203\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:383:\"Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site. Editing Improvements Inline Linking Stay focused on your writing with a less distracting interface that keeps you in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Mike Schroder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:27096:\"<p>Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site.</p>\n<p><iframe width=\'692\' height=\'388\' src=\'https://videopress.com/embed/scFdjVo6?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2 style=\"text-align: center\">Editing Improvements</h2>\n<p><img class=\"aligncenter size-full wp-image-4220\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?resize=692%2C277&ssl=1\" alt=\"illustration-short-inlinelinks\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?w=1000&ssl=1 1000w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?resize=300%2C120&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?resize=768%2C307&ssl=1 768w\" sizes=\"(max-width: 692px) 100vw, 692px\" data-recalc-dims=\"1\" /></p>\n<h3>Inline Linking</h3>\n<p>Stay focused on your writing with a less distracting interface that keeps you in place and allows you to easily link to your content.</p>\n<p><img class=\"aligncenter size-full wp-image-4265\" src=\"https://i0.wp.com/wordpress.org/news/files/2016/04/editing-shortcuts-big.gif?resize=692%2C415&ssl=1\" alt=\"editing-shortcuts-big\" data-recalc-dims=\"1\" /></p>\n<h3>Formatting Shortcuts</h3>\n<p>Do you enjoy using formatting shortcuts for lists and headings? Now they’re even more useful, with horizontal lines and <code><code></code>.</p>\n<hr />\n<h2 style=\"text-align: center\">Customization Improvements</h2>\n<p><img class=\"aligncenter size-full wp-image-4221\" src=\"https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?resize=692%2C277&ssl=1\" alt=\"illustration-short-responsive-preview\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?w=1000&ssl=1 1000w, https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?resize=300%2C120&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?resize=768%2C307&ssl=1 768w\" sizes=\"(max-width: 692px) 100vw, 692px\" data-recalc-dims=\"1\" /></p>\n<h3>Live Responsive Previews</h3>\n<p>Make sure your site looks great on all screens! Preview mobile, tablet, and desktop views directly in the customizer.</p>\n<p><img class=\"aligncenter wp-image-4239 size-full\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?resize=692%2C304&ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?w=1000&ssl=1 1000w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?resize=300%2C132&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?resize=768%2C338&ssl=1 768w\" sizes=\"(max-width: 692px) 100vw, 692px\" data-recalc-dims=\"1\" /></p>\n<h3>Custom Logos</h3>\n<p>Themes can now support logos for your business or brand. Try it out with Twenty Sixteen and Twenty Fifteen in the Site Identity section of the customizer.</p>\n<hr />\n<h2 style=\"text-align: center\">Under the Hood</h2>\n<div class=\"under-the-hood three-col\">\n<div class=\"col\">\n<h3>Smart Image Resizing</h3>\n<p>Generated images now load up to 50% faster with no noticeable quality loss. <a href=\"https://make.wordpress.org/core/2016/03/12/performance-improvements-for-images-in-wordpress-4-5/\">It’s really cool</a>.</p>\n</div>\n<div class=\"col\">\n<h3>Selective Refresh</h3>\n<p>The customizer now supports a <a href=\"https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/\">comprehensive framework</a> for rendering parts of the preview without rewriting your PHP code in JavaScript.</p>\n</div>\n<div class=\"col\">\n<h3>Script Loader Improvements</h3>\n<p>Better support has been added for script header/footer dependencies. New <code><a href=\"https://make.wordpress.org/core/2016/03/08/enhanced-script-loader-in-wordpress-4-5/\">wp_add_inline_script()</a></code> enables adding extra code to registered scripts.</p>\n<h3>Better Embed Templates</h3>\n<p>Embed templates have been split into parts and can be <a href=\"https://make.wordpress.org/core/2016/03/11/embeds-changes-in-wordpress-4-5/\">directly overridden by themes</a> via the template hierarchy.</p>\n<h3>JavaScript Library Updates</h3>\n<p>jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.</p>\n</div>\n</div>\n<div class=\"under-the-hood two-col\"></div>\n<hr />\n<h2 style=\"text-align: center\">The Crew</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/mikeschroder\"><img src=\"https://www.gravatar.com/avatar/76424a001dc6b3ebb4faca0c567800c4?d=mm&s=180&r=G\" alt=\"Mike Schroder\" width=\"80\" height=\"80\" /></a>This release was led by <a href=\"https://getsource.net\">Mike Schroder</a>, backed up by <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a> as Release Deputy, <a href=\"https://choycedesign.com/\">Mel Choyce</a> as Release Design Lead, and the help of these fine individuals. There are <span style=\"font-weight: 400\">298</span> contributors with props in this release. Pull up some Coleman Hawkins on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/uglyrobot\">Aaron Edwards</a>, <a href=\"https://profiles.wordpress.org/ahockley\">Aaron Hockley</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abiralneupane\">Abiral Neupane</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/aidanlane\">aidanlane</a>, <a href=\"https://profiles.wordpress.org/ambrosey\">Alice Brosey</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rockwell15\">Andrew Rockwell</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apaliku\">apaliku</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/ashmatadeen\">ash.matadeen</a>, <a href=\"https://profiles.wordpress.org/bappidgreat\">Ashok Kumar Nath</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">BandonRandon</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/berengerzyla\">berengerzyla</a>, <a href=\"https://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"https://profiles.wordpress.org/thisisit\">Bhushan S. Jawle</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/williamsba1\">Brad Williams</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/thebrandonallen\">Brandon Allen</a>, <a href=\"https://profiles.wordpress.org/bhubbard\">Brandon Hubbard</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/borgesbruno\">Bruno Borges</a>, <a href=\"https://profiles.wordpress.org/chmac\">Callum Macdonald</a>, <a href=\"https://profiles.wordpress.org/camikaos\">Cami Kaos</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/mackensen\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chetanchauhan\">Chetan Chauhan</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/chris_dev\">Chris Mok</a>, <a href=\"https://profiles.wordpress.org/christophherr\">christophherr</a>, <a href=\"https://profiles.wordpress.org/ckoerner\">ckoerner</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/compute\">Compute</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">d4z_c0nf</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/scarinessreported\">Daniel Bailey</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/diddledan\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danielpataki\">danielpataki</a>, <a href=\"https://profiles.wordpress.org/dvankooten\">Danny van Kooten</a>, <a href=\"https://profiles.wordpress.org/thewanderingbrit\">Dave Clements</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dnewton\">David Newton</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dossy\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/drebbitsweb\">Dreb Bits</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duaneblake\">duaneblake</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/codex-m\">Emerson Maningo</a>, <a href=\"https://profiles.wordpress.org/enej\">Enej Bajgoric</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericdaams\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/faishal\">faishal</a>, <a href=\"https://profiles.wordpress.org/fantasyworld\">fantasyworld</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/finnj\">finnj</a>, <a href=\"https://profiles.wordpress.org/firebird75\">firebird75</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fusillicode\">fusillicode</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gblsm\">gblsm</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/garusky\">Giuseppe Mamone</a>, <a href=\"https://profiles.wordpress.org/jubstuff\">Giustino Borzacchiello</a>, <a href=\"https://profiles.wordpress.org/grantpalin\">Grant Palin</a>, <a href=\"https://profiles.wordpress.org/groovecoder\">groovecoder</a>, <a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/iamntz\">Ionut Staicu</a>, <a href=\"https://profiles.wordpress.org/ivankristianto\">Ivan Kristianto</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jadpm\">jadpm</a>, <a href=\"https://profiles.wordpress.org/jamesdigioia\">James DiGioia</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/jaspermdegroot\">Jasper de Groot</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeffpyebrookcom\">Jeffrey Schutzman</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/ardathksheyna\">Jess G.</a>, <a href=\"https://profiles.wordpress.org/boluda\">Joan Boluda</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelerr\">joelerr</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnnypea\">JohnnyPea</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/keraweb\">Jory Hogeveen</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/joshlevinson\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/jrchamp\">jrchamp</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/katieburch\">katieburch</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kiranpotphode\">Kiran Potphode</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/krissiev\">KrissieV</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leemon\">leemon</a>, <a href=\"https://profiles.wordpress.org/layotte\">Lew Ayotte</a>, <a href=\"https://profiles.wordpress.org/liamdempsey\">liamdempsey</a>, <a href=\"https://profiles.wordpress.org/luan-ramos\">Luan Ramos</a>, <a href=\"https://profiles.wordpress.org/luciole135\">luciole135</a>, <a href=\"https://profiles.wordpress.org/lpawlik\">Lukas Pawlik</a>, <a href=\"https://profiles.wordpress.org/latz\">Lutz Schröer</a>, <a href=\"https://profiles.wordpress.org/madvic\">madvic</a>, <a href=\"https://profiles.wordpress.org/marcochiesi\">Marco Chiesi</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/mark8barnes\">Mark Barnes</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/gitlost\">Martin Burke</a>, <a href=\"https://profiles.wordpress.org/mattfelten\">Matt Felten</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattgeri\">MattGeri</a>, <a href=\"https://profiles.wordpress.org/maweder\">maweder</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mcapybara\">mcapybara</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/meitar\">Meitar</a>, <a href=\"https://profiles.wordpress.org/mensmaximus\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/micropat\">micropat</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Mika Epstein</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"https://profiles.wordpress.org/mwidmann\">mwidmann</a>, <a href=\"https://profiles.wordpress.org/nexurium\">nexurium</a>, <a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"https://profiles.wordpress.org/nicdford\">Nic Ford</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/oaron\">oaron</a>, <a href=\"https://profiles.wordpress.org/overclokk\">overclokk</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/obrienlabs\">Pat O\'Brien</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/perezlabs\">Perez Labs</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/cadeyrn\">petermolnar</a>, <a href=\"https://profiles.wordpress.org/walbo\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar\">Pirate Dunbar</a>, <a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/profforg\">Profforg</a>, <a href=\"https://profiles.wordpress.org/programmin\">programmin</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahalaboulfeth\">rahal.aboulfeth</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/rob\">rob</a>, <a href=\"https://profiles.wordpress.org/rogerhub\">Roger Chen</a>, <a href=\"https://profiles.wordpress.org/romsocial\">RomSocial</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samhotchkiss\">Sam Hotchkiss</a>, <a href=\"https://profiles.wordpress.org/rosso99\">Sara Rosso</a>, <a href=\"https://profiles.wordpress.org/sarciszewski\">Scott Arciszewski</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scottbrownconsulting\">scottbrownconsulting</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergejmueller\">Sergej Müller</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shamess\">Shane</a>, <a href=\"https://profiles.wordpress.org/shinichin\">Shinichi Nishikawa</a>, <a href=\"https://profiles.wordpress.org/sidati\">Sidati</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/aargh-a-knot\">sky</a>, <a href=\"https://profiles.wordpress.org/slushman\">slushman</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/stephanethomas\">stephanethomas</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>, <a href=\"https://profiles.wordpress.org/subharanjan\">Subharanjan</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/5um17\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/tacoverdo\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/tahteche\">tahteche</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/takayukister\">Takayuki Miyoshi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timplunkett\">timplunkett</a>, <a href=\"https://profiles.wordpress.org/tmuikku\">tmuikku</a>, <a href=\"https://profiles.wordpress.org/skithund\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/rilwis\">Tran Ngoc Tuan Anh</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/vhomenko\">vhomenko</a>, <a href=\"https://profiles.wordpress.org/virgodesign\">virgodesign</a>, <a href=\"https://profiles.wordpress.org/vladolaru\">vlad.olaru</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vtieu\">vtieu</a>, <a href=\"https://profiles.wordpress.org/webaware\">webaware</a>, <a href=\"https://profiles.wordpress.org/wesleye\">Wesley Elfring</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wisdmlabs\">WisdmLabs</a>, <a href=\"https://profiles.wordpress.org/wpdelighter\">WP Delighter</a>, <a href=\"https://profiles.wordpress.org/wp-architect\">wp-architect</a>, <a href=\"https://profiles.wordpress.org/xavortm\">xavortm</a>, <a href=\"https://profiles.wordpress.org/yetanotherdaniel\">yetAnotherDaniel</a>, and <a href=\"https://profiles.wordpress.org/zinigor\">zinigor</a>.\n<p> </p>\n<p>Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video and <a href=\"https://jacklenox.com\">Jack Lenox</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided translations for the release. WordPress 4.5 comes fully translated into 44 languages and the release video has been translated into 32 languages!</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.6!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 4.5 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2016/04/wordpress-4-5-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Apr 2016 05:14:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4186\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"The second release candidate for WordPress 4.5 is now available. We’ve made 91 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Mike Schroder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3044:\"<p>The second release candidate for WordPress 4.5 is now available.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=37171&stop_rev=37078&limit=120&verbose=on\">91 changes</a> since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on <strong>Tuesday, April 12</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.5 yet, now is the time!</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.5, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.5-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.5, check out the <a href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.5 and update your plugin’s <em>Tested up to</em> version in the readme to 4.5. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p><strong>Polyglots</strong>, strings are now hard frozen, including the About Page, so you are clear to translate!</p>\n<p>A few changes of note since the first release candidate:</p>\n<ul>\n<li>Normalized non-slashing of data in the REST API infrastructure. If you use the REST API infrastructure, <a href=\"https://make.wordpress.org/core/2016/04/06/rest-api-slashed-data-in-wordpress-4-4-and-4-5/\">check out the post on this change</a>.</li>\n<li>Customizer settings for widget instances get registered a bit later to give a chance for the widget instances themselves to be registered first. See <a href=\"https://core.trac.wordpress.org/ticket/36431\">#36431</a> for details.</li>\n<li>Fixed various cropping issues in the Custom Logo feature and Twenty Fifteen / Twenty Sixteen themes.</li>\n</ul>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where you can find the <a href=\"https://make.wordpress.org/core/2016/03/30/wordpress-4-5-field-guide/\">Field Guide for 4.5</a>.</p>\n<p><em>It’s great fun to test</em><br />\n<em>Enjoyment in another</em><br />\n<em>Release Candidate</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Contributor Weekend: Global WordPress Translation Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2016/04/contributor-weekend-global-wordpress-translation-day/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Apr 2016 21:04:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4191\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:378:\"Global WordPress Translation Day is a one-day contributor initiative organised by the WordPress project’s Polyglots team that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in. Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3069:\"<p class=\"p1\"><span class=\"s1\">Global WordPress Translation Day is a one-day contributor initiative organised </span><span class=\"s1\">by the WordPress project’s </span><span class=\"s1\"> <a href=\"https://make.wordpress.org/polyglots\"><span class=\"s2\">Polyglots team</span></a> that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in.</span></p>\n<p class=\"p1\"><span class=\"s1\">Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for 24 hours covering all time zones.</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>What are we doing?</b></span></p>\n<ul class=\"ul1\">\n<li class=\"li1\"><span class=\"s1\"><span class=\"s1\">Live training: A 24h live streaming of tutorials about translating WordPress in different languages and making your code translatable (30min/1h sessions in different languages including a general instruction and specifics for that particular language). The </span></span><span class=\"s1\">internationalization </span>sessions will be in English. The sessions will be presented by some of the most experienced WordPress translators and internationalization experts. The Schedule can be found on the website.</li>\n<li class=\"li1\"><span class=\"s1\">Local translation contributor days: Groups of contributors gather at different locations and work face to face.</span></li>\n<li class=\"li1\"><span class=\"s1\">Local remote translation contributor days: Current translation teams dedicate time and get involved remotely to do orientation for their potential contributors or work with their current translation teams on translating as many strings as they can.</span></li>\n</ul>\n<p class=\"p1\"><span class=\"s1\">If you organise a local meetup, why not organise a contributor day for translating in your language?</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>Join us! Read about the initiative and </b><a href=\"https://make.wordpress.org/polyglots/2016/03/02/wordpress-global-translation-day-april-24th-2016/\"><span class=\"s3\"><b>sign up as an organiser</b></span></a><b>.</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>Can I get involved if I only speak English?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Yes! Even if you only speak English, it would be great to get involved and check out some of the English locale variants – English as spoken in the United Kingdom, Canada, New Zealand, Australia, South Africa. English has many variants across the globe and you can learn about the differences and why it’s important that users have the option to choose a variant during some of our sessions. And if you’re in a funky mood, you can give translating the interface into Emoji a try! Yes, we have a WordPress in Emoji locale!</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>Questions?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">The polyglots team and the event organisers hang out in <a href=\"http://wordpress.slack.com/messages/polyglots/\">#Polyglots in Slack</a>. They will gladly help you out.</span></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 22 Jul 2016 11:36:24 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 20 Jul 2016 18:55:45 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911080210\";}','no'),(145,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1469230585','no'),(146,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1469187385','no'),(147,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1469230585','no'),(148,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WP Mobile Apps: WordPress for iOS: Version 6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://apps.wordpress.com/2016/07/16/wordpress-for-ios-version-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2227:\"<p>Hi there, WordPress users! <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">Version 6.3 of the WordPress for iOS app</a> is now available in the App Store.</p>\n<h1>What’s New:</h1>\n<p><strong>Access your site’s media library</strong> — even if WordPress isn’t given permission to access your personal photo library.</p>\n\n<a href=\"https://apps.wordpress.com/img_2282/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/06/img_2282.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"IMG_2282\" /></a>\n\n<p><strong>An improved design</strong> makes updating your WordPress.com profile and account settings easier and faster than ever.</p>\n<p><strong>Several UI fixes.</strong> A bevy of fixes for WordPress for iPad, including search field, date picker, and layout improvements.</p>\n<p><strong>And much more! </strong>You can see the full list of changes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue%20is%3Aclosed%20milestone%3A6.3\">here</a>.</p>\n<h1>Thank You</h1>\n<p>Thanks to all of the contributors who worked on this release:<br />\n<a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/claudiosmweb\">@claudiosmweb</a>, <a href=\"https://github.com/diegoreymendez\">@diegoreymendez</a>, <a href=\"https://github.com/frosty\">@frosty</a>, <a href=\"https://github.com/jleandroperez\">@jleandroperez</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/kurzee\">@kurzee</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/sendhil\">@sendhil</a>, <a href=\"https://github.com/SergioEstevao\">@SergioEstevao</a>.</p>\n<p>You can track the development progress for the next update by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue+milestone%3A6.4+\" target=\"_blank\">our 6.4 milestone on GitHub</a>. Until next time!</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3471&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Jul 2016 21:12:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"diegoreymendez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.tv Blog: Staff Pick: Theming in WordPress – Where do I start?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://blog.wordpress.tv/2016/07/16/staff-pick-theming-in-wordpress-where-do-i-start/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1125:\"<p>From the stage of <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">WordCamp Europe 2016</a> here is Edmund Turbin’s great presentation on how to get started in creating WordPress themes.</p>\n<p></p>\n<p>Base theme, child theme, framework – These are a few of the options you can use for creating a WordPress Theme. Wether you are developing a theme for your personal blog, a clients website, or a theme to be used by other sites and the WordPress community, it is important to know the different approaches for getting started with theme development.</p>\n<p><a href=\"http://www.slideshare.net/eturbin/theming-wordpress-where-do-i-start\">Presentation Slides</a></p>\n<p><a href=\"http://wordpress.tv/\">Watch more great videos on WordPress.tv!</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/524/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=524&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Jul 2016 02:49:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Post Status: Medium and WordPress — Draft Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=25489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://poststatus.com/medium-wordpress-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2575:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p>In this episode, Joe and Brian talk about Medium & WordPress and whether Medium and similar platforms are a significant threat to WordPress. They also discuss the benefits and challenges of open source platforms versus proprietary ones, and WordPress’s potential as a lower level item in the site stack.</p>\n<p><!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/41890.mp3\">https://audio.simplecast.com/41890.mp3</a><br />\n<a href=\"http://audio.simplecast.com/41890.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://wordpress.tv/2016/06/25/matt-mullenweg-interview-and-qa/\">Interview with Matt</a></li>\n<li><a href=\"http://wordpress.tv/2016/06/30/joe-hoyle-the-ultimate-rest-api-talk-part-1/\">Joe’s REST API talk</a></li>\n<li><a href=\"https://github.com/joehoyle/vienna\">Vienna WordPress app concept</a></li>\n<li><a href=\"https://ma.tt/2015/03/typewriter/\">Billionaire’s Typewriter</a></li>\n<li><a href=\"https://markarms.com/2016/06/23/what-to-consider-when-the-platforms-show-up-with-money/\">What to Consider When the Platforms Show up With Money</a></li>\n<li><a href=\"https://medium.com/\">Medium.com</a></li>\n<li><a href=\"https://developer.wordpress.com/calypso/\">WordPress.com Calypso</a></li>\n<li><a href=\"https://www.alleyinteractive.com/blog/how-medium-became-livejournal-for-publishers/\">Medium compared to LiveJournal</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p>This episode is sponsored by <a href=\"https://pippinsplugins.com/\">Pippin’s Plugins.</a> If you want to sell downloads, setup content restriction, or start an affiliate program, Pippin’s Plugins have you covered. If you need all three, even better. Pippin’s Plugins is well known for making some of the best coded and most reliable plugins in the market. Check out <a href=\"https://pippinsplugins.com/\">PippinsPlugins.com </a>for more information.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Jul 2016 23:28:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WordPress.tv Blog: WordCamp Videos – Copywriting for SEO and improving your site security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://blog.wordpress.tv/2016/07/08/wordcamp-videos-copywriting-for-seo-and-improving-your-site-security/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1545:\"<h2 class=\"video-title\">Aaron Campbell: Website Security – The Big Picture w/ Simple Steps to Take</h2>\n<p>Security can be complex, intimidating, and even frightening. Don’t let the enormity of it scare you into inaction. Learn what some of the security researchers and security professionals deal with, and then find out some simple steps you can take to secure your sites.</p>\n<p></p>\n<p>More videos from <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">WordCamp Europe 2016</a></p>\n<h2 class=\"video-title\">Beyond SEO – Copywriting for professionals – Marieke van de Rakt & Joost de Valk</h2>\n<p>SEO has gone from a technical trade to being more marketing focussed. Joost & Marieke will talk about how to gain great rankings & satisfied visitors by writing good content. Focussing on SEO copywriting has a major pitfall. We give examples and tips on how to write a post that is both readable as well as SEO-friendly.</p>\n<p></p>\n<p><a href=\"http://www.slideshare.net/yoast/beyond-seo-copywriting-for-professionals\">Presentation slides</a></p>\n<p>More videos from <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">WordCamp Europe 2016</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/507/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/507/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=507&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Jul 2016 16:29:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Post Status: WordCamp Europe 2016, held in Vienna, was a massive success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=25313\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://poststatus.com/wordcamp-europe-2016-massive-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34867:\"<p>WordCamp Europe 2016 — held in Vienna’s beautiful MuseumsQuartier — was wonderfully executed, and a highlight of the year in WordPress conferences. Organized by a huge team of dedicated volunteers, many of whom worked near full time in the weeks leading up to the events, pulled off the largest WordCamp ever.</p>\n<p>Nearly 2,000 attendees streamed into Vienna for WordCamp Europe, and over the course of two conference days and a contributor day, showed just how diverse and special the WordPress community is.</p>\n<p>There were many great talks, and I unfortunately didn’t get to see near enough of them, but fortunately the team got videos onto WordPress.tv incredibly fast, and you can now watch <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">all WordCamp Europe sessions</a> for yourself.</p>\n<p>I had the privilege to take part in the conference in two sessions, first as a moderator of a panel of business owners, on the topic of <a href=\"http://wordpress.tv/2016/06/29/panel-discussion-cultivating-happy-teams-for-better-business/\">cultivating happy teams</a>. I also greatly enjoyed <a href=\"http://wordpress.tv/2016/06/25/matt-mullenweg-interview-and-qa/\">interviewing Matt Mullenweg</a> for the event keynote.</p>\n<p>I really recommend you check out all of the talks and choose those which you may learn from. I have pictures from some of those I attended, as well as from the event in general and contributor day.</p>\n\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-1/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-1-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Emcee\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-2/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-2-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Welcome to WCEU\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-3/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-3-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU dotmap\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-4/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-4-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU stage\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-5/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-5-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mike Little, WordPress co-founder\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-6/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-6-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"The stars of this conference\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-7/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-7-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"John Blackbourn\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-8/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-8-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-9/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-9-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-10/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-10-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Remkus de Vries\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-11/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-11-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Simon Dickson\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-13/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-13-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Helen\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-14/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-14-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Siobhan and Benji\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-15/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-15-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Adam Warner\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-16/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-16-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Wapuu coloring book\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-17/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-17-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joe Hoyle\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-18/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-18-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joe Hoyle\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-19/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-19-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"MuseumsQuartier\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-20/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-20-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-21/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-21-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU audience\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-22/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-22-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More Nacin\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-23/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-23-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Tom Willmot, \" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-24/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-24-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"K.Adam White\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-25/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-25-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More K.Adam\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-26/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-26-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Sara Rosso, Emcee\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-27/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-27-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Barry\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-28/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-28-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ivelina\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-29/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-29-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mike Little\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-30/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-30-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Family friendly\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-31/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-31-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Kari Leigh\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-32/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-32-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"audience\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-33/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-33-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Dancing Jenny\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-34/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-34-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Jenny and Petya handoff\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-35/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-35-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU organizer transition\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-36/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-36-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Kari Leigh doing her thing\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-37/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-37-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU organizers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-38/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-38-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Petya and friends\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-39/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-39-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Hall E+G\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-40/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-40-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Courtyard\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-41/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-41-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Picture of Picture Takers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-42/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-42-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Goodbye\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-43/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-43-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Robert O\'Rourke\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-44/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-44-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Robert, Sonja, John\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-45/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-45-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Tom & Simon\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-46/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-46-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Probably REST API talk\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-47/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-47-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Winky Japh\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-48/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-48-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Suave Tarei\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-49/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-49-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Bronson\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-50/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-50-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Oh, Ant\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-51/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-51-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Serious Ant\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-52/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-52-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Sneaky K.Adam\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-53/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-53-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Human Made\'s latest\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-54/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-54-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Can\'t get enough Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-55/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-55-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Shinichi\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-56/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-56-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Matt Mullenweg\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-57/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-57-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ben May\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-58/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-58-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"masked Petya\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-59/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-59-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ladies of the ball\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-60/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-60-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\'s tie\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-61/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-61-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\'s profile\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-62/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-62-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\'s satisfaction\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-63/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-63-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Blue steel\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-64/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-64-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin & Matt\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-65/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-65-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Human Made ballers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-66/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-66-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Human Made ballers 2\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-67/\"><img width=\"150\" height=\"137\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-67-150x137.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Even more Human Made ballers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-68/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-68-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ball dancers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-69/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-69-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ball dancers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-70/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-70-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WordPress Co-founders\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-71/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-71-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joost\'s kicks\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-72/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-72-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joost slick\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-73/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-73-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mark Jaquith\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-74/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-74-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Power Convo\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-75/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-75-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Aaron\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-76/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-76-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mika\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-77/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-77-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Jean\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-78/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-78-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Hat game\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-79/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-79-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Alain\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-80/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-80-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributors\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-81/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-81-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nice stickers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-82/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-82-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Cassidy\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-83/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-83-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Pascal\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-84/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-84-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Tammie\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-85/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-85-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Hugo and his awesome laptop\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-86/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-86-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributors\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-87/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-87-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Phone break\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-88/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-88-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More Hugo\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-89/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-89-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Seriously, that laptop\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-90/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-90-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Matthew Haines-Young\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-91/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-91-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Impressed face?\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-92/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-92-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Collaboration\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-93/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-93-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More collaboration\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-94/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-94-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributor day\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-95/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-95-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Break\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-96/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-96-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Konstantin\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-97/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-97-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Recording\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-98/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-98-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Chris\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-99/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-99-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Can\'t get enough Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-100/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-100-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-101/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-101-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Laughing\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-102/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-102-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Dominik\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-103/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-103-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nikolay\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-104/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-104-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Working hard\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-105/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-105-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Helen judging Ryan\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-106/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-106-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"New Contributor Room\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-107/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-107-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Adam teaching\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-108/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-108-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"New contributors\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-109/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-109-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Accessibility testing\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-110/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-110-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"a11y collaboration\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-111/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-111-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Morten\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-112/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-112-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Listening\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-113/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-113-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributor\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-114/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-114-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Plugins\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-115/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-115-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Discussion\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-116/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-116-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Lior\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-117/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-117-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Brad\" /></a>\n\n<p> </p>\n<p>I’ll have more takeaways from WordCamp Europe <a href=\"https://poststatus.com/club\">in the member newsletter</a>, but for now, I hope you enjoy a few pictures! Thank you to the WordCamp Europe organizing team and volunteers for your efforts, and the entire European community for welcoming those of us who traveled from abroad. It was a blast, and I hope to see you again <a href=\"https://2017.europe.wordcamp.org/\">next year in Paris</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Jul 2016 20:28:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.tv Blog: Most popular this month\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://blog.wordpress.tv/2016/06/30/most-popular-this-month/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1603:\"<p>For the last month on WordPress.tv we had a little under 100,000 visits to our little corner of the internet. Here are the most popular videos from the last month. Enjoy!</p>\n<h2 class=\"video-title\">Mika Epstein: Plugin Reviews Demystified (How to Review a Plugin)</h2>\n<p>When you submit a plugin, it seems to fall into a big black box. Then, suddenly, you get an email telling you things that are incorrect and need some attention. What actually happens is at once incredibly simple and painstakingly annoying. I should know. I do it every single day. And I’m here to help you understand what it is.</p>\n<p></p>\n<p><a href=\"http://slides.halfelf.org/wcatl2016/#/\">Presentation Slides</a></p>\n<h2 class=\"video-title\">Kyle Maurer and Adam Silver: WP Battles: Plugins vs. Themes</h2>\n<p>The classic contest. Themes against plugins. Which are better? Which can solve your problems, fix your site and grow your business? In this epic showdown we’ll explore the purposes and use cases, pros and cons, strengths and weaknesses of these two critical components of any WordPress website.</p>\n<p></p>\n<p><a href=\"https://docs.google.com/presentation/d/1p9lcpexP-2AcwV4WtnfvlamoOSKJhTaa8OPlgqt_otQ/pub?start=false&\">Presentation Slides</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/488/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/488/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=488&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Jun 2016 16:41:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WP Mobile Apps: WordPress for Android: Version 5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3429\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://apps.wordpress.com/2016/06/28/wordpress-for-android-version-5-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3145:\"<h1>Visual Editor</h1>\n<p>We’ve worked hard to bring a new editor to the app — it’s a complete rewrite designed to bring you a much smoother editing experience. When you open a draft or a published post, you’ll now get a new visual editing experience with image, link, and styling tools like the ones you use in the full web version of WordPress.</p>\n<p>Advanced users, don’t worry! You’ll be able to switch to HTML view and edit code by tapping <em>HTML</em> on the bottom right:</p>\n<p><img class=\"alignnone wp-image-3402 size-large\" src=\"https://apps.files.wordpress.com/2016/05/screenshot-2016-05-04_11-49-14-480.png?w=614&h=1024\" alt=\"screenshot-2016-05-04_11.49.14.480\" width=\"614\" height=\"1024\" /></p>\n<div id=\"v-XuDHCGBJ-1\" class=\"video-player\">\n</div>\n<h1>People Management</h1>\n<p>You can now manage your WordPress.com site users. Simply access your user list with <em>People </em>link from <em>My Sites </em>screen<i> </i>and update your users’ role or remove them from your site.</p>\n<p><img class=\"alignnone wp-image-3469\" src=\"https://apps.files.wordpress.com/2016/06/device-2016-06-21-162615.png?w=605&h=1074\" alt=\"People Management\" width=\"605\" height=\"1074\" /></p>\n<h1>Other Changes</h1>\n<p>Version 5.5 also comes with a few other fixes:</p>\n<ul>\n<li>Fixed an issue when selecting a hidden site from search</li>\n</ul>\n<p>You can track our development progress for the next release by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-Android/milestones/5.6\">our 5.6 milestone on GitHub</a>.</p>\n<h1>Beta</h1>\n<p>Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.</p>\n<p>Want to become a tester? <a href=\"https://play.google.com/apps/testing/org.wordpress.android\">Opt-in</a>!</p>\n<h1>Thank you</h1>\n<p>Thanks to our GitHub contributors: <a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/aforcier\">@aforcier</a>, <a href=\"https://github.com/daniloercoli\">@daniloercoli</a>, <a href=\"https://github.com/hypest\">@hypest</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mzorz\">@mzorz</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/roundhill\">@roundhill</a>, and <a href=\"https://github.com/tonyr59h\">@tonyr59h</a>.</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3429&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"https://apps.wordpress.com/2016/06/28/wordpress-for-android-version-5-5/\"><img alt=\"demo-visual-editor-edited2\" src=\"https://videos.files.wordpress.com/XuDHCGBJ/demo-visual-editor-edited2_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jun 2016 14:54:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress.tv Blog: Spotlight: WordCamp Miami 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=464\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2223:\"<p>WordCamp Miami helped kick off the 2016 WordCamp season with sunny skies and great presentations on how to take your WordPress site to the next level. You can see all the <a href=\"https://wordpress.tv/event/wordcamp-miami-2016/\">WordCamp Miami sessions here</a>, but below are a few that stood out for us.</p>\n<h2>\nRachel Carden: Tools and Techniques for Evaluating Accessibility</h2>\n<div id=\"v-o320Yj17-1\" class=\"video-player\">\n</div>\n<p>When your website is accessible, all users can access your content no matter their abilities. Visually-impaired users can visit your website using a screen reader. Those who can’t use the mouse can navigate your site using a keyboard or other input device. Some accessibility features might also improve your SEO. When your site is inaccessible, research shows you could be excluding up to 20 percent of your users. This talk for all skill levels will review tools and techniques you can use to test and improve your site’s accessibility.</p>\n<p><a href=\"http://www.slideshare.net/rachelcarden/tools-and-techniques-for-evaluating-accessibility\">Presentation Slides</a></p>\n<p> </p>\n<h2>Kids WordPress Panel Discussion</h2>\n<div id=\"v-CypUoG9y-1\" class=\"video-player\">\n</div>\n<p>Kids talking about WordPress and blogging at WordCamp Miami 2016.</p>\n<p> </p>\n<p> </p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/464/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/464/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=464&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\"><img alt=\"Rachel Carden: Tools and Techniques for Evaluating Accessibility\" src=\"http://videos.videopress.com/o320Yj17/toolsandtechniquesforevaluatingaccessibility_std.original.jpg\" width=\"160\" height=\"120\" /></a></div><div><a href=\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\"><img alt=\"Kids WordPress Panel Discussion\" src=\"http://videos.videopress.com/CypUoG9y/kidspanel_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2016 16:41:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WordPress.tv Blog: Developing for WordPress with Pippin Williamson and Danilo Ercoli\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://blog.wordpress.tv/2016/06/15/developing-for-wordpress-with-pippin-williamson-and-danilo-ercoli/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1891:\"<h2 class=\"video-title\">Pippin Williamson: Ask Me Anything About Plugins</h2>\n<p>Pippin is a prolific plugin developer and founder of several successful commercial WordPress plugin projects. This session is a Q&A style format where the audience asked question related to plugin development, the WordPress.org plugins directory, selling plugins, building a development team, and anything else related to plugins.</p>\n<p></p>\n<p>More from <a href=\"http://wordpress.tv/event/wordcamp-san-diego-2016/\">WordCamp San Diego 2016</a></p>\n<p> </p>\n<h2 class=\"video-title\">Danilo Ercoli: Migliorare le performance di WordPress con il caching e l’esecuzione differita di codice</h2>\n<p>Questo talk è rivolto sia a chi ha appena iniziato a sviluppare con WordPress, sia agli sviluppatori più esperti che lo conoscono già da parecchio tempo, ed è un’introduzione ad alcuni argomenti come il caching e l’esecuzione differita di codice PHP, che sono utili per migliorare notevolmente le performance del tuo sito. Alcuni degli argomenti trattati sono il corretto utilizzo della cache e dei plugin di caching. Un’introduzione al WordPress Jobs System, e come eseguire codice differito senza dover quindi rallentare il rendering della pagina.</p>\n<p></p>\n<p><a href=\"https://wptv.files.wordpress.com/2016/04/danilo-ercoli-migliorare-performance-wp-caching-esecuzione-differita-codice-wctrn-2016.pdf\">Presentation Slides</a></p>\n<p>More from <a href=\"http://wordpress.tv/event/wordcamp-torino-2016/\">WordCamp Torino 2016</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/439/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/439/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=439&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jun 2016 16:37:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Post Status: How WordPress news happens — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=25018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://poststatus.com/wordpress-news-happens-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1557:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. This episode of Post Status Draft is hosted by Sarah Gooding — another WordPress journalist — and Brian Krogsgard.</p>\n<p><span>In this episode, Sarah and Brian discuss how they do WordPress news, manage working remotely, and handle family life.</span></p>\n<a href=\"https://audio.simplecast.com/39891.mp3\">https://audio.simplecast.com/39891.mp3</a>\n<p><a href=\"http://audio.simplecast.com/39891.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://wptavern.com/category/opinion\">WP Tavern opinion</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p><span>This episode is sponsored by <a href=\"https://www.valet.io/\">Valet</a>. Valet helps keep your clients happy & coming back. They offer expert services and keep the websites they manage functioning flawlessly. They offer preventative care that provides peace of mind around the clock. For more information, check out <a href=\"https://www.valet.io/\">their website</a> and thank you to Valet for being a Post Status partner. </span><b> </b></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jun 2016 13:35:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WordPress.tv Blog: How to create child themes and multi-lingual blogs – Featured on WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"http://blog.wordpress.tv/2016/06/08/how-to-create-child-themes-and-multi-lingual-blogs-featured-on-wordpress-tv/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2153:\"<h2 class=\"video-title\">Corinne Welsh: My First Child Theme</h2>\n<p>Corrine Welsh explains how to get started with themes in WordPress, starting with a case study: why, why then, and why not sooner. From there she looks at the structure of a theme and walks through the steps of building a child theme. You may leave inspired to roll up your sleeves and get your hands dirty in theming after this great talk.</p>\n<div id=\"v-6oXMxwGi-1\" class=\"video-player\">\n</div>\n<p>From <a href=\"http://wordpress.tv/event/wordcamp-london-2016/\">WordCamp London 2016</a></p>\n<h2 class=\"video-title\">Maciej Pilarski: How To Make Your WordPress Website Multilingual</h2>\n<p>In this presentation Maciej Pilarski goes into detail on how to easily and quickly create a traditional multilingual website or eCommerce store. He also compares most popular multilingual plugins and also shows how this can be done without using any plugins, as well as discusses the benefits to your business of going global and how this can be done in minutes.</p>\n<div id=\"v-K21BXW6Y-1\" class=\"video-player\">\n</div>\n<p>From <a href=\"http://wordpress.tv/event/wordcamp-london-2016/\">WordCamp London 2016</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/414/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/414/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=414&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://blog.wordpress.tv/2016/06/08/how-to-create-child-themes-and-multi-lingual-blogs-featured-on-wordpress-tv/\"><img alt=\"Corinne Welsh: My First Child Theme\" src=\"http://videos.videopress.com/6oXMxwGi/video-b0595a6e44_std.original.jpg\" width=\"160\" height=\"120\" /></a></div><div><a href=\"http://blog.wordpress.tv/2016/06/08/how-to-create-child-themes-and-multi-lingual-blogs-featured-on-wordpress-tv/\"><img alt=\"Maciej Pilarski: How to Make your WordPress Website Multilingual\" src=\"http://videos.videopress.com/K21BXW6Y/video-c5c8665f72_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jun 2016 01:46:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WP Mobile Apps: WordPress for Android: Version 5.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3403\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://apps.wordpress.com/2016/06/01/wordpress-for-android-version-5-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3183:\"<p>Hello WordPress users! <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Version 5.4 of the WordPress for Android app</a> is now available in the Google Play Store.</p>\n<h1>Gravatar update</h1>\n<p>Did you just take a great selfie? You can update your Gravatar from the app on the <em>Me</em> screen. Tap your profile picture, and follow the prompts to take a new photo or pick an image from your device’s photo library.</p>\n<div id=\"v-a5lLmHSc-1\" class=\"video-player\">\n</div>\n<h1>Smart Lock for Passwords integration</h1>\n<p>Signing in with a WordPress.com account is easier than ever with Smart Lock for Passwords, the Google password manager. If you signed in to your account on your computer using Google’s Chrome browser, the username and password fields will be automatically pre-filled when you open the app — you can even manage several identities.</p>\n<p><img class=\"alignnone wp-image-3404 size-large\" src=\"https://apps.files.wordpress.com/2016/05/screenshot-2016-05-04_12-08-06-614.png?w=614&h=1024\" alt=\"screenshot-2016-05-04_12.08.06.614\" width=\"614\" height=\"1024\" /></p>\n<h1>Other Changes</h1>\n<p>Version 5.4 also comes with a few other fixes:</p>\n<ul>\n<li>Fixed comment previews with images in the Comment List screen.</li>\n<li>Fixed an issue with tag display in the Reader.</li>\n<li>Fixed a problem sometimes removed the <em>Themes</em> option after sign-in.</li>\n</ul>\n<p>You can track our development progress for the next release by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-Android/milestones/5.5\">our 5.5 milestone on GitHub</a>.</p>\n<h1>Beta</h1>\n<p>Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.</p>\n<p>Want to become a tester? <a href=\"https://play.google.com/apps/testing/org.wordpress.android\">Opt-in</a>!</p>\n<h1>Thank you</h1>\n<p>Thanks to our GitHub contributors: <a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/aforcier\">@aforcier</a>, <a href=\"https://github.com/daniloercoli\">@daniloercoli</a>, <a href=\"https://github.com/hypest\">@hypest</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mzorz\">@mzorz</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/roundhill\">@roundhill</a>, and <a href=\"https://github.com/tonyr59h\">@tonyr59h</a>.</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3403&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"https://apps.wordpress.com/2016/06/01/wordpress-for-android-version-5-4/\"><img alt=\"gravatar\" src=\"https://videos.files.wordpress.com/a5lLmHSc/gravatar_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jun 2016 11:53:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordCamp Incubator Program to Launch in Indonesia, Zimbabwe, and Colombia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=55034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wptavern.com/wordcamp-incubator-program-to-launch-in-indonesia-zimbabwe-and-columbia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2932:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/flags.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/flags.jpg?resize=1020%2C500\" alt=\"flags\" class=\"aligncenter size-full wp-image-16697\" /></a></p>\n<p>After receiving <a href=\"http://wptavern.com/wordcamp-incubator-program-receives-182-applications-narrows-candidates-to-16-communities\" target=\"_blank\">182 applications from cities all over the world</a>, the WordPress Community Team has selected three locations for the WordCamp Incubator program:</p>\n<ul>\n<li>Denpasar, Indonesia</li>\n<li>Harare, Zimbabwe</li>\n<li>Medellín, Colombia</li>\n</ul>\n<p>Representatives from the thirteen other short-listed locations are encouraged to organize a local WordPress meetup and will have the help of Community Team mentors as needed.</p>\n<p>Thanks to the addition of a new volunteer deputy from the Community Team, the program will move forward with three locations, instead of having to scale back to two, as previously anticipated. Each event has been assigned a deputy who will meet bi-weekly with the local team to mentor the new WordCamp organizers.</p>\n<p>Andrea Middleton outlined in the <a href=\"https://make.wordpress.org/community/2016/05/25/wordcamp-incubator-locations-announcement/\" target=\"_blank\">announcement</a> how the team plans to proceed with getting these events off the ground.</p>\n<p>“Denpasar, Harare, and Medellín will work with their respective deputies to start a monthly WordPress meetup group or add their existing meetup group to the chapter account program,” Middleton said. “Once the local WordPress user group is meeting regularly, each team will work on finding a venue, setting a date, recruiting speakers, and spreading the word about the upcoming WordCamp.”</p>\n<p>In order to take the pressure off the new organizers, the Community team will assist them in scheduling and finding speakers. The events will be 100% funded by the global sponsorship grant so organizers can focus on community building without the pressure of fundraising. Middleton said they are aiming for no more than three non-local speakers at each event, which she anticipates will happen in the last quarter of 2016.</p>\n<p>The challenge with the Incubator program is to ensure these events are a launching point and not just a flash in the pan. Middleton and the community team deputies are working to establish these emerging communities so that they continue to grow organically after the events conclude.</p>\n<p>“The goal for these events is to organize an easily reproducible, one-day, one-track event with about 50-75 attendees,” Middleton said. “Hopefully by the end of the organizing/incubating experience, members of the local community will feel confident that they can organize an annual WordCamp independently in the years to come.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2016 05:12:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Donncha: WordPress is thirteen!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://z9.io/?p=89499890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://z9.io/2016/05/27/wordpress-is-thirteen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1231:\"<p>You could have knocked me over with a feather today when I read <a href=\"https://ma.tt/2016/05/wordpress-is-a-teenager/\">Matt’s post</a> announcing that WordPress was celebrating a birthday!</p>\n<p>It didn’t seem so long ago that we were working on b2++, hacking the multiuser bits in and doing all sorts of crazy things with it.</p>\n<p>Now I’m “typing” this on a mobile phone by swiping my finger across a virtual keyboard. Back then the closest to this that I could imagine would be some sort of SMS integration!</p>\n<p>WordPress today is unrecognisable from what it was back then, especially if you use the slick Calypso interface.</p>\n<p>I’m looking forward to seeing what the next few years bring.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://z9.io/2013/08/02/like-a-dog-and-his-ball/\" rel=\"bookmark\" title=\"Permanent Link: Like a dog and his ball\">Like a dog and his ball</a></li><li> <a href=\"http://z9.io/2009/01/28/wordpress-mu-27/\" rel=\"bookmark\" title=\"Permanent Link: WordPress MU 2.7\">WordPress MU 2.7</a></li><li> <a href=\"http://z9.io/2008/09/02/wordpress-mu-261/\" rel=\"bookmark\" title=\"Permanent Link: WordPress MU 2.6.1\">WordPress MU 2.6.1</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2016 22:57:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Post Status: WordPress.org — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/wordpress-org-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3513:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p><span>In this episode, Joe and Brian discuss the structure and function of the WordPress.org website, which is the hub of the WordPress project. From the actual software distribution, to discussions about the project, to support, and buying swag: it all happens from WordPress.org. We break down what’s what and what we think you should know.</span></p>\n<p><a href=\"https://audio.simplecast.com/38479.mp3\">https://audio.simplecast.com/38479.mp3</a><br />\n<a href=\"http://audio.simplecast.com/38479.mp3\">Direct Download</a></p>\n<h3>Notes</h3>\n<p>Who owns WordPress.org?<br />\nWho works on WordPress.org<br />\nHow WordPress.org distributes software updates</p>\n<h3>Different Sections of WordPress.org Navigation</h3>\n<ul>\n<li>Showcase</li>\n<li>WordPress theme directory — and reviews — and commercial themes</li>\n<li>WordPress plugin directory — and reviews</li>\n<li>Mobile — Redirects to .com</li>\n<li>Support Forums / Codex “documentation”</li>\n<li>Make WordPress (Get Involved)</li>\n<li>About (many sub pages and also project structure)</li>\n<li>Blog</li>\n<li>Hosting</li>\n<li>Download (button — in future to be <a href=\"https://make.wordpress.org/meta/2016/02/29/get-wordpress-improving-the-path-to-wordpress/\">Get WordPress</a>)</li>\n</ul>\n<h3>Other Sections</h3>\n<ul>\n<li><a href=\"https://core.trac.wordpress.org/\">core.trac.wordpress.org</a></li>\n<li><a href=\"https://developer.wordpress.org/\">developer.wordpress.org</a></li>\n<li><a href=\"https://mercantile.wordpress.org/\">mercantile.wordpress.org</a></li>\n<li><a href=\"http://jobs.wordpress.net/\">jobs.wordpress.net</a></li>\n<li><a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a></li>\n<li><a href=\"https://wordpress.org/ideas/\">Ideas</a></li>\n</ul>\n<h3>Other Linked Sites</h3>\n<ul>\n<li><a href=\"https://central.wordcamp.org/\">WordCamp</a></li>\n<li><a href=\"http://wordpress.tv/\">WordPress.tv</a></li>\n<li><a href=\"https://buddypress.org/\">BuddyPress</a></li>\n<li><a href=\"https://bbpress.org/\">bbPress</a></li>\n<li><a href=\"https://wordpress.com/\">WordPress.com</a></li>\n<li><a href=\"https://ma.tt/\">ma.tt</a></li>\n</ul>\n<h3>Active Projects for Improving</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/tag/helphub/\">Helphub</a></li>\n<li>Handbooks (theme), plugin published</li>\n<li>Plugin directory</li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/\">Blog for WordPress.org projects</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p><span>This episode is sponsored by Gravity Forms. <a href=\"http://www.gravityforms.com/\">Gravity Forms</a> makes the best web forms on the planet. Over a million WordPress sites are already using Gravity Forms. Is yours? For more information, check out their <a href=\"http://www.gravityforms.com/\">website</a> and thank you to Gravity Forms for being a Post Status partner. </span><b> </b></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2016 19:18:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Jetpack 4.0.3 Patches a Critical XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=55036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/jetpack-4-0-3-patches-a-critical-xss-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2266:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif?resize=700%2C276\" alt=\"jetpack-logo\" class=\"aligncenter size-full wp-image-27470\" /></a></p>\n<p><a href=\"https://jetpack.com/2016/05/27/jetpack-4-0-3-critical-security-update/\" target=\"_blank\">Jetpack 4.0.3 is a security release</a> that contains an important fix for a critical vulnerability that has been present in the plugin since version 2.0, released in 2012. According to Jetpack team member Sam Hotchkiss, a stored XSS vulnerability was found in the way that some Jetpack shortcodes are processed, which allows an attacker to insert JavaScript into comments to hijack a visitor’s browser.</p>\n<p>This particular bug is similar to one <a href=\"https://blog.sucuri.net/2016/05/security-advisory-stored-xss-bbpress-2.html\" target=\"_blank\">recently found and patched in bbPress</a>.</p>\n<p>“Similar issues may exist in other plugins, and it’s a good reminder about the power of regular expressions to create issues when parsing data,” Hotchkiss said.</p>\n<p>The Jetpack team has been working with the WordPress security team to push out point releases for all vulnerable branches of the plugin’s codebase, which includes all versions following 2.0. They are using WordPress’ core automatic update system, so all sites that have not explicitly opted out will receive the security update.</p>\n<p>“Fortunately, we have no evidence of this being used in the wild,” Hotchkiss said. “However, now that this update is public, it’s just a matter of time before someone attempts to exploit it.” The Jetpack team is advising users to update as soon as possible, as the update also fixes any potential exploits that may have already been put in place.</p>\n<p>The team credits Marc-Alexandre Montpas from <a href=\"https://sucuri.net/\" target=\"_blank\">Sucuri</a> for finding the bug and disclosing it responsibly. Users will be notified about the security release via email, but those who have Akismet and/or VaultPress installed have already been protected since the first reporting of the vulnerability.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2016 01:05:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Post Status: Growing a lifestyle business without losing the lifestyle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://poststatus.com/growing-lifestyle-business/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8760:\"<p><em><strong>Editor’s Note</strong>: This is a guest post by Nate Wright. Nate is a WordPress developer and solopreneur. He runs <a href=\"http://themeofthecrop.com\">Theme of The Crop</a>, a niche WordPress theme company geared toward restaurant websites. You can learn more about Nate on his <a href=\"https://poststatus.com/profiles/nate-wright/\">Post Status profile</a> and follow him on <a href=\"https://twitter.com/natewr\">Twitter</a>.</em></p>\n<hr />\n<p>Here’s a scenario you’re probably familiar with: a friend or family member, not terribly tech-savvy, approaches you with an idea. Why don’t you build Facebook for clowns? What about Uber for sandwiches?</p>\n<p>Their ideas are often a little better than these. Sometimes they’re worse. But in my case the conversation always gets to the same point in the end.</p>\n<p>You can build stuff on the internet. Why aren’t you shooting for the stars? Don’t you want to be rich like Zuckerberg?</p>\n<p>Right now some of you may be thinking: yes I do! This post isn’t for you.</p>\n<p>This is for those of you who cringe at the thought of your days filling up with hiring and training staff, conducting meetings, or filling out paperwork. Those of you who don’t want to live the big siloed life of a CEO. Who dove into the WordPress market because you wanted to build things yourself. For yourself.</p>\n<h3>The rockstars and the rest of us</h3>\n<p>It’s hard to find someone more widely admired among WordPress developers — and more deserving of that admiration — than <a href=\"https://pippinsplugins.com/about/\">Pippin Williamson</a>. So when he <a href=\"https://pippinsplugins.com/control-give-grow/\">described his evolution</a> from staunch go-it-aloner to team leader, many of us sat up and listened.</p>\n<p>The <a href=\"https://pippinsplugins.com/control-give-grow/#comments\">comments</a> in response to that post exhibit a common mix of anxiety, frustration and hope for us go-it-aloners, who have carved out small (and not so small) niches in the WordPress world.</p>\n<p>We’re overstretched and under resourced. We lack good marketing strategies. And we can see that growth will come from transforming our businesses into larger enterprises.</p>\n<p>But then we start thinking about what that means. The hiring. The firing. The training. The meetings. The paperwork. <i>The liability</i>.</p>\n<p>‘I don’t want to be the next Zuckerberg,’ you may think. Then, hopefully, you’ll laugh at the absurdity. But really, you may think, ‘I don’t even want to be the next <a href=\"http://carlhancock.com/\">Carl Hancock</a> or <a href=\"https://yoast.com/author/joost/\">Joost de Valk</a>.’</p>\n<p>Let me be honest with you. I’ll stop putting words in your mouth and put them in mine.</p>\n<p>I have a lifestyle business. No, I don’t sell lifestyle products. I have a business <em>tailored to my lifestyle</em>.</p>\n<p>I have a business that allows to me to take lunch when I want, finish the day when I want, go on holiday when I want, write the code that I want. That’s my job perk. That’s my killer bonus. No, that’s my Shangri-La.</p>\n<p>When people tell you to hire early or scale quickly, they’re right that giving up control can be liberating. But it can also be encumbering. It brings new responsibilities at the same time that it releases you from old ones.</p>\n<p>Whether or not growing your team is right for you will depend on your temperament, your appetite and the kind of lifestyle you want.</p>\n<h3>Being a little fish in a big pond</h3>\n<p>But let’s be honest. You took a chance on the WordPress market because you saw a window of opportunity. That window may be closing.</p>\n<p>In the last few years we’ve seen a lot of consolidation. The theme market exploded, <a href=\"http://inside.envato.com/envato-stories-muhammad-haris-themefusion-2/\">made millions for a few</a>, and then caused a gold rush which <a href=\"http://scottbolinger.com/wordpress-theme-business/\">saturated the market and pushed out small operators</a>.</p>\n<p>At the same time, two big traditional distribution channels dried up: the official <a href=\"https://wordpress.org/themes/\">WordPress.org theme repository</a>, which has a huge backlog of themes awaiting approval, and <a href=\"https://theme.wordpress.com/\">Automattic’s marketplace</a>, which is closed to new entrants.</p>\n<p>We’re also seeing more traditional investment in WordPress properties. The big one is the <a href=\"http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/\">$160 million raised by Automattic</a> and Automattic’s subsequent <a href=\"https://poststatus.com/automattic-acquired-woocommerce-woothemes/\">acquisition of WooThemes</a>. Many actors are moving more aggressively to leverage or retain their market position. Syed Balkhi is on a buying and building spree (<a href=\"http://enviragallery.com/about-us/\">1</a>, <a href=\"http://optinmonster.com/about/\">2</a>, <a href=\"https://wpforms.com/say-hello-to-wpforms/\">3</a>, <a href=\"http://wptavern.com/syed-balkhi-acquires-google-analytics-by-yoast-renames-to-monsterinsights\">4</a>). Ninja Forms did a <a href=\"https://ninjaforms.com/releasing-three/\">ground-up rebuild</a>. Pippin’s shedding non-essential products (<a href=\"https://pippinsplugins.com/easy-content-types-acquired/\">1</a>, <a href=\"https://pippinsplugins.com/nikhil-vimal-adopts-front-end-registration-and-login-forms-plugin/\">2</a>) and <a href=\"https://pippinsplugins.com/selfish/\">purging some third-party addons</a>.</p>\n<p>The ecosystem looks increasingly unfriendly to us go-it-aloners. Automattic was the first to go big. Given exclusive commercial access to the WordPress trademark, it carved out its own space and split WordPress down the middle. Now the other half — the WordPress for the rest of us — is going big too.</p>\n<p>The nice thing about being a small operator is that you only need a tiny sliver of the pie. But as the size of the market has grown, it’s become more difficult to attract attention. Showing up with a good product isn’t enough.</p>\n<h3>Going it alone, together</h3>\n<p>My lifestyle business is working well for me. Revenue keeps inching up. Slowly.</p>\n<p>But it might not make it in a different kind of WordPress space. I’ve been thinking a lot about that lately. And I bet you have too.</p>\n<p>Where’s the market going? What am I willing to trade to survive? Which headaches are <a href=\"http://www.codeinwp.com/blog/transparency-report-14/\">worth changing direction for</a> and which headaches aren’t?</p>\n<p>Here are some of the ideas I’ve been tossing around:</p>\n<h3>Contractors</h3>\n<p>Hiring out. I could scale up or down easily, depending on how well it goes. But it’s tough to manage quality when juggling vendors.</p>\n<p>And what would I contract? I’d like to shed my bumbling efforts in marketing and traffic generation. But that seems like precisely the kind of job full of jackals who don’t know what they’re doing.</p>\n<p>Ok, that’s harsh. I’ll just say: I worry it’d be a headache to manage it well.</p>\n<p>Theme development seems the most plausible, since there’s a large body of talented, hungry themers washing up from the stormy seas of ThemeForest. But it may be the least valuable since the market is being swallowed up by a few big themes.</p>\n<h3>Commissions</h3>\n<p>Affiliate marketing is already working for me. A little. I could go further and recruit theme or plugin developers to sell from my site on commission.</p>\n<p>Then I’m saddled with support for products I didn’t build. Can I maintain quality? Can I drive enough traffic to be an attractive outlet for them? Will I end up with all of the headaches I wanted to avoid?</p>\n<h3>Partnerships</h3>\n<p>Maybe I’ll trade in my king-of-the-hill cap and bring on partners. Not employees. Genuine partners with overlapping skill sets. Instead of being a go-it-aloner we can be two or three go-it-aloners going it alone together!</p>\n<p>Or maybe that’s just a terrible way to run a business.</p>\n<h3>Alliances</h3>\n<p>There are a lot of us out there. Independent themers looking to expand beyond ThemeForest or give up on the old freemium approach of the official repository. Plugin developers looking for a new home or seeking out themes that will integrate with their plugins.</p>\n<p>We could probably do something special if we made stronger alliances. Combined to build to stronger platforms for our products.</p>\n<p>But that sounds like a lot of project management. Isn’t that what we were hoping to avoid?</p>\n<p>I don’t know. I’m going to go write some code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2016 18:10:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Nate Wright\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WP Mobile Apps: WordPress for iOS: Version 6.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://apps.wordpress.com/2016/05/25/wordpress-for-ios-version-6-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3021:\"<p>Hi there, WordPress users! <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">Version 6.2 of the WordPress for iOS app</a> is now available in the App Store.</p>\n<h1>What’s New:</h1>\n<p><strong>Sharing just got easier!</strong> Post content from apps to your WordPress.com site with a new Share extension. Also, share a post right from your editor’s preview screen.</p>\n\n<a href=\"https://apps.wordpress.com/img_2229_2/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/05/img_2229_2.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"IMG_2229_2\" /></a>\n<a href=\"https://apps.wordpress.com/img_2230/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/05/img_2230.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"IMG_2230\" /></a>\n\n<p><strong>Improved clipboard support: </strong>Working with images? You can now copy and paste single images in your editor.</p>\n<p><strong>Login with ease:</strong> We improved error messages for self-hosted users.</p>\n<p><strong>Enhancements:</strong> Because “good” is not enough! Here’s the full <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.2+label%3A%22%5BType%5D+Enhancement%22\">list of enhancements</a>.</p>\n<p><strong>Bugs, be gone!</strong> We zapped bugs that prevented images from rendering properly and caused backspaces to misbehave. You can see the full list of bug fixes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.1+label%3A%22%5BType%5D+Bug%22\">here</a>!</p>\n<h1>Thank You</h1>\n<p>Thanks to all of the contributors who worked on this release:<br />\n<a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/akirk\">@akirk</a>, <a href=\"https://github.com/alexcurylo\">@alexcurylo</a>, <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/diegoreymendez\">@diegoreymendez</a>, <a href=\"https://github.com/frosty\">@frosty</a>, <a href=\"https://github.com/jleandroperez\">@jleandroperez</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/kurzee\">@kurzee</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/nheagy\">@nheagy</a>, <a href=\"https://github.com/rachelmcr\">@rachelmcr</a>, <a href=\"https://github.com/sendhil\">@sendhil</a>, <a href=\"https://github.com/mattmiklic\">@mattmiklic</a> and <a href=\"https://github.com/SergioEstevao\">@SergioEstevao</a>.</p>\n<p>You can track the development progress for the next update by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue+milestone%3A6.3+\" target=\"_blank\">our 6.3 milestone on GitHub</a>. Until next time!</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3416&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 May 2016 06:05:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"diegoreymendez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WPTavern: In Case You Missed It – Issue 9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=55015&preview_id=55015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wptavern.com/in-case-you-missed-it-issue-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8011:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png\" rel=\"attachment wp-att-50955\"><img class=\"size-full wp-image-50955\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?resize=676%2C292\" alt=\"In Case You Missed It Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Chris Lema Launches Beyond Good</h2>\n<p>Chris Lema has launched a new site called <a href=\"http://beyondgood.com/\">Beyond Good </a>that provides insight, tips, and methodologies for leading employees to become better than good. If it’s anything like his other sites, it’s sure to be a hit in the WordPress community.</p>\n<h2>Remote Jobs, a Remote Worker Specific Jobs Board</h2>\n<p>Chris Wallace and the team at Lift have launched <a href=\"https://remotejobs.com/\">Remote Jobs</a>, a jobs board specifically catered to remote workers. According to Wallace, “The site exists to help others find remote jobs that connect them with their passions in life.” Check out the site as there’s already a decent listing of opportunities available for remote workers.</p>\n<h2>Why .Blog is Worth $19M</h2>\n<p>Matt Mullenweg participated in a <a href=\"http://venturebeat.com/2016/05/12/the-creator-of-wordpress-on-why-blog-was-worth-19-million/\">phone interview with VentureBeat</a>. The first question in the interview asks why the .blog domain is worth $19M.</p>\n<blockquote><p>Well, the domain business is actually a really good business because you can sell a domain and people use it and keep it forever. So, if you look at like a Verisign, or people who have TLDs, it’s actually an incredible business.</p>\n<p>We really wanted .blog to be open, and some of the other applications for .blog were closed, including Google — so, let’s say for example, only Blogger could have a .blog domain. And we thought that .blog should be open to everyone, even if they’re not using WordPress.</p>\n<p>I gotta be honest though, it was a stressful auction.</p></blockquote>\n<p>There are other tidbits of information included in the interview that I highly encourage you to read. If I were Google, I’d be upset as .blog is the perfect complimentary domain for Blogger.</p>\n<h2>Drupal Association Gives Community Member a Lifetime Ban</h2>\n<p>DrupalCon New Orleans took place last week and during the event, several speakers <a href=\"https://www.drupal.org/node/2729687\">experienced online harassment</a> in the form of derogatory racist, homophobic, and misogynistic comments and images from an anonymous Twitter account. Upon further investigation by community members and the Drupal Association technical and event staff, the harassment was tracked to an attendee at the event.</p>\n<blockquote><p>This person was then confronted by members of the Drupal Association staff and the Community Working Group. They were asked to leave the event and informed that they have been banned from attending any future DrupalCons as well as any events produced by the Drupal Association, in accordance with the <a href=\"https://events.drupal.org/neworleans2016/code-conduct\" rel=\"nofollow\">DrupalCon Code of Conduct</a>, which states, ‘We do not tolerate harassment of conference participants in any form.’ Shortly after the person left the conference, the account from which the harassing tweets were made was deleted.</p></blockquote>\n<p>This is an excellent example of why Codes of Conduct exist for events. By the way, check out the <a href=\"https://plan.wordcamp.org/code-of-conduct/\">Code of Conduct</a> that’s in place for every WordCamp. If you experience harassment of any kind at a WordCamp, please tell event staff.</p>\n<h2>Plans Published to Upgrade WordPress Support Forums</h2>\n<p>Jennifer Dodd published a <a href=\"https://make.wordpress.org/meta/2016/05/19/wordpress-org-forums-upgrade/\">detailed plan</a> for migrating the WordPress.org support forums from bbPress 1.x to 2.x. The project is a huge undertaking and involves moving massive amounts of data. If all goes according to plan, the support forums will be on bbPress 2.x by the end of the year. I’m sure a lot of support forum volunteers are stoked to hear this news.</p>\n<h2>What NOT to Name a WordPress Theme</h2>\n<p>This tweet by Ryan Sullivan gave me a good laugh.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'d strongly consider rebranding. <a href=\"https://t.co/9MeevJTlPq\">pic.twitter.com/9MeevJTlPq</a></p>\n<p>— Ryan D. Sullivan (@ryandonsullivan) <a href=\"https://twitter.com/ryandonsullivan/status/733120690816065536\">May 19, 2016</a></p></blockquote>\n<p></p>\n<h2>Tom McFarlin on Improving the WordPress Plugin UX</h2>\n<p>Tom McFarlin published a <a href=\"https://tommcfarlin.com/wordpress-plugin-user-experience-2/\">great article</a> that offers ideas on how plugin developers can improve the WordPress plugin user experience. His first suggestion is a key reason I think GravityForms became successful.</p>\n<blockquote><p>Try to make sure that your project tightly integrates with the core WordPress user interface.</p></blockquote>\n<p>When I witnessed GravityForms for the first time in 2009, I loved how it integrated into the WordPress backend as if it were a part of the core software. Fast forward to 2016 and plugins that tie into a service are experimenting with overlay interfaces that replace WordPress’. The most recent example I recall is WP Forms <a href=\"http://wptavern.com/wpforms-aims-to-be-the-most-beginner-friendly-forms-plugin-for-wordpress\">that I reviewed</a> earlier this year.</p>\n<p>In my review, I specifically noted that the interface the developers used allowed me to focus on creating forms. It doesn’t seem like it’s a WordPress core feature and it didn’t have too. While the advice McFarlin gives is likely accurate for most cases, there are plugins that benefit from having a unique user interface different from WordPress’.</p>\n<h2>Don’t Edit Core</h2>\n<p>This comic <a href=\"http://www.commitstrip.com/en/2016/05/17/coder-dilemma-9-the-upgrade/\">created by CommitStrip</a> made me smile.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Coder Dilemma #9 – The Upgrade<br /> <a href=\"https://t.co/2Tu2l1tgYX\">https://t.co/2Tu2l1tgYX</a> <a href=\"https://t.co/xnMr2VdYWv\">pic.twitter.com/xnMr2VdYWv</a></p>\n<p>— CommitStrip (@CommitStrip) <a href=\"https://twitter.com/CommitStrip/status/732505464768843776\">May 17, 2016</a></p></blockquote>\n<p></p>\n<h2>Wapuu Tattoo!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project. WordCamp St. Louis 2016, took place last weekend and one of the attendees had a Wapuu tattoo! Wapuu looks good everywhere, including human skin!</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Wapuu has been sighted at <a href=\"https://twitter.com/hashtag/wcstl?src=hash\">#wcstl</a> <a href=\"https://twitter.com/hashtag/wordpress?src=hash\">#wordpress</a> <a href=\"https://twitter.com/hashtag/wapuu?src=hash\">#wapuu</a> <a href=\"https://t.co/4HYlp6GI0S\">pic.twitter.com/4HYlp6GI0S</a></p>\n<p>— Nile Flores (@blondishnet) <a href=\"https://twitter.com/blondishnet/status/731504592668758017\">May 14, 2016</a></p></blockquote>\n<p></p>\n<p>That’s it for issue nine. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 May 2016 22:30:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordPress Meta Team Publishes Prototypes of The Plugin Directory Redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=55006\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/wordpress-meta-team-publishes-prototypes-of-the-plugin-directory-redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3713:\"<p>In early 2015, the WordPress.org Meta team <a href=\"http://wptavern.com/wordpress-plugin-directory-launches-new-design\">redesigned</a> the <a href=\"https://wordpress.org/plugins/\">WordPress plugin directory</a> and added a number of new features. In an effort to iterate on the page’s layout, the Meta Team has <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/\">published prototypes</a> of a new design for the <a href=\"http://codepen.io/mapk/full/jqxqbo/\">plugin directory’s home</a> and <a href=\"http://codepen.io/mapk/full/KzGQKv/\">search results pages</a>.</p>\n<p>The prototypes are inspired by <a href=\"https://get.wp.com/\">Get WordPress</a>, a landing page that provides key information about the WordPress project at a glance.</p>\n<p>There are a few things to keep in mind while looking at these prototypes. The first is that plugin information displayed on the page is inaccurate. Second, the Pro and Light classifications are for design purposes only. Third, links at the bottom will point to their corresponding pages.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PluginDirectoryMockup1.png\"><img class=\"size-full wp-image-55007\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PluginDirectoryMockup1.png?resize=1025%2C2753\" alt=\"WordPress Plugin Directory Homepage Protoype\" /></a>WordPress Plugin Directory Homepage Protoype\n<p>Unlike the current design, the prototype displays far less information. Authors, Last Updated, Compatibility, and Active Installs are absent from the homepage view. Initial feedback <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/#comment-8151\">highlights the concern</a> that too much information has been stripped away.</p>\n<p>In response to a comment on the announcement post, Samuel Sidler, <span class=\"st\">Apollo Team Lead at Automattic and contributor to the Meta team</span>, <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/#comment-8154\">explains</a> why he doesn’t think the information is useful to users.</p>\n<blockquote><p>Author, as you said, is only really useful for insiders. The latter two, meanwhile, are already taken into account in the search results. If a plugin doesn’t have a recent compatible version, it will move down the list. If it’s too old, it won’t get shown at all (which is the case today).</p>\n<p>Active installs is more interesting, but we account for it weighting search results as-is. I actually find it refreshing to <em>not</em> show the active installs as it allows for less-popular plugins to get more downloads. Users will be less likely to click the popular plugins (outside of familiar names) and more likely to find the plugin they actually need.</p></blockquote>\n<p>Another commenter suggests <a href=\"https://profiles.wordpress.org/awakensolutions/\">creating a simple/advanced view. </a>By default, the page could display a simplistic design while giving power users an option for more details.</p>\n<p>“Just like <a href=\"https://wordpress.org/about/philosophy/\" rel=\"nofollow\">WordPress core</a>, we strive to design for the majority and build features for the 80%,” Sidler said in response to the comment. “An ‘advanced’ view doesn’t meet that requirement, in my eyes.”</p>\n<p>The Meta team is iterating quickly and will soon publish a prototype of the plugin details page. If you have feedback on the plugin homepage and search result prototypes, please leave a comment on <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/\">the announcement post</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 May 2016 20:19:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WPWeekly Episode 235 – Interview with James Giroux Envato’s WordPress Evangelist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=55000&preview_id=55000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/wpweekly-episode-235-interview-with-james-giroux-envatos-wordpress-evangelist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1298:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://jamesgiroux.ca/\">James Giroux</a>, Envato’s WordPress evangelist. We discuss a number of topics including what he’s accomplished since taking over the position in January, the item support policy change, and author driven pricing.</p>\n<p>We also find out what his favorite part of the job is and what he enjoys most about his role at Envato. Last but not least, we discover what the company is doing to shorten the length of time it takes to get through the review queue.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 1st 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #235:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 May 2016 19:18:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: BuddyPress Launches Style Modules Trial Initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54954\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/buddypress-launches-style-modules-trial-initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3960:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/customize-posts.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/customize-posts.jpg?resize=1024%2C583\" alt=\"photo credit: Paintbrush - (license)\" class=\"size-full wp-image-54351\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/93249705@N03/13067171403\">Paintbrush</a> – <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>BuddyPress core developer <a href=\"https://twitter.com/hnla\" target=\"_blank\">Hugo Ashmore</a> announced a new trial initiative this week that aims to create a library of CSS and JavaScript snippets to help users customize their communities. The <a href=\"https://bpdevel.wordpress.com/2016/05/11/buddypress-style-modules/\" target=\"_blank\">Style Modules</a> project will aggregate community-submitted code that enhances BuddyPress components in a plug-and-play manner.</p>\n<p>Developers who want to contribute to the project can submit their modules by creating a ticket on <a href=\"https://buddypress.trac.wordpress.org/newticket\" target=\"_blank\">BP trac</a> and attaching a zip file that includes the CSS/JS files, a readme.md, and a screenshot.</p>\n<p>Users who want to add a module will need to create a /style-modules/ directory and then unzip the module inside it. The next step requires the user to copy functions from the module’s readme file to their theme’s functions.php file, a step which provides a significant hurdle for a non-technical BuddyPress community manager.</p>\n<p>“Initially this is a trial to see whether we get sufficient interest in the concept to continue and develop further, perhaps enhancing the loading process with enqueueing of files based on directory scanning and loading of files as an array but run from the core theme compat class, removing the need for users to copy the loading functions to their functions file,” Ashmore said.</p>\n<p>The project’s GitHub repository includes <a href=\"https://github.com/buddypress/style-modules/wiki/Style-Modules-Listings\">an example module</a> that re-styles the members list into a grid layout. Other example ideas Ashmore suggested include a new look for profile entries, a different presentation for the activity posting form, or something as simple as changing the font size for the activity stream.</p>\n<p>The experimental initiative will test the waters to see if the BuddyPress community will chip in to provide enough modules to make this a real library. The support policy stated in the proposal doesn’t offer much incentive for module authors to submit their work:</p>\n<blockquote><p>Provision of modules and use of them is entirely the discretion of the authors and users, while BP will run some basic checks on the module BP does not guarantee that the modules will work in all given situations or installs, or accept any liability in their use. Support for a module remains the responsibility of the author to ensure the continued effectiveness of the module with updates to themes, WP or BP.</p></blockquote>\n<p>Historically, BuddyPress has struggled to present itself as an easily customizable solution for communities. <a href=\"http://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/\" target=\"_blank\">Theme compatibility</a>, introduced in April 2013, made it easier to use BP with any theme, but unless you purchase a theme specifically designed for the plugin, its default output is rather generic and in need of heavy styling.</p>\n<p>The <a href=\"https://bpdevel.wordpress.com/2016/05/11/buddypress-style-modules/\" target=\"_blank\">BuddyPress Style Modules</a> concept is an attempt to make it easier for community managers to enhance BP components with different looks, but the project will need to provide a compelling reason for developers to contribute modules and continue to maintain them.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 May 2016 02:34:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: The .blog Domain Extension Is Now Open to Registrars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wptavern.com/the-blog-domain-extension-is-now-open-to-registrars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2083:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg?resize=960%2C521\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-54799\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/3ZHG0XOIT6\">Luis Llerena</a>\n<p>Today marks a moment in internet history, as the very first .blog domain is now operational on WordPress.com. Knock Knock, WHOIS There, a subsidiary of Automattic, launched <a href=\"https://nic.blog/\" target=\"_blank\">Nic.blog</a> today to begin getting registrars to sign up to sell the new TLD.</p>\n<p>Automattic <a href=\"http://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\" target=\"_blank\">won the rights to oversee the sale and registration of the .blog domain</a> in 2015 via a bidding process that is estimated to have closed around $20 million. The domain extension is so new that Twitter doesn’t yet support it as a valid link, but Automattic expects to activate 250,000 new names in 2016.</p>\n<p>According to the new nic.blog information site, registrars that sign up to sell .blog domains will be able to participate in an incentive partnership model that rewards a higher volume of sales:</p>\n<blockquote><p>Pricing will be in the standard range for new gTLDs, with premium names available in several tiers. High margins for registrars will be guaranteed by an incentive model, rewarding sales above a certain baseline. Final terms will be published in the coming weeks.</p></blockquote>\n<p>Automattic is opening up the .blog TLD to registrars around the world and companies can sign up on nic.blog to learn more about the requirements. Individuals who are interested in purchasing a .blog domain should review the tentative <a href=\"https://nic.blog/launch-plan/\" target=\"_blank\">launch plan</a> published today. Registration will be open to trademark owners during the Sunrise period starting in August 2016, followed by a Landrush period in October.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 23:26:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: After Eight Years, Thematic Theme’s Lead Developers Discontinue the Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/after-eight-years-thematic-themes-lead-developers-discontinue-the-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3812:\"<p>Gene Robinson, lead developer of the Thematic WordPress theme, has <a href=\"http://thematictheme.com/2016/05/15/thematic-retrospective/\">announced</a> that the project will no longer be developed. Thematic <a href=\"https://wordpress.org/themes/thematic/\">was last updated</a> in 2013 and is actively installed on more than 4K sites. Users are advised to migrate to a different theme as updates will no longer be released. As WordPress core evolves, sites using Thematic may develop incompatibilities.</p>\n<h2>Continuing The Legacy with a Different Name</h2>\n<p>Although development on Thematic is discontinuing, Robinson has forked the project and renamed it to <a href=\"http://d.eciduo.us\">Deciduous. </a>The project picks up where Thematic leaves off. Those interested in continuing development can <a href=\"https://github.com/emhr/Deciduous\">follow it on GitHub</a> where pull requests are welcomed. Robinson is also seeking links to other projects that are derivative of Thematic.</p>\n<h2>Where to Get Support for Thematic</h2>\n<p>Users who need support are advised to post on the <a href=\"https://wordpress.org/support/theme/thematic\">WordPress.org support forums</a> for the Thematic theme, “The support forums on the Thematic website are shutting down due to the lack of community involvement, moderation, and developer feedback,” Robinson said. “Hopefully the greater WordPress support community will be able to help you find a resolution.”</p>\n<h2>A Look Back</h2>\n<p>The years 2008-2009 is an interesting time frame in WordPress’ history. A number of commercial theme and plugin companies, WordPress-centric sites, and projects were launched. Among these was the <a href=\"https://web.archive.org/web/20080611165821/http://themeshaper.com/thematic-for-wordpress/\">Thematic theme</a> by Ian Stewart, theme Wrangler for Automattic. Thematic was more than just a theme, it was an opportunity for Stewart to learn how WordPress’ theme system works.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/ThematicThemePreview.png\"><img class=\"size-full wp-image-54981\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/ThematicThemePreview.png?resize=951%2C740\" alt=\"Thematic Theme Preview from WordPress.org\" /></a>Preview of Thematic from WordPress.org\n<p>He regularly shared his knowledge with the community through <a href=\"https://themeshaper.com/\">ThemeShaper.com</a>, a site now owned by Automattic that features contributions from other members of the theme team. It was the wild west of theme development in 2008 and any person who regularly shared theme development techniques became an influential member of the community.</p>\n<p>Two years after launching Thematic, Stewart <a href=\"https://themeshaper.com/2010/03/04/ian-stewart-joined-automattic/\">joined Automattic</a> as a theme wrangler.</p>\n<blockquote><p>What can I say besides awesome, awesome, awesome? The enormous opportunity for learning and improvement; all the super-talented, friendly people; the chance to work on so many really, really cool projects—it’s almost unbelievable. This is a dream job for me.</p></blockquote>\n<p>The hiring allowed him to make available all of his commercial child themes built on the Thematic framework available free of charge to the community.</p>\n<h2>Did You Learn From Thematic?</h2>\n<p>It’s bittersweet and slightly nostalgic to see the theme come to an end. When I launched the Tavern in 2009, I regularly linked to tutorials and articles published by Stewart. I’m almost certain Thematic and its creator helped out a number of budding theme developers between 2008-2011. Let us know in the comments if you used Thematic for any projects or what you learned from its code.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 20:45:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Post Status: WordPress as a Headless CMS — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://poststatus.com/wordpress-headless-cms-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2870:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p><span>Joe and Brian discuss WordPress as a Headless CMS. They talk about what a Headless CMS is, WordPress’s strengths and weaknesses as a Headless CMS, popular frameworks to utilize, and offer up example websites to check out.</span></p>\n<p><a href=\"https://audio.simplecast.com/37861.mp3\">https://audio.simplecast.com/37861.mp3</a><br />\n<a href=\"http://audio.simplecast.com/37861.mp3\">Direct Download</a></p>\n<h3>Examples</h3>\n<ul>\n<li><a href=\"https://www.guggenheim.org/\">The Guggenheim</a></li>\n<li><a href=\"https://adayofrest.hm/boston-2016/\">A Day of Rest Boston</a></li>\n<li><a href=\"https://ustwo.com/\">ustwo</a></li>\n<li><a href=\"http://skaled.com/\">Skaled</a></li>\n<li><a href=\"http://tri.be/\">Modern Tribe</a></li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://angularjs.org/\">Angular</a></li>\n<li><a href=\"https://facebook.github.io/react/\">React</a></li>\n<li><a href=\"http://blog.scalac.io/2016/02/16/react-vs-angular-2.html\">React vs Angular 2</a></li>\n<li><a href=\"https://getmoxied.net/lean/\">Lean, an Agular for WordPress framework</a></li>\n<li><a href=\"https://pantheon.io/decoupled-cms\">Decoupled CMS</a></li>\n<li><a href=\"https://css-tricks.com/what-is-a-headless-cms/\">What is a Headless CMS?</a></li>\n<li><a href=\"http://petya.in/we-need-to-talk-about-the-rest-api-the-non-developer-guide-to-the-future-of-wordpress/\">We Need to Talk about the REST API</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/05/16/rest-api-authentication-broker/\">Introducing the REST API Authentication Broker</a></li>\n<li><a href=\"https://hmn.md/2016/01/14/introducing-our-wordpress-rest-api-white-paper/\">Human Made’s REST API White Paper</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p><span>Today’s show is sponsored by </span><a href=\"http://optinmonster.com\"><span>OptinMonster</span></a><span>. OptinMonster allows you to convert visitors into subscribers. You can easily create & A/B test beautiful lead capture forms without a developer. They recently released </span><a href=\"http://optinmonster.com/introducing-optinmonster-3-0-taking-your-conversion-optimization-to-the-next-level/\"><span>OptinMonster 3.0</span></a><span>, with an all new builder interface and other great features.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 17:47:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Take Granular Control of WordPress’ Update System with Easy Updates Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/take-granular-control-of-wordpress-update-system-with-easy-updates-manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3933:\"<p>When <a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 “Basie”</a> was released in 2013, it brought automatic updates to the masses. By default, WordPress automatically updates to point releases. Using <a href=\"https://codex.wordpress.org/Configuring_Automatic_Background_Updates\">additional constants</a> within wp-config.php, you can configure WordPress to automatically update themes, plugins, and major releases.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerFeaturedImage.png\"><img class=\"aligncenter size-full wp-image-54958\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerFeaturedImage.png?resize=650%2C207\" alt=\"Easy Update Manager Featured Image\" /></a></p>\n<p>If you want granular control over the WordPress update system without touching code, check out <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">Easy Updates Manager</a>. Easy Updates Manager is a free plugin that’s active on more than 70k sites. It’s maintained by <a href=\"https://profiles.wordpress.org/kidsguide/\">Matthew</a>, <a href=\"https://profiles.wordpress.org/ronalfy/\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/roary86/\">Roary Tubbs</a>, and <a href=\"https://profiles.wordpress.org/bigwing/\">BigWing Interactive</a>.</p>\n<h2>Countless Number of Configurations Available</h2>\n<p>Once activated, you’ll find the options page by browsing to Dashboard > Update Options. There are two different interfaces for configuring updates. The first includes a number of toggle switches that disable/enable updates. The second is a traditional screen with radial buttons.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerDashboard.png\"><img class=\"size-full wp-image-54959\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerDashboard.png?resize=1025%2C432\" alt=\"Easy Update Manager Dashboard\" /></a>Easy Updates Manager Dashboard\n<p>Traditional settings page for Easy Updates Manager.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerGeneralSettings.png\"><img class=\"size-full wp-image-54960\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerGeneralSettings.png?resize=566%2C480\" alt=\"Easy Update Manager General Settings\" /></a>Easy Updates Manager General Settings\n<p>One of the highlights of Easy Updates Manager is the ability to enable automatic updates for individual themes and plugins. It’s a convenient way to update themes and plugins that rarely cause issues. There’s also a built-in logging feature that when enabled creates a new table in the database. It logs the username, update type, version, action, status, and date.</p>\n<p>Logging is listed as a beta feature and should be used at your own risk. It also may not work with all commercial themes and plugins. Here’s what the log looks like after I updated three plugins.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerLogs.png\"><img class=\"size-full wp-image-54961\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerLogs.png?resize=1025%2C350\" alt=\"Easy Update Management Log\" /></a>Easy Updates Management Log\n<p>Easy Updates Manager also includes the ability to exclude users from manipulating the plugin’s settings. The plugin contains additional features that I encourage you to explore by using it on a test site.</p>\n<p>Thanks to the number of options available, users have a countless number of update configurations to choose from. I tested the plugin on WordPress 4.6 alpha and it works as expected. You can <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">download it for free</a> from the WordPress plugin directory.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 07:17:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: WordPress 4.6 Improves the Accessibility of the Tag and Category Management Pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wptavern.com/wordpress-4-6-improves-the-accessibility-of-the-tag-and-category-management-pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2775:\"<p>Among the improvements coming in WordPress 4.6 are <a href=\"https://make.wordpress.org/core/2016/05/16/categories-and-tags-screens-changes/\">accessibility enhancements</a> to the Category and Tag management pages. The flow of each page has been changed so that the visual order of elements match the tab order. This allows those who navigate with keyboards to access the Add New Tag or Add New Category area first.</p>\n<p>Andrea Fercia, WordPress core committer and a member of the accessibility team, explains why the changes matter, “For accessibility, the visual order should always match the tab order. The main functionality in a page should just be the first thing in the source markup and other parts of the user interface should never be ‘skipped’.”</p>\n<p>The following image shows the tab order of elements on the Tag management screen in WordPress 4.5. In order to reach the Add New Tag section, you need to tab through a number of checkboxes, each tag in the tag cloud, and various quick edit links. This is a time-consuming and frustrating process.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress45TagManagementPage.png\"><img class=\"size-full wp-image-54944\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress45TagManagementPage.png?resize=1025%2C806\" alt=\"WordPress 4.5 Tag Management Element Order\" /></a>WordPress 4.5 Tag Management Element Order\n<p>In WordPress 4.6, the Add New Tag section is the first visual element as well as the first section accessed when pressing the tab key.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress46TagManagementScreen.png\"><img class=\"size-full wp-image-54945\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress46TagManagementScreen.png?resize=1025%2C792\" alt=\"WordPress 4.6 Tag Management Screen\" /></a>WordPress 4.6 Tag Management Screen\n<p>The new flow is more logical and provides consistency between the tag and category management screens, “From an accessibility point of view, the content structure and organization will be easier to understand and navigate,” Fercia said.</p>\n<p>WordPress theme and plugin authors who have added custom functionality to these screens are advised to double-check their code against the bleeding edge version of WordPress 4.6. There’s also an <a href=\"https://core.trac.wordpress.org/ticket/35664\">in-depth ticket</a> where developers and users can see how the team reached a consensus to implement the changes. If you have any questions or concerns please leave a comment on the <a href=\"https://make.wordpress.org/core/2016/05/16/categories-and-tags-screens-changes/\">announcement post</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2016 19:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: New Plugin Uses BuddyPress Email API to Send bbPress Forum Emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wptavern.com/new-plugin-uses-buddypress-email-api-to-send-bbpress-forum-emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3011:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-bbpress.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-bbpress.jpg?resize=1025%2C493\" alt=\"buddypress-bbpress\" class=\"aligncenter size-full wp-image-30982\" /></a></p>\n<p><a href=\"http://wptavern.com/buddypress-2-5-0-released-features-customizable-emails-and-support-for-emoji\" target=\"_blank\">BuddyPress 2.5</a>, released in March, introduced customizable emails via a new <a href=\"http://wptavern.com/buddypress-2-5-will-add-customizable-emails-via-a-new-bp-email-api\" target=\"_blank\">BP Email API</a>. This new feature allows community managers to easily edit BuddyPress-generated emails in the admin and make design changes in the customizer.</p>\n<p>It didn’t take long for developers to think of bringing this same customizability to bbPress emails. <a href=\"https://profiles.wordpress.org/thebrandonallen/\" target=\"_blank\">Brandon Allen</a> has just released <a href=\"https://wordpress.org/plugins/bp-emails-for-bbp/\" target=\"_blank\">BP Emails for BBP</a>, a plugin that sends forum and topic subscription emails using the new BP Email API.</p>\n<p>Once installed, administrators will find templates for new forum topics and topic replies under the same Emails menu item with the 16 customizable BuddyPress core emails.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/buddypress-bbpress-emails.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/buddypress-bbpress-emails.png?resize=1025%2C305\" alt=\"buddypress-bbpress-emails\" class=\"aligncenter size-full wp-image-54878\" /></a></p>\n<p>Allen noted that the plugin sends emails differently than bbPress, which puts every subscriber email in the BCC field and sends one email. Instead, it sends a separate email to each subscriber, which Allen said may improve deliverability given that some email providers look unfavorably on emails with large BCC fields.</p>\n<p>I tested the plugin and found that it works as advertised for customizing and sending bbPress emails. There are no settings to configure. It simply adds the same functionality that users now expect from BuddyPress core emails with all the same customization options.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/bbpress-subscription-email.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/bbpress-subscription-email.png?resize=1025%2C500\" alt=\"bbpress-subscription-email\" class=\"aligncenter size-full wp-image-54929\" /></a></p>\n<p><a href=\"https://wordpress.org/plugins/bp-emails-for-bbp/\" target=\"_blank\">BP Emails for BBP</a> is available on WordPress.org. It does not work with bbPress alone but requires both bbPress 2.5+ and BuddyPress 2.5+ to be active. With the help of this plugin, a community manager can brand all the email communications generated by the site so that the design and wording is consistent across both plugins.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2016 05:32:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: BuddyPress 2.6 to Introduce New API for Navigation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/buddypress-2-6-to-introduce-new-api-for-navigation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2401:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398\" alt=\"buddypress-logo-blue\" class=\"aligncenter size-full wp-image-30655\" /></a></p>\n<p>In an exceptionally well-documented <a href=\"https://buddypress.trac.wordpress.org/changeset/10745/\" target=\"_blank\">commit message</a>, BuddyPress lead developer Boone Gorges introduced a new API to manage single item navigation, thanks to contributions from core developers Mathieu Viet and Raymond Hoh. Gorges summarized the changes to how BuddyPress will handle navigation in the upcoming 2.6 release:</p>\n<blockquote><p>The new BP_Core_Nav overhauls the way that BuddyPress registers, stores, and renders navigation items. Navigations are now component-specific, eliminating the potential for confusion and conflict between navigation items with similar names in different components, and opening the possibility of generating navs for separate objects of the same type on a single pageload.</p></blockquote>\n<p>The previous navigation system used bp_nav and bp_options_nav, global properties that managed nav and subnav across all of BuddyPress’ components. Developers had a difficult time extending navigation and sometimes ended up stepping on each other’s toes when adding similar navigation items.</p>\n<p>“The new system eliminates most of these problems, by removing direct access to the underlying navigation data, while providing a full-fledged API for accessing and modifying that data,” Gorges said.</p>\n<p>Although the new API ensures backward compatibility with the legacy bp_nav and bp_options_nav, plugin developers whose extensions depend on these methods will want to update their code. With the exception of certain configurations running PHP 5.2.x, most plugins should work the same as before.</p>\n<p>However, Gorges’ <a href=\"https://buddypress.trac.wordpress.org/changeset/10745/\" target=\"_blank\">commit message</a> details a handful of small ways that the new API may break backward compatibility in a few rare instances. BuddyPress plugin developers will want to review these ahead of the upcoming 2.6 release. Beta 1 is just one week away from release on May 25 and the official release is targeted for June 15.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2016 05:06:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Wes Bos Launches Free React.js + Redux Online Course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/wes-bos-launches-free-react-js-redux-online-course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3193:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/react-redux-course.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/react-redux-course.png?resize=1025%2C465\" alt=\"react-redux-course\" class=\"aligncenter size-full wp-image-54916\" /></a></p>\n<p><a href=\"http://wesbos.com/\" target=\"_blank\">Wes Bos</a>, a developer and educator known for his high quality video tutorials, has just launched a free online course for building JavaScript apps with <a href=\"https://facebook.github.io/react/\" target=\"_blank\">React.js</a> and <a href=\"http://redux.js.org/\" target=\"_blank\">Redux</a>. The 2.5 hour <a href=\"https://learnredux.com/\" target=\"_blank\">Learn Redux</a> course includes 20 videos that guide developers through building an example ‘Reduxstagram’ app to present the core ideas behind Redux.</p>\n<p>To get the most out of Learn Redux, students should have a decent foundation of React and ES6. Bos recommends those who are not comfortable with React to start with his <a href=\"https://reactforbeginners.com/\" target=\"_blank\">React for Beginners</a> course.</p>\n<p>After you sign up, you’ll receive an email with a link to the starter files and access to the videos. The example app uses Webpack to bundle ES6 modules into a single JavaScript file, so the course begins with a video on using NPM and Webpack to set up a local development environment. Learn Redux includes:</p>\n<ul>\n<li>Access to all 20 videos</li>\n<li>All starter files</li>\n<li>Webpack Build Templates</li>\n<li>Stepped and finished solutions</li>\n</ul>\n<p>Bos spent more than 100 hours producing this series in partnership with <a href=\"https://getsentry.com/welcome/\" target=\"_blank\">Sentry</a> as a sponsor. Anyone who signs up receives a $50 Sentry credit.</p>\n<p>After Calypso was announced, Bos, who describes himself as “a huge WordPress fan,” wrote a <a href=\"http://wesbos.com/wordpress-calypso-react/\" target=\"_blank\">post</a> dispelling rumors that WordPress was ditching PHP and being rewritten in Node.js. He also urged WordPress developers to learn JavaScript.</p>\n<p>“This is thunder in the distance as to what is to come in WordPress,” Bos said. “Much of the theme writing I do is already in JavaScript – I often use WordPress as just an API to get data out of, and then use frameworks like Angular, React, Google Maps or jQuery to display that data. I’m not building an entire website in a JavaScript framework, but much of the interactive view layer of these sites is moving into JavaScript frameworks.”</p>\n<p>If you want to be ready to dive into the next generation of WordPress site and application development with knowledge of one of the most popular JS frameworks, the free <a href=\"https://learnredux.com/\" target=\"_blank\">Learn Redux</a> course offers all the tools necessary for getting started with React.js, Redux, and React Router.</p>\n<p>“Our trusty PHP template files aren’t going anywhere anytime soon, but I’ll bet you dollars to donuts you’ll be writing a lot more JavaScript in your WordPress sites in the years to come,” Bos said.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2016 21:50:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WPTavern: Daniel Bachhuber Discusses WP-CLI, the WP REST API, and the Challenges of Contributing to Open Source on Roots Radio Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"http://wptavern.com/daniel-bachhuber-discusses-wp-cli-the-wp-rest-api-and-the-challenges-of-contributing-to-open-source-on-roots-radio-podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7828:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/daniel-bachhuber.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/daniel-bachhuber.jpg?resize=300%2C300\" alt=\"daniel-bachhuber\" class=\"alignright size-medium wp-image-54898\" /></a><a href=\"https://danielbachhuber.com/\" target=\"_blank\">Daniel Bachhuber</a>, maintainer of the <a href=\"http://wp-cli.org/\" target=\"_blank\">WP-CLI</a> project and a contributing developer to the <a href=\"http://v2.wp-api.org/\" target=\"_blank\">WP REST API</a>, joined Chris Carr and Austin Pray on a recent episode of the <a href=\"https://roots.io/podcast/ep13/\" target=\"_blank\">Roots Radio podcast</a>. Bachhuber discussed his recent experience crowdfunding his work on “<a href=\"https://wp-cli.org/restful/\" target=\"_blank\">A More RESTful WP-CLI</a>” as well as the challenges he’s encountered as a contributor to various open source projects over the years.</p>\n<p>In the first part of the episode, Bachhuber shared how he spent the 283 hours of time that the WordPress community funded to advance the WP-CLI and WP REST API projects. The funding gave him the opportunity to dedicate time split between the two projects. Bachhuber put in approximately 95 hours towards the REST API in January and February but the bulk of the hours went towards making WP-CLI more friendly for developers who work with the REST API.</p>\n<p>“WordPress developers are going to be putting a lot of time now towards writing REST endpoints that expose their functionality to the world, and it would be really nice if WP-CLI interoperated nicely with that and allowed you to use that functionality at the command line without having to separately write your own WP-CLI commands,” Bachhuber said.</p>\n<p>He discussed the challenge of scoping out this broad goal and what he learned about crowdfunding during the process.</p>\n<p>“The RESTful WP-CLI kickstarter project was intentionally ambitious, because I’m a guy who has big ideas and likes to do big things,” Bachhuber said. “There are some things I feel really happy that I’ve been able to ship and produce so far, and there are other features that, for one reason or another, I haven’t quite been able to execute yet and that’s a bit frustrating.</p>\n<p>“It’s a whole different ball game trying to manage the expectations of your Kickstarter backers than it is a single client. I’ve got 107 clients that I have to make happy,” he said.</p>\n<p>Nevertheless, Bachhuber said he was able to get the issue backlog for WP-CLI down to less than 60 issues and the dedicated time has allowed him to resolve old issues that have “languished since the dawn of time.”</p>\n<p>As part of the rewards offered for contributors to the crowdfunding campaign, Bachhuber offered his time consulting with individuals and organizations, which he found to be easier than traditional physical swag rewards.</p>\n<p>“I’m really glad that I chose [consulting] over having to give out physical swag, because it’s very difficult to procure and ship to everyone, particularly when you have international backers,” he said. “Even though I’ve spent a lot of my time fulfilling the rewards and talking with people and having calls with them and meeting up with them in person, it’s a much easier effort to manage than sending 100 coffee mugs across the world.”</p>\n<p>When asked if he’d do it again, Bachhuber said yes but emphasized that spending this much time on an open source project only works if you keep a healthy balance with other aspects of life.</p>\n<p>“I think it’s really important that if you’re contributing to open source projects on a regular basis or even maintaining them, that you balance your time between that and other things,” he said. “It’s really easy to get burned out on said open source project if you spend 100% of your time on it for a whole month or six months.</p>\n<p>“I was pretty intentional to say that the money I was raising was going to cover my involvement with the project for six months, a certain number of hours, and that it was going to be a part-time thing. That was a really healthy way to approach it. I think I would have gotten burned out if I had just tried to dive into it, crank it out, and move on to the next thing,” Bachhuber said.</p>\n<h3>The Emotional Challenges of Working on Open Source Projects</h3>\n<p>During the course of the interview Bachhuber was asked to share his feelings on what he referred to as “the kerfuffle with the REST API” that happened in February. The REST API team had written a merge proposal in September 2015 that recommended merging the API in two parts – the infrastructure in 4.4 and the posts, comments, terms, and users endpoints in 4.5 or 4.6. After partially executing on that proposal, the team held a status chat to discuss the plan moving forward.</p>\n<p>Bachhuber said that the discussion became “a very emotionally fraught event” after Matt Mullenweg said the project needed feature parity with the WordPress admin before any of the endpoints could be considered for merge. After putting hundreds of hours into the project alongside a handful of dedicated contributors who were already spread thin, he found this new requirement was a difficult pill to swallow.</p>\n<p>“For better or for worse, as a maintainer or even a participant of an open source project, you have to have a thick skin and realize that all the time the decisions that are made are not about you – they are about the project,” Bachhuber said. “Even if you are personally offended by the decision, it doesn’t matter because it isn’t about you. It’s really difficult to deal with emotionally.”</p>\n<p>Bachhuber’s years of contributing to and maintaing open source projects has taught him a few things about managing stress and conflict that <a href=\"https://2016.europe.wordcamp.org/session/my-condolences-youre-now-the-maintainer-of-a-popular-open-source-project/\" target=\"_blank\">he plans to share at WordCamp Europe</a> in a talk titled, “My condolences, You’re now the maintainer of a popular OS project.”</p>\n<p>“I find a lot of joy in maintaining open source projects,” Bachhuber said. “I also have to actively work to address the emotional side of the equation to make sure I’m in a healthy space to continue maintaining the project and the project is not affecting me personally. It’s taken me years to come to a point where I’m comfortable with that.”</p>\n<p>In the case of the WP REST API, Bachhuber has come to a place where he can compartmentalize his emotional reactions and responses to the differing opinions.</p>\n<p>“I’ve come to a point now where I care but I don’t care,” he said. “I care in the sense that I’d still love to see those endpoints go into core and see the fruits of our labors realized. I don’t care because I’m not emotionally attached to that happening on any particular time frame. I honestly would rather it happen when it’s ready to happen over prematurely, and I realize I might not be the best qualified person to make that decision.”</p>\n<p>In the remainder of the episode, Bachhuber and Carr discuss React, Redux, Karma, Enzyme, and other tools for testing and developing with the REST API. Check out the recording of the episode on <a href=\"https://roots.io/podcast/ep13/\" target=\"_blank\">Roots Radio</a> for more details about Bachhuber’s work on WP-CLI and his crowdfunding experience.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2016 06:03:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: The WordPress.org Recommended Hosting Page is Revamped, Features Flywheel for the First Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54822\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"http://wptavern.com/the-wordpress-org-recommended-hosting-page-is-revamped-features-flywheel-for-the-first-time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8235:\"<p>DreamHost, Flywheel, and SiteGround have joined Bluehost on WordPress.org’s new <a href=\"https://wordpress.org/hosting/\">recommended hosting</a> page. In mid 2015, Matt Mullenweg, co-founder of the open source WordPress project, <a href=\"http://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\">announced</a> the page would be revamped. To have a chance at being listed webhosting companies needed to fill out a 40-question survey.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/RecommendedHostsPage.png\"><img class=\"size-full wp-image-54844\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/RecommendedHostsPage.png?resize=790%2C642\" alt=\"2016 Recommended Hosts Page\" /></a>2016 Recommended Hosts Page\n<p>This is Flywheel’s first time on the page. <a href=\"https://getflywheel.com/\">Flywheel</a>, launched in 2013, is a managed WordPress hosting company with an emphasis towards designers and agencies. I asked Dusty Davidson, c<span class=\"team__role\">o-Founder and CEO of Flywheel</span>, what it means to be included on the page. “We’re obviously excited to be included, and think it really reflects on the work we’ve done to create a great experience for WordPress users,” he<span class=\"team__role\"> said. </span></p>\n<p>The recommended webhosting page on WordPress.org is incredibly lucrative. Based on conversations I’ve had with employees of hosts listed, it can generate millions of dollars in revenue. I asked Davidson what impact this will have on his company, “<span class=\"team__role\">I’m sure it will undoubtedly send a good deal of traffic, but honestly we’re just humbled and excited to be recognized,” he said. </span></p>\n<h2>A New Round of Controversy</h2>\n<p>Over the years, companies have come and gone from the recommended hosting page. However, Bluehost in particular has consistently appeared on the list, including the most recent iteration. Bluehost is owned by <a href=\"http://www.endurance.com/\">Endurance International Group</a> who <a href=\"http://www.prweb.com/releases/2014/05/prweb11874425.htm\">invested in Automattic</a> in 2014. Because Mullenweg is the CEO of Automattic and controls who is listed on the page, it’s easy to see why it regularly generates controversy.</p>\n<p>Kevin Ohashi of ReviewSignal.com, <a href=\"http://reviewsignal.com/blog/2016/05/12/wordpress-org-updates-hosting-recommendations-nobody-knows-selection-criteria/\">criticized the lack of transparency</a> regarding the process for how hosts.</p>\n<blockquote><p>Who is responsible for this revamp? What were the selection criteria? How often will it be updated? Will existing companies be continuously re-evaluated?</p></blockquote>\n<p>These are important questions to ask and there are no publicly documented answers. In a follow up post, <a href=\"http://reviewsignal.com/blog/2016/05/13/wordpress-org-hosting-recommendations-listing-criteria/\">Ohashi investigated</a> what criteria needs to be met for being listed on the page. The post contains a number of screenshots of his private conversation with <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, who has volunteered for the WordPress project for 12 years and has worked at Automattic for five years.</p>\n<p>Huff was directly related to the project and influenced who was chosen thanks to his involvement on the WordPress Support Team. Within the conversation, he shares details of the process and mentions that no money exchanged hands. Early in the conversation, Ohashi tells Huff that he wants to learn and publish how the process works. However, Huff had no idea that everything he said would be made public.</p>\n<p>“I was invited to what sounded like a friendly chat over direct message from a concerned community member, after he was referred to me by a friend,” Huff said. “At no point was it clarified or even implied that anything discussed would be made public.”</p>\n<p><del>Conversations held in a private matter should remain private unless given permission to publish them, something I discovered the hard way.</del> Unfortunately, the post comes across as a public interrogation of Huff. I asked Huff, who was shaken by the experience, how it has affected him moving forward as it relates to the WordPress project.</p>\n<p>“I’d be lying if I said my feelings weren’t at least shaken by the experience, especially considering how polite he was to my friend and how hostile he was towards me apparently just because I work for Automattic, but this isn’t the first time that has happened to me and I don’t expect it to be the last,” he said.</p>\n<p>“There’s an usually prevalent negative bias against Automatticians who contribute to WordPress.”</p>\n<h2>Mullenweg Provides Clarification</h2>\n<p>Mullenweg <a href=\"http://reviewsignal.com/blog/2016/05/13/wordpress-org-hosting-recommendations-listing-criteria/#comment-1011\">commented on the post</a> where he not only sticks up for Huff, but answers some of the controversial questions raised by Ohashi. Mullenweg explains how the applicants were chosen, how the criteria is weighted, who makes the final decisions, and how much money is involved. Here is his comment in full.</p>\n<blockquote><p>‘I would like to see some transparency in the process’</p>\n<p>As stated on the page, the listing is completely arbitrary. The process was: There was a survey, four applicants were chosen, and the page was updated. That might repeat later in the year, or the process might change.</p>\n<p>‘how criteria are weighted’</p>\n<p>There is no criteria or weighting. It ultimately is one person’s opinion. Information that is important is reflected in the questions asked in the survey, but that is not everything that is taken into account. (I have looked at this site in the past, for example.)</p>\n<p>‘who is making the decisions’</p>\n<p>I am. James helped in sorting through the many submissions that came in, doing additional research, and digging on finalists, but ultimately the decision was mine. You can and should blame me fully for any issues you have with it. I appreciate James’ help in this go-round, but he will not be involved at all with any future updates. (So, please leave him alone.)</p>\n<p>‘how much money is involved’</p>\n<p>There was no money involved. Obviously being listed on the page is hugely valuable and impacts the listed (or unlisted) businesses a great deal. This is why I take full responsibility for the listing, now and in the future — I have been fortunate to be extraordinarily successful and no financial or business consideration any of the applicants could offer matters to me. A host could offer $100,000,000 to be listed on the page for 1 day, and I would say no.</p></blockquote>\n<p>It’s unfortunate that the information in Mullenweg’s comment is not published in an official post announcing the changes to the recommended hosting page. If an official post was published that included the same information in his comment, it’s possible it would have eliminated most of the confusion, uncertainty, and doubt surrounding it.</p>\n<h2>Should WordPress.org Have a Recommended Hosting Page?</h2>\n<p>Due to the investments EIG has made in Automattic, Mullenweg’s role at the company, and him making the final decisions, there will always be a potential conflict of interest despite taking full responsibility of the page and the processes associated with it.</p>\n<p>Should WordPress.org have a recommended hosting page? What if the page was replaced with information people could use to make informed decisions on choosing a host? It would eliminate potential conflicts of interest and if there was a host Mullenweg felt strongly about, he could label it as a partner of the project. This would make it clear that any financial connection with the company is a business relationship.</p>\n<p>Are you hosting with any of the companies listed on the recommended hosting page? If so, tell us about your experience in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 May 2016 16:39:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: WordPress Accessibility Team Seeks Testers Using Speech Recognition Technology\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54829\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wptavern.com/wordpress-accessibility-team-seeks-testers-using-speech-recognition-technology\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2791:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/glasses.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/glasses.jpg?resize=1024%2C562\" alt=\"photo credit: Let\'s Read - (license)\" class=\"size-full wp-image-54851\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/42788859@N00/320216939\">Let’s Read</a> – <a href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/\">(license)</a>\n<p>The World Health Organization estimates that <a href=\"http://www.who.int/mediacentre/factsheets/fs282/en/\" target=\"_blank\">285 million people</a> worldwide are living with some form of visual impairment and 39 million of those are estimated to be blind. Many people with low vision depend on speech recognition technology to navigate the web and communicate their thoughts. This type of software also assists people who have carpal tunnel, RSI (Repetitive Stress Injuries) and/or limited mobility in their hands and arms.</p>\n<p>Rian Rietveld and the Accessibility team are working to improve the experience of using WordPress with speech recognition software, such as <a href=\"http://www.nuance.com/dragon/index.htm\" target=\"_blank\">Dragon Naturally Speaking</a> (widely considered as one of the best for desktop use.) In particular, <a href=\"https://core.trac.wordpress.org/ticket/23562\" target=\"_blank\">the task of adding media to a post has a number of obstacles</a> that make it nearly impossible for those using speech recognition software.</p>\n<p>Rietveld <a href=\"https://make.wordpress.org/accessibility/2016/05/13/20th-wordpress-accessibility-test-add-media-with-speech-recognition-software/\" target=\"_blank\">posted three tests</a> to the Accessibility team’s blog today, inviting those who use <a href=\"http://www.nuance.com/dragon/index.htm\" target=\"_blank\">Dragon Naturally Speaking</a> or other assistive technology to help the contributors determine the roadblocks that need to be removed for adding media. These tests include actions like adding media, editing attachment details, and creating a gallery.</p>\n<p>If you use WordPress with assistive technology for speech recognition, completing these tests and offering your feedback is one way to get involved as a contributor. You don’t necessarily have to use Dragon Naturally Speaking, as there are many newer alternatives such as Windows Speech Recognition (Cortana) and Chrome’s speech recognition powered by Google Speech to Text. Testers can report their experiences, along with the assistive technology/browser/OS, in the comments on Rietveld’s <a href=\"https://make.wordpress.org/accessibility/2016/05/13/20th-wordpress-accessibility-test-add-media-with-speech-recognition-software/\" target=\"_blank\">post</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 22:40:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Happytables Pivots to Provide Restaurant Analytics and Insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=41046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/happytables-pivots-to-provide-restaurant-analytics-and-insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5302:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/happy-tables.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/happy-tables.jpg?resize=1000%2C608\" alt=\"happy-tables\" class=\"aligncenter size-full wp-image-54835\" /></a></p>\n<p><a href=\"http://www.happytables.com/\" target=\"_blank\">Happytables</a> is changing from being a platform that hosts restaurant websites to one that provides analytics and insights by tapping into apps that restaurants are already using to promote their businesses. The company uses WordPress as a command center for the application that communicates with various restaurant-tech APIs to deliver information to the dashboard in realtime.</p>\n<p>“We started with the website builder a while back,” Founder and CEO Noel Tock said. “It’s been a great ride, but we realized two things: 1) Website builders have become a race to the bottom with regards to revenue as well as extremely competitive, and 2) From our many conversations with restaurants, their challenges have become much larger; consolidating data and insights from all the products they now use.”</p>\n<p>One of the Happytables beta restaurants in London uses 14 different applications to manage its sales, operations, and marketing, and Tock says this trend is only growing.</p>\n<p>“The centre of gravity is shifting from the Point of Sale to a very fragmented collection of siloed products (reservations, online ordering, staff scheduling/wages, loyalty, waitlist, social, etc.),” Tock said. “Becoming that 30,000 foot view whilst generating actionable insights across the portfolio of applications is the challenge we’ve taken on with the new Happytables.”</p>\n<p>The first installation of the new Happytables was set up for <a href=\"http://whyteandbrown.com/\" target=\"_blank\">Whyte & Brown</a> in London where the team is focusing their beta testing. The application currently aggregates data from POS (Point of Sale) and Social, but Tock says this will rapidly evolve to providing various insights from POS and Labor, such as revenue forecasting, employee performance, and breakfast/lunch/dinner performance.</p>\n<p>“It’s been very exciting working towards actionable insights, whereby we can tell a waiter that he/she was underselling a certain product or category compared to their colleagues, or that a particular employee performs a lot better on lunch then on dinner,” Tock said.</p>\n<p>Below you can see an example of Happytables’ latest kitchen dashboard, using the team view as opposed to the individual employee recommendations/suggestions view.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/Happytables_kitchen_dashboard.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/Happytables_kitchen_dashboard.png?resize=1025%2C731\" alt=\"Happytables_kitchen_dashboard\" class=\"aligncenter size-full wp-image-54833\" /></a></p>\n<p>The new Happytables uses WordPress as a backend and the WP REST API and ReactJS on the frontend. Although the development team still uses WordPress as one of its core technologies, the infrastructure is a bit more complicated.</p>\n<p>“It’s not pure WordPress for the data storage,” CTO Aaron Jorbin said. “In fact, very little of it is actually stored inside WordPress. It is used to store some information about the restaurant and manage requests to third parties where we fetch the data and then store it in DynamoDB.”</p>\n<p>The screenshots in this post show the WordPress theme in full screen mode, but Jorbin said the restaurant staff never interact with wp-admin. Restaurant operators use the app to view all the realtime information coming in so that they can make better decisions about how they run their businesses.</p>\n<p>Happytables is still hosting its customers from its first iteration as a website builder, but Tock said most are not good candidates for the beta.</p>\n<p>“The infrastructure is quite different now as we’re capturing different types of data (previously web content, now largely transactional data),” he said. “Our customers on the website builder platform came from all walks of life, so there’s not many who fit the ideal beta candidate (using Micros/Aloha as POS, based in London, run a multiunit restaurant, etc.).</p>\n<p>“We’re just looking to see how we can fit this into the larger Happytables model downstream,” Tock said. “If we’re going to implement so many API’s, there’s also value in tying those back to the website.”</p>\n<p>Not many aspects of the new infrastructure have been open sourced yet, as the team has been moving fast. Tock said they hope to make some of their code public further down the road after it’s been tested.</p>\n<p>“Once we’re past testing/beta, I’m sure a number of features will become more mature tools and move into their own public repo if they are of that sort of benefit,” he said. The new infrastructure is one of the many exciting ways that the WP REST API is being used to bring a host of information into WordPress from various third party applications and tie it all together in a useful way.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 19:45:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Mom on Tinder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2016/05/mom-on-tinder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:227:\"<p>If you’re looking for a fun Friday read, <a href=\"http://www.gq.com/story/my-mom-ran-my-tinder\">check out this story of a young GQ writer who gave control of his Tinder account to his Mom</a>. It’s adorkable.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 16:35:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: GitLab Courts Disgruntled GitHub Customers with Response to Recent Pricing Hike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wptavern.com/gitlab-courts-disgruntled-github-customers-with-response-to-recent-pricing-hike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5016:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/gitlab.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/gitlab.png?resize=1025%2C371\" alt=\"gitlab\" class=\"aligncenter size-full wp-image-50741\" /></a></p>\n<p>Yesterday GitHub <a href=\"http://wptavern.com/github-introduces-unlimited-private-repositories-hikes-prices-for-organizations\" target=\"_blank\">announced</a> pricing changes that give all paid plans unlimited repositories and change plans to a pricing-per-user model. Individual developers are the most likely customers to benefit from the changes, but many organizations will see an exponential increase in pricing.</p>\n<p>GitLab, a competitor in the Git repository hosting space, immediately addressed disgruntled GitHub customers with a <a href=\"https://about.gitlab.com/2016/05/11/git-repository-pricing/\" target=\"_blank\">pricing comparison</a> on the company’s blog. Co-founder and CEO <a href=\"https://twitter.com/sytses\" target=\"_blank\">Sid Sijbrandij</a> noted that the three main players in this space, GitHub, Bitbucket, and GitLab, all offer unlimited private repositories but that it doesn’t cost companies more to host additional repositories for a given user.</p>\n<p>Sijbrandij attributes the change to the increase in the <a href=\"https://www.sequoiacap.com/article/build-us-microservices/\" target=\"_blank\">microservices model</a>, a development approach that breaks software down into smaller, related pieces that communicate with one another via APIs.</p>\n<p>“As more and more developers, teams, and organizations seek out the advantages of microservices, they’ll need more repositories to support this new code structure,” Sijbrandij said. “Basically, the more microservices you have the more repositories you’ll need. That is why it is not surprising that GitHub has announced free private repositories.”</p>\n<p>Sijbrandij referenced several examples where GitHub’s pricing changes hit open source organizations hard, including <a href=\"https://github.com/edx/\" target=\"_blank\">Open edX</a>, a non-profit with a large number of contributors, which <a href=\"https://news.ycombinator.com/item?id=11674530\" target=\"_blank\">posted</a> the following on Hacker News:</p>\n<blockquote><p>I work for a non-profit open source organization that <a href=\"https://github.com/edx/\" target=\"_blank\">collaborates on github</a>. We have lots of people who aren’t employees, but have signed a contributor agreement with our organization and contribute changes to our software. Our bill will go up from $200/month to over $2000/month with this new pricing. We can afford it (it’s still a small fraction of our AWS bill) but it will force us to look at other alternatives. Github’s code review tools are already pretty mediocre compared to other tools like gerrit, and we’ve long since moved off of GitHub issue tracking due to lack of features compared to JIRA.</p></blockquote>\n<p>Sijbrandij emphasized that the team at GitLab believes “everyone can contribute,” a mission which drives GitLab.com’s pricing structure to offer unlimited private repositories, unlimited contributors, and unlimited CI runners for free. The on-premises solution, which includes enterprise features and support, is what keeps the lights on at the company. GitLab.com, the free, hosted version, runs the same enterprise edition software but is, by Sijbrandij’s own admission, still <a href=\"https://gitlab.com/gitlab-com/operations/issues/42\" target=\"_blank\">struggling with sluggish performance</a>.</p>\n<p>Earlier this year when open source project maintainers <a href=\"http://wptavern.com/open-source-project-maintainers-confront-github-with-open-letter-on-issue-management\" target=\"_blank\">confronted GitHub with an open letter on issue management</a>, GitLab differentiated itself by <a href=\"http://wptavern.com/gitlab-courts-open-source-project-maintainers-with-response-to-dear-github-letter\" target=\"_blank\">responding</a> to the situation with a new initiative focused on “making GitLab the best place for big open source projects.”</p>\n<p>Nearly a month later, <a href=\"http://wptavern.com/github-responds-to-letter-from-open-source-project-maintainers\" target=\"_blank\">GitHub finally responded</a> with an apology to open source project maintainers and a promise to address their concerns with a steady string of changes.</p>\n<p>GitHub has not given any indication of reversing its recent decision to change its pricing structure. However, with competitors like GitLab putting on the heat, GitHub may be forced to make some changes to its paid plans. At the very least, it could inspire the company to address concerns about organizations having to pay for inactive users and perhaps spur GitHub to offer customers the ability to distinguish between collaborators on open source projects and users who simply need access to private repositories.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 02:33:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: How Authors With Plugins in the Official Directory Can Use Tags to Get a Moderator’s Attention\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"http://wptavern.com/how-authors-with-plugins-in-the-official-directory-can-use-tags-to-get-a-moderators-attention\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2627:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/WordPressAdviceForNewUsers.png\"><img class=\"size-full wp-image-44085\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/WordPressAdviceForNewUsers.png?resize=612%2C237\" alt=\"WordPress Advice For New Users\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/99329675@N02/11064947983\">What You Need To Know About Food Poisoning</a> – <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>It’s almost inevitable that as a WordPress plugin gains popularity, it will receive a bad review. How plugin authors handle and respond to bad reviews is crucial, especially in a public forum. Mika Epstein, who helps review plugins before they’re added to the directory and is a dedicated support forum volunteer, <a href=\"https://make.wordpress.org/plugins/2016/05/03/handling-bad-reviews/\">gives advice </a>on how to handle and respond to bad reviews.</p>\n<p>Bad reviews are classified as those written as spam, trolling, emotional blackmail for support, and those that should have been a support post. Since the plugin review system is powered by bbPress, plugin authors can add tags to reviews in order to draw a moderator’s attention. The tags include:</p>\n<ul>\n<li><strong>Modlook</strong> – This tag notifies moderators that a particular thread needs their attention. If you think a review is spam, don’t respond to it. Instead, add the Modlook and Spam tags and let a moderator decide if the review should be deleted.</li>\n<li><strong>Sockpuppet</strong> – If you suspect a review is part of a spamming campaign where a group of people are marking a plugin as one or five stars, apply the sockpuppet and modlook tags to the review.</li>\n<li><strong>Wrongplugin</strong> – Add the wrongplugin tag to the review if you believe it’s for a different plugin. The team can move the review to the appropriate place.</li>\n<li><strong>Pluginmod</strong> – Add this tag to a review if you need an administrator’s attention. This usually results in the team performing a full review of your plugin. If it’s determined that it breaks any of <a href=\"https://wordpress.org/plugins/about/guidelines/\">the guidelines</a>, it will be removed until they’re fixed.</li>\n</ul>\n<p>Developers who host plugins in the official directory should make note of these tags and use them when necessary. The tag system is generally unknown to the public but it’s a great way for moderators to keep on top of the forums and reviews.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 01:06:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WPWeekly Episode 234 – All Things WordCamp with Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=54807&preview_id=54807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/wpweekly-episode-234-all-things-wordcamp-with-andrea-middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2896:\"<p>In this episode of WordPress Weekly, Marcus Couch and I are joined by <a href=\"https://thethingwiththestuff.wordpress.com/\">Andrea Middleton</a>, who works at Automattic as a Community Organizer for the WordPress open source project. We discuss a number of topics including, updates to the WordCamp Central website, the <a href=\"https://make.wordpress.org/community/2016/03/02/transitioning-to-wordpress-community-support/\">for-profit subsidiary</a>, and the experimental <a href=\"http://wptavern.com/wordpress-to-launch-experimental-wordcamp-incubator-program\">WordCamp incubator program</a>.</p>\n<p>At the conclusion of our interview with Middleton, Mendel Kurland, GoDaddy’s Evangelist, joined us to describe his experiences attending DrupalCons. DrupalCons are events similar to WordCamps but on a larger scale. He tells us what the similarities and differences are and the unique things they do that he’d like to see WordCamps adopt. We close out the show with Marcus’ plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/wordpress-4-5-2-patches-two-security-vulnerabilities\">WordPress 4.5.2 Patches Two Security Vulnerabilities</a><br />\n<a href=\"http://wptavern.com/automattic-is-protecting-its-woo-woothemes-and-woocommerce-trademarks\">Automattic is Protecting its Woo, WooThemes, and WooCommerce Trademarks</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/disable-core-update-email/\">Disable WordPress Core Update Email</a> allows used to disable the default notification email sent by WordPress after an automatic core update is applied.</p>\n<p><a href=\"https://wordpress.org/plugins/downgrade/\">Downgrade </a>enables users to easily downgrade WordPress to an earlier version. It’s a handy diagnostics tool that helps determine if a new WordPress release is the cause of errors.</p>\n<p><a href=\"https://wordpress.org/plugins/woo-customer-insight\">Woo Customer Insight </a>provides greater insight into what visitors are doing on your sites. It allows you to see the pages your customers are visiting, where they’re clicking, the time spent on the different pages, and more.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 18th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #234:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2016 23:23:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matt: .Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46554\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://ma.tt/2016/05/blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:858:\"<p>It’s now public that Automattic is the company behind Knock Knock Whois There LLC, the registry for the new .blog TLD. (And a great pun.) We wanted to stay stealth while in the bidding process and afterward in order not to draw too much attention, but nonetheless the cost of the .blog auction got up there (people are <a href=\"http://www.theregister.co.uk/2015/02/13/who_just_bought_dotblog_for_30m/\">estimating around $20M</a>). I’m excited we won and think that it will be both an amazing business going forward and give lots of folks an opportunity to have a fantastic domain name in a new namespace and with an easy-to-say TLD. <a href=\"https://dotblog.wordpress.com/\">You can sign up to be first in line to reserve a domain here</a>. If you have a trademark you can get in August, and then October for the “land rush.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2016 19:23:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Automattic to Oversee the Sale and Registration of Top-Level .Blog Domains\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54788\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2974:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg?resize=960%2C521\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-54799\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/3ZHG0XOIT6\">Luis Llerena</a>\n<p>Automattic <a href=\"https://en.blog.wordpress.com/2016/05/12/coming-soon-new-blog-domains-for-websites/\" target=\"_blank\">announced</a> today that it will begin offering top-level .blog domain registration starting in August 2016. The .blog domain extension will be available to both WordPress and non-WordPress sites.</p>\n<p>According to <a href=\"https://twitter.com/markarms\" target=\"_blank\">Mark Armstrong</a>, an Automattic subsidiary is exclusively managing the registration of .blog domains and will be offering it for purchase through WordPress.com and other domain registrars.</p>\n<p>“Automattic subsidiary Knock Knock Whois There LLC, in partnership with the domain company Primer Nivel, won the rights to the .blog domain in 2015 through an auction process overseen by the Internet Corporation for Assigned Names and Numbers (ICANN), the non profit organization that oversees namespaces of the internet,” Armstrong said.</p>\n<p>In an <a href=\"https://ma.tt/2016/05/blog/\" target=\"_blank\">announcement</a> on his blog, Automattic CEO Matt Mullenweg said they used the Knock Knock Whois There LLC company name to “stay stealth while in the bidding process,” which closed around $19 million.</p>\n<p>Although WordPress.com is currently providing the registration information site at <a href=\"https://dotblog.wordpress.com/\" target=\"_blank\">dotblog.wordpress.com</a>, Armstrong said that the company is using <a href=\"http://www.nominet.uk/\" target=\"_blank\">Nominet</a> (the backend registry provider for .UK) to provide the technical infrastructure for managing the domain extension.</p>\n<p>Registration for .blog domains will be offered in a phased approach during the second half of 2016, according to the following estimated timeframe:</p>\n<ul>\n<li><strong>Sunrise (August):</strong> Trademark owners will be able to register .blog domains associated with their brands</li>\n<li><strong>Landrush (October):</strong> Before .blog becomes available to the public, domains may be registered during the landrush period on an application basis.</li>\n<li><strong>General Availability (November):</strong> Automattic plans to begin offering .blog domains to the general public before the end of the year.</li>\n</ul>\n<p>With the exclusive rights to manage the sale of millions of .blog domains, Automattic has the opportunity to promote WordPress.com as a potential host for new registrants. The company hasn’t finalized the price but Armstrong said it will be “in the standard range for new top-level domains with some premium pricing for higher-value names.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2016 18:19:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Critical Vulnerabilities Found in PhpStorm, Immediate Update Advised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wptavern.com/critical-vulnerabilities-found-in-phpstorm-immediate-update-advised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2128:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/phpstorm-wp-feature.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/phpstorm-wp-feature.jpg?resize=1025%2C471\" alt=\"phpstorm-wp-feature\" class=\"aligncenter size-full wp-image-30739\" /></a></p>\n<p>JetBrains <a href=\"http://blog.jetbrains.com/blog/2016/05/11/security-update-for-intellij-based-ides-v2016-1-and-older-versions/\" target=\"_blank\">announced</a> today that it has released a security update for PhpStorm and all of its other IntelliJ-based IDEs due to a set of critical vulnerabilities:</p>\n<blockquote><p>The cross-site request forgery (CSRF) flaw in the IDE’s built-in webserver allowed an attacker to access local file system from a malicious web page without user consent.</p>\n<p>Over-permissive CORS settings allowed attackers to use a malicious website in order to access various internal API endpoints, gain access to data saved by the IDE, and gather various meta-information like IDE version or open a project.</p></blockquote>\n<p>PhpStorm is by far <a href=\"http://www.sitepoint.com/best-php-ide-2014-survey-results/\" target=\"_blank\">the most favored IDE for PHP developers</a>. It’s also widely used among WordPress developers, especially since <a href=\"http://wptavern.com/phpstorm-8-released-with-full-wordpress-support\" target=\"_blank\">version 8 added official support for WordPress</a>.</p>\n<p>The update issued today patches the critical vulnerabilities inside the underlying IntelliJ platform that powers nearly a dozen popular IDEs. Installing the update is as easy as selecting ‘Check for Updates’ inside the IDE. Alternatively, customers can download the most recent version from JetBrains.com and the <a href=\"http://blog.jetbrains.com/blog/2016/05/11/security-update-for-intellij-based-ides-v2016-1-and-older-versions/\" target=\"_blank\">security announcement</a> includes links to download older versions.</p>\n<p>Although the JetBrains security team is not aware of these vulnerabilities having been exploited, immediate update is recommended.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 22:26:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: GitHub Introduces Unlimited Private Repositories, Hikes Prices for Organizations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wptavern.com/github-introduces-unlimited-private-repositories-hikes-prices-for-organizations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7590:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/github-octocat.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/github-octocat.jpg?resize=857%2C400\" alt=\"github-octocat\" class=\"aligncenter size-full wp-image-42456\" /></a></p>\n<p>GitHub has been inundated with negative feedback after <a href=\"https://github.com/blog/2164-introducing-unlimited-private-repositories\" target=\"_blank\">announcing a major change to its pricing</a> today. All paid plans now include unlimited private repositories, but there’s a catch. The new pricing structure requires GitHub.com organizations to purchase a seat for each user. At $9 per user/month, collaborating on private repositories is now far more costly than the legacy plans which started at $25/month for 10 repositories and unlimited members.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/github-pricing.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/github-pricing.png?resize=1025%2C392\" alt=\"github-pricing\" class=\"aligncenter size-full wp-image-54756\" /></a></p>\n<p>The change is good news for individual developers with paid accounts, as they are no longer charged on a per-repository basis. However, many owners of organizations are finding the new pricing to be untenable and are actively considering alternatives. For comparison, Bitbucket offers unlimited private repositories and <a href=\"https://bitbucket.org/product/pricing\" target=\"_blank\">charges $1/user/month</a>. Unlimited users caps out at $200/month.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/Krogsgard\">@Krogsgard</a> EDD org alone will go from $25 per month to $592 per month <a href=\"https://twitter.com/github\">@github</a></p>\n<p>— Pippinsplugins (@pippinsplugins) <a href=\"https://twitter.com/pippinsplugins/status/730396802638176257\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p>While unlimited private repositories is an exciting benefit that enables developers to make their code more modular, it isn’t a benefit that every organization needs.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/github\">@github</a> Terrible news. I work on an open-source organization >100 devs. We have 2 private repos for internal projects. $900+ vs $25 really!?</p>\n<p>— João Ventura (@jcnventura) <a href=\"https://twitter.com/jcnventura/status/730319187667759104\">May 11, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/williamsba\">@williamsba</a> ours jumped to $1,204 :-( <a href=\"https://twitter.com/github\">@github</a></p>\n<p>— Tom Willmot (@tomwillmot) <a href=\"https://twitter.com/tomwillmot/status/730391291691995136\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p><a href=\"https://easydigitaldownloads.com/\" target=\"_blank\">Easy Digital Downloads</a> creator Pippin Williamson <a href=\"http://www.twitlonger.com/show/n_1solvjd\" target=\"_blank\">explained</a> why he is frustrated with what amounts to a 2,276% increase in costs for his organization:</p>\n<blockquote><p>I actually have no problems with the pricing for new organizations. It’s their space and they provide a huge number of valuable tools. It is absolutely worth it.</p>\n<p>The problem I have is the drastic increase for existing customers. It’s largely the principal of increasing a customer’s cost by 2,276% without giving them any additional value.</p>\n<p>The value that Github provides me and my team does not change at all with the new pricing, only what I pay per month.</p></blockquote>\n<p>Samuel “Otto” Wood <a href=\"http://www.twitlonger.com/show/n_1solviv\" target=\"_blank\">contends</a> that GitHub’s $9/user/month is a reasonable price to pay for having all the functionality of GitHub hosted for an organization but that the alternative of building your own is far more economical.</p>\n<blockquote><p>A “private” repo is, you know, private. On your own server. Git is, after all, decentralized. You could plop a normal git repo on any private VPS you like in a matter of under an hour. If you’re collaborating with a small group of like 5 people, then coordination is not really a big deal that I’d pay $45 a month to use GitHub for it. You can use any tooling you like, make any website you like. You could probably reproduce the important parts of GitHub that you need for your private setup using WordPress in like a day or two. </p>\n<p>It just seems to me that any advantages of using GitHub at all seem largely nullified by using private repos. Yes, collaboration and using the same toolset you are used to, I get that. But here you’re falling prey to vendor lock-in once again. You’re used to it, you like it, you’re afraid of change, pay up. Simple. </p>\n<p>The advantage of open source software is the freedom to say “up yours” and build your own version instead. Git is open source. Think about it. A $15 a month VPS could easily fit your needs for both privacy and collaboration.</p></blockquote>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/github\">@github</a> found a way to be more expensive than the datacenter that runs my app. Seriously, what\'s happening at <a href=\"https://twitter.com/github\">@github</a> ???</p>\n<p>— Adilson Carvalho (@lcadilson) <a href=\"https://twitter.com/lcadilson/status/730405070819471361\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p>GitHub has established itself as the de facto code collaboration site by offering free hosting for public, open source repositories. However, the emphasis on “social coding” no longer extends to private repositories as organization owners will have little incentive to add more collaborators under the new pricing structure. It discourages organizations from adding users to be bug reporters or third-party collaborators. Teams and agencies hit hardest by the changes are now examining competitors like Bitbucket and self-hosted GitLab.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Today is for <a href=\"https://twitter.com/gitlab\">@gitlab</a> what 2007 was for <a href=\"https://twitter.com/WordPress\">@WordPress</a>. If code is poetry, Gitlab is your library. Own your code like you own your content. ❤️</p>\n<p>— John James Jacoby (@JJJ) <a href=\"https://twitter.com/JJJ/status/730417868047790080\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p>Organization owners will not be forced onto the new pricing plans immediately and GitHub promises to give a year’s notice before mandating a switch to the new plans:</p>\n<blockquote><p>We want everyone to have a plan with unlimited private repositories, but don’t worry—you are welcome to stay on your current plan while you evaluate the new cost structure and understand how to best manage your organization members and their private repository access. And while we’re currently not enforcing a timeline to move, rest assured that you’ll have at least 12 months notice before any mandated change to your plan.</p></blockquote>\n<p>While many individual developers will see lower monthly prices and even prorated credits on their accounts, the exponential cost increase for GitHub’s largest customers may cause a mass exodus to the company’s more affordable competitors. Are you moving your organization off of GitHub? Let us know in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 19:27:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Affinity: A Free WordPress Wedding Theme from Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54688\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/affinity-a-free-wordpress-wedding-theme-from-automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3832:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity.png?resize=800%2C471\" alt=\"affinity\" class=\"aligncenter size-full wp-image-54691\" /></a></p>\n<p>Affinity is the latest addition to WordPress.com’s small collection of <a href=\"https://wordpress.com/themes/search/wedding/\" target=\"_blank\">themes created specifically for weddings</a>. This highly customizable, elegant theme was designed by <a href=\"http://carolinemoore.net/\" target=\"_blank\">Caroline Moore</a> with weddings and family announcements in mind.</p>\n<p>Affinity is a one-page theme with support for five different panels. Each panel’s content can be assigned in the customizer under Theme Options by selecting a page from a drop-down.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/panel.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/panel.png?resize=660%2C231\" alt=\"panel\" class=\"aligncenter size-full wp-image-54717\" /></a></p>\n<p>With the customizable panel approach users are not locked into providing content for sections they don’t need. Single posts and pages support full screen featured images that, if used as a panel, become the background of that section. Affinity offers the option to set the header image opacity to create better contrast with header text. Users can also enable or disable scrolling on the header and front-page featured images.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-home-page.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-home-page.png?resize=200%2C474\" alt=\"affinity-home-page\" class=\"alignright size-full wp-image-54693\" /></a></p>\n<p>Affinity includes support for a sidebar widget area and three optional widget areas in the footer. If widgets are added to the sidebar, the one-column layout becomes a two-column layout. It also has a fullwidth page template for removing the sidebar on select pages.</p>\n<p>The different panels give users ample space for adding photos, links to registries, personal stories, info about the bridal party, and anything else related to the event. Affinity includes a Guestbook page template with a special format for displaying visitors’ comments. Turning the Guestbook on is as easy as setting the page template and making sure that comments are enabled.</p>\n<p>Another unique feature of the theme is its post intro area that displays beneath the headline before the first paragraph. It pulls content from the excerpt field and post authors can use it to capture readers’ attention with a quick summary or highlight.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-post-intro.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-post-intro.png?resize=660%2C328\" alt=\"affinity-post-intro\" class=\"aligncenter size-full wp-image-54729\" /></a></p>\n<p>Check out the <a href=\"https://affinitydemo.wordpress.com/\" target=\"_blank\">live demo</a> to see the theme in action. It shows an example of panels that display quotes, an RSVP form, event details, and an engagement story.</p>\n<p>Since no wedding or family announcement is the same, Affinity’s multi-panel approach offers flexibility for many different types of uses. If you’re creating a wedding website and are not finding enough customization options with a hosted service, this theme makes it quick and easy to set it up with WordPress. It’s not yet available on WordPress.org, but you can download a copy for your self-hosted site for free from the sidebar of its <a href=\"https://wordpress.com/themes/affinity\" target=\"_blank\">homepage on WordPress.com</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 06:52:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Help WPCampus Gather Data on How Schools and Campuses Use WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wptavern.com/help-wpcampus-gather-data-on-how-schools-and-campuses-use-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1247:\"<p>The organizers of <a href=\"https://2016.wpcampus.org/\">WPCampus</a> are <a href=\"https://www.surveymonkey.com/r/wpcampus05-2016\">seeking feedback</a> via a survey on how schools and campuses utilize WordPress in their environments. The survey consists of five sections:</p>\n<ul>\n<li>How Do You Use WordPress on Campus</li>\n<li>Site Demographics, Traffic, and Data</li>\n<li>Plugins, Themes, and Features</li>\n<li>Security, Performance, and Hosting</li>\n<li>Your Team Structure & Workflows</li>\n</ul>\n<p>There are a couple of perks for those who fill out the survey. Respondents will receive an anonymized version of the complete data set. Those who complete four or more sections will be entered into a drawing to win a free ticket to the conference and will receive a $5 Starbucks or Amazon Gift card.</p>\n<p>Answer the questions that you know and skip the ones you don’t. The team needs as much data as possible to provide a clearer picture of WordPress’ use in higher education. If you know someone or an organization that uses WordPress in higher education, please <a href=\"https://www.surveymonkey.com/r/wpcampus05-2016\">share the survey</a> with them. The survey closes on May 27th.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 03:21:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: What Do You Think of the Recommended Plugins Page in WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54437\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/what-do-you-think-of-the-recommended-plugins-page-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3913:\"<p>In late 2014, <a href=\"http://wptavern.com/wordpress-4-1-to-introduce-plugin-recommendations\">WordPress 4.1 added</a> a Recommended Plugins tab that takes into account the plugins you have installed and suggests plugins based on which ones are commonly used together. After nearly a year and a half since it was added, I asked the <a href=\"https://twitter.com/wptavern/status/727578470415532032\">Tavern’s Twitter followers</a> if they have ever installed plugins recommended by WordPress.</p>\n<p>I was surprised to discover that some people don’t know the tab exists.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> There\'s a \"Recommended\" tab?!?</p>\n<p>— Joe Taiabjee (@joetek) <a href=\"https://twitter.com/joetek/status/727581218414407681\">May 3, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> I\'ve just noticed the Recommended tab. It seems to show those plugins with most Active Installs. Interesting, but a bit \'hidden\'</p>\n<p>— Alejandro Vargas S. (@Alejandro_V_S) <a href=\"https://twitter.com/Alejandro_V_S/status/727836820159930369\">May 4, 2016</a></p></blockquote>\n<p></p>\n<p>Steve Brown says the recommendations are useful.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> yep :) very useful feature indeed</p>\n<p>— Steve Brown (@stevna) <a href=\"https://twitter.com/stevna/status/727681984504287232\">May 4, 2016</a></p></blockquote>\n<p></p>\n<p>Some people view the page as an opportunity for Automattic to advertise its plugins while others don’t trust the recommendations.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> I have no needs for the Automattic plugins that are almost only being recommended there</p>\n<p>— Marko Heijnen (@markoheijnen) <a href=\"https://twitter.com/markoheijnen/status/727624592399998976\">May 3, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> Once. However 10 of the plugins recommended on page 1 are untested with my version of WP. So wouldnt rely on the recommendations</p>\n<p>— WPin.me (@wp_in) <a href=\"https://twitter.com/wp_in/status/727725233843671040\">May 4, 2016</a></p></blockquote>\n<p></p>\n<p>When I viewed the recommended plugins page in 2014, the results displayed plugins that weren’t updated in years.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/RecommendedPluginsTab.png\"><img class=\"size-full wp-image-35318\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/RecommendedPluginsTab.png?resize=1025%2C527\" alt=\"Plugins Recommended To Me Based on Data of Sites with Similar Plugins Installed\" /></a>Plugins Recommended To Me Based on Data of Sites with Similar Plugins Installed\n<p>Today, the page displays more relevant results with recently updated plugins. On the first page of results for WP Tavern, only one plugin from Automattic is recommended. The second page of results doesn’t list any plugins authored by Automattic.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/2016RecommendedPlugins.png\"><img class=\"size-full wp-image-54616\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/2016RecommendedPlugins.png?resize=1025%2C514\" alt=\"Recommended Plugins in 2016\" /></a>Recommended Plugin Results in 2016\n<p>To help determine how useful the recommended plugins page is, I’d like you to take this short survey. Results will be displayed on Tuesday, May 17th. In addition to the survey, you can leave your feedback in the comments.</p>\n<div class=\"pd-embed\" type=\"type\"></div>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 03:19:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Automattic is Protecting its Woo, WooThemes, and WooCommerce Trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wptavern.com/automattic-is-protecting-its-woo-woothemes-and-woocommerce-trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6735:\"<p>When <a href=\"http://wptavern.com/automattic-acquires-woocommerce\">Automattic acquired WooThemes in 2015</a>, it gained employees, plugins, themes, and the company’s trademarks. These trademarks include, standard character marks, logos, and specific graphics such as the Verified WooExpert badges. One of the responsibilities of a trademark owner is to protect it from infringement.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/VerifiedWooExpertServicemark.png\"><img class=\"size-full wp-image-54702\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/VerifiedWooExpertServicemark.png?resize=1025%2C621\" alt=\"Verified WooExpert Service Mark\" /></a>Verified WooExpert Service Mark\n<p>WooGPL is a service that provides customers with commercial themes, plugins, and extensions for WooCommerce at a discounted rate. In March, Automattic <a href=\"https://woogpl.com/woogpl-is-closing/\">sent Billy Ablett</a>, owner of <a href=\"https://woogpl.com\">WooGPL</a>, the following notice that informs him that his domain infringes the Woo and WooCommerce trademarks.</p>\n<blockquote><p>I’m writing to you on behalf of Automattic Inc. regarding your use of the Woo and WooCommerce trademarks.</p>\n<p>As you may know, Automattic owns the Woo, WooCommerce, and WooThemes brands, as well as the associated trademarks. We recently learned of https://woogpl.com, which actively makes use of our registered trademarks in both its name and promotion. We are very concerned that your use of Woo and WooCommerce will create confusion by communicating that your WooCommerce products are endorsed by or associated with Automattic, when in fact it is not.</p>\n<p>While Automattic appreciates that you are providing products that build on WooCommerce open source software, that fact does not authorize you to use Woo, WooThemes or WooCommerce trademarks.</p>\n<p>To minimize user confusion and to protect our own intellectual property, we unfortunately must insist that you take prompt steps to change your domain name to something that doesn’t include ‘Woo’ in the prefix, and change your product descriptions to avoid confusion and potentially misleading consumers to believe they are purchasing our products. An example of this would be: WooCommerce Email Customiser Pro would need to be changed to Email Customiser Pro for WooCommerce.</p>\n<p>For more information, please see our <a href=\"https://www.woothemes.com/style-guide/#sg-trademarks\">Trademark Guidelines</a>.</p>\n<p>While we are appreciative that you have included a disclaimer on your site, unfortunately this would not be sufficient and we would still insist that the domain name and product names be changed.</p></blockquote>\n<p>While it’s not the sole reason <a href=\"https://woogpl.com/woogpl-is-closing/\">WooGPL is shutting down</a>, the notice provides a convenient opportunity to rebrand to <a href=\"https://www.gplkit.com/\">GPL Kit</a>, something the company was already planning to do.</p>\n<p>“We would have eventually closed down WooGPL due to GPL Kit however, it would have been great to close it down on our terms when the time was right,” Daniel, who is part of the GPL Kit team told the Tavern.</p>\n<p>Daniel says that when he started WooGPL there wasn’t a trademark registered with the Woo character mark until October of 2015.</p>\n<p>A search of the United States Patent and Trademark Office for Woo contains over 1K results. However, this is the only character mark for Woo that I found. The filing date is October 22nd, 2015 and is in the approval process.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WooCharacterMark.png\"><img class=\"size-full wp-image-54703\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WooCharacterMark.png?resize=1003%2C557\" alt=\"Woo Character Mark\" /></a>Woo Character Mark\n<h2>When You Should Ask For Permission</h2>\n<p>WooThemes has a <a href=\"https://www.woothemes.com/style-guide/#sg-trademarks\">style guide</a> on its site that explains how the brand is used and has details on when Woo™, WooCommerce®, and WooThemes® names, logos, and related icons collectively known as Woo Marks can be used without permission. The following chart provides some examples.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PermissionChartForWooTrademarks.png\"><img class=\"size-full wp-image-54704\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PermissionChartForWooTrademarks.png?resize=1010%2C814\" alt=\"Examples of When You Do and Don\'t Need Permission\" /></a>Examples of When You Do and Don’t Need Permission\n<p>If you’re in doubt, you can email Automattic’s trademark team <a href=\"mailto:trademarks@automattic.com\">trademarks @ automattic.com</a> to receive clarification.</p>\n<h2>Woo’s at Risk?</h2>\n<p>There are quite a few businesses in the WordPress ecosystem that use Woo in their name and domain. <a href=\"http://www.woorockets.com/\">WooRockets</a> is a WooCommerce theme shop while <a href=\"http://wooassist.com/\">WooAssist</a> provides support and maintenance for store owners.</p>\n<p>I reached out to both companies to determine if Automattic sent them the same notice it sent to WooGPL. While I didn’t receive a response from WooRockets, John Gamour of WooAssist provided the Tavern with the following statement:</p>\n<blockquote><p>No, we haven’t been contacted by Automattic about that. It would be dissapointing if we were asked to change our name as our founder Nicholas Jones reached out to WooThemes before starting Wooassist and they gave the OK. We have also worked with Matt Cohen and James Koster on a project and nothing was ever mentioned about our name.</p></blockquote>\n<p>I tried to get in touch with Paul Sieminski, legal counsel for Automattic, to learn what the criteria is for violating the trademarks, who’s at risk, and how long they have enforced the marks but he could not be reached for comment.</p>\n<h2>Better to be Safe Than Sorry</h2>\n<p>As WooGPL discovered, adding a disclaimer to the bottom of your sites may not be enough. Considering the cost and potential impacts of re branding a company or product, it’s important to know as soon as possible if you’re infringing a company’s trademarks.</p>\n<p>Business owners in the WooCommerce and WooThemes ecosystem should double-check the <a href=\"https://www.woothemes.com/style-guide/#sg-trademarks\">style guide</a> to make sure you’re not violating any guidelines. Owners can also take a proactive step and contact Automattic’s trademark team to determine if your business meets the requirements.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2016 20:21:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WooCommerce Releases Storefront 2.0 with Major Improvements to Mobile Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54641\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wptavern.com/woocommerce-releases-storefront-2-0-with-major-improvements-to-mobile-design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3509:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-update.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-update.png?resize=1025%2C451\" alt=\"storefront-update\" class=\"aligncenter size-full wp-image-54669\" /></a></p>\n<p><a href=\"https://wordpress.org/themes/storefront/\" target=\"_blank\">Storefront</a>, the official WooCommerce theme built to work seamlessly with the plugin, has just passed the <a href=\"https://www.woothemes.com/2016/05/storefront-2-0-release/\" target=\"_blank\">2.0 milestone</a>. This release introduces a new “best sellers” section to the homepage and adds compatibility with the upcoming WooCommerce 2.6’s tabbed “My Account” section and the average rating widget.</p>\n<p>The most important update in Storefront 2.0 is the redesigned mobile experience. According to <a href=\"http://resources.mobify.com/50-mobile-commerce-stats.html\" target=\"_blank\">Mobify</a>, 30% of mobile shoppers will abandon a transaction if the experience is not optimized for mobile. <a href=\"http://www.themobileplaybook.com/\" target=\"_blank\">Google’s Mobile Playbook</a> says that not having a mobile optimized website is like closing your store one day each week. To keep pace with the expectations of mobile buyers, WooCommerce has drastically reduced Storefront’s mobile header height by 60% and has added the search, shopping cart, and account links to a sticky bottom menu for easy access.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-mobile-home.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-mobile-home.png?resize=799%2C697\" alt=\"storefront-mobile-home\" class=\"aligncenter size-full wp-image-54671\" /></a></p>\n<p>Storefront 2.0 includes many design improvements that make the theme cleaner and more flexible. This update removes Helvetica in favor of Source Sans, which WooCommerce says gives them access to a wider variety of weights they can use to “provide greater depth and cohesion.” Other notable design changes include:</p>\n<ul>\n<li>Borders have been largely removed so that pages don’t feel quite so broken up.</li>\n<li>The breadcrumb and the main navigation are now wrapped in their own content regions, cementing them as unique components.</li>\n<li>Product reviews and comments tweaked to make them cleaner and more scannable.</li>\n<li>Blog post meta has been redesigned to include the author Gravatar.</li>\n<li>Softer design treatment for tables with colors based on the main background color.</li>\n<li>oEmbeds have been styled to match the rest of Storefront (including typography, padding, colors).</li>\n<li>Integrated WordPress 4.5’s custom logo feature so users can add a logo without using a plugin.</li>\n</ul>\n<p><a href=\"https://wordpress.org/themes/storefront/\" target=\"_blank\">Storefront</a> is active on more than 50,000 websites. There are nearly a dozen free themes on WordPress.org that use it as a parent theme and another dozen commercial themes on WooThemes.com. If you use a heavily customized Storefront child theme, you may want to test its compatibility with the 2.0 update on a development site to ensure that there are no visual surprises. If you have any ideas or recommendations for updates to Storefront, you can leave feedback on the theme’s <a href=\"http://ideas.woothemes.com/forums/275029-storefront\" target=\"_blank\">idea board</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2016 22:23:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: Timber 1.0 Is Now Available on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wptavern.com/timber-1-0-is-now-available-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5932:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/timber.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/timber.png?resize=1025%2C405\" alt=\"timber\" class=\"aligncenter size-full wp-image-54630\" /></a></p>\n<p>Last week the creators of <a href=\"https://wordpress.org/plugins/timber-library/\" target=\"_blank\">Timber</a>, the plugin that enables WordPress theme developers to write HTML using the <a href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig Template Engine</a>, released version 1.0 on WordPress.org. The plugin is active on more than 10,000 websites where theme authors have elected to keep PHP files separate from HTML. Timber is built on DRY and MVC principles to solve the problem stated in its unofficial tagline: <em>“Because WordPress is awesome, but the_loop isn’t.”</em></p>\n<p>Over the past four years, the open source project has evolved from being a starter theme to a plugin that can be added to existing themes. It is now used on <a href=\"http://upstatement.com/timber/#showcase\" target=\"_blank\">thousands of websites</a> and has 83 <a href=\"https://github.com/timber/timber/graphs/contributors\" target=\"_blank\">contributors</a> listed on GitHub.</p>\n<p>“In 2012 I was getting more into WordPress after doing lots of JS development with <a href=\"http://handlebarsjs.com/\" target=\"_blank\">Handlebars</a> (a JS templating language),” Timber creator Jared Novack said. “I went to WordCamp Providence to learn more about state-of-the-art WordPress ways. I remember thinking: ‘This is great, but I really miss the cleanliness of Handlebars — I wish someone would make something like that for WordPress.’ That’s when I realized, I was that someone.”</p>\n<p>Novack was playing around with <a href=\"http://www.smarty.net/\" target=\"_blank\">Smarty</a> and <a href=\"https://mustache.github.io/\" target=\"_blank\">Mustache</a> before he finally discovered Fabien Potencier’s <a href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig project</a>.</p>\n<p>“The syntax felt so natural I almost didn’t need to read the docs (don’t worry, I did),” he said. “I realized what I needed was a way to marry Twig and WordPress, and thus: Timber was born.”</p>\n<p>At that time Novack’s company, <a href=\"https://upstatement.com/\" target=\"_blank\">Upstatement</a>, was beginning development on a big new project for Random House to enable their marketers to generate unique sites from a library of templates. This client project became Timber’s first test case.</p>\n<p>“Originally, Timber was a parent theme, like _s. But after we completed the Random House project, I realized I wanted to apply Timber functionality to existing sites,” Novack said. “I converted it into a plugin that could be employed on existing themes which is the form it takes today.”</p>\n<p>The plugin allows designers skilled with HTML and CSS to create themes without having extensive knowledge of PHP and WordPress functions. Timber successfully powers sites like Michael Bloomberg’s <a href=\"https://www.thetrace.org/\" target=\"_blank\">The Trace</a>, <a href=\"http://everytown.org/\" target=\"_blank\">Everytown for Gun Safety</a>, <a href=\"https://www.hoteltonight.com/\" target=\"_blank\">Hotel Tonight</a>, and the <a href=\"http://harvardlawreview.org/\" target=\"_blank\">Harvard Law Review</a>.</p>\n<h3>Timber 1.0 Puts the Project on the Path of Stability</h3>\n<p>As of Timber 1.0, developers can now include the project as a plugin or require it as a <a href=\"https://packagist.org/packages/timber/timber\" target=\"_blank\">Composer dependency</a>.</p>\n<p>“The big news is that 1.0 represents a maturing of the platform — developers can use Timber and Twig with confidence that they’re building on top of a stable and universal platform,” Novack said.</p>\n<p>This release sheds years of deprecated functions and methods dating back to the project’s early days in 2013. Novack said that technical and documentation debt were the biggest hurdles in getting to 1.0.</p>\n<p>“In hindsight it’s so easy to build stuff, but so hard to build a complete system,” he said. “When Timber started it was just for me and the documentation could just live in my head. I’d add and improve stuff and then live with some of the quirks.”</p>\n<p>As the project and its contributors grew, Novack found it difficult to keep up with the growing codebase while running his company. Bringing it to a place of maturity with up-to-date automated testing and documentation took nearly a year.</p>\n<p>“Backwards compatibility was also a major challenge,” Novack said. “As ideas and new code got submitted, development slowed as every decision might have implications for existing users. We would deprecate features, but I was hesitant to remove things that I knew were mistakes, but that people were using.”</p>\n<p>Developers are encouraged to read the <a href=\"https://github.com/timber/timber/wiki/1.0-Upgrade-Guide\" target=\"_blank\">1.0 Upgrade Guide</a>, as there may be additional steps required depending on how Timber is being used. This release adds a few new features but the most important change is the bulk removal of older sections of the codebase. The upgrade guide outlines all of the object properties and static methods that will need to be updated so that nothing breaks. In the future, Timber-powered themes will be easier to maintain, with fewer quirks and better-documented features.</p>\n<p>“The key learning for me is that the ultimate ‘killer feature’ is stability and predictability,” Novack said. “When everything is organized cleanly and developers can use the things that they would intuitively expect — that’s success.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2016 17:52:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Post Status: WordPress Security — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24378\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://poststatus.com/wordpress-security-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2296:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p><span>Security — in WordPress core, distributed plugins and themes, and in our custom code — is a constant battle. It’s important to be vigilant with our security practices, from the perspective of managing our websites and when writing code. In this episode, Joe and Brian discuss the nature of WordPress security, best practices for writing secure code, and dig into various situations WordPress developers and site owners may run into.</span></p>\n<a href=\"https://audio.simplecast.com/37301.mp3\">https://audio.simplecast.com/37301.mp3</a>\n<p><a href=\"http://audio.simplecast.com/37301.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://codex.wordpress.org/Hardening_WordPress\">Hardening WordPress</a></li>\n<li><a href=\"https://wordpress.org/about/security/\">About WordPress Security</a></li>\n<li><a href=\"https://make.wordpress.org/themes/2015/05/19/a-guide-to-writing-secure-themes-part-1-introduction/\">A Guide to Writing Secure Themes</a></li>\n<li><a href=\"http://ben.lobaugh.net/uploads/writing-secure-plugins-and-themes/#/\">Writing Secure Plugins & Themes</a> by Ben Lobaugh</li>\n<li><a href=\"https://codex.wordpress.org/Class_Reference/wpdb\">$wpdb</a></li>\n<li><a href=\"https://wpvulndb.com/\">WP Scan</a></li>\n<li><a href=\"https://blog.sucuri.net/2015/03/understanding-wordpress-plugin-vulnerabilities.html\">Understanding Vulnerabilities</a></li>\n</ul>\n<h3>Sponsor: Pagely</h3>\n<p><a href=\"https://pagely.com\"><span>Pagely</span></a><span> offers best in class managed WordPress hosting, powered by the Amazon Cloud, the Internet’s most reliable infrastructure. Post Status is proudly hosted by Pagely. Thank you to </span><a href=\"https://pagely.com\"><span>Pagely</span></a><span> for being a Post Status partner.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2016 01:01:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Apple and Podcasting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46548\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2016/05/apple-and-podcasting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:557:\"<p><a href=\"https://marco.org/2016/05/07/apple-role-in-podcasting\">Marco Arment has a great take on how the decentralized nature of podcasting is a feature</a>, not a bug, and Apple being more proactive there would be harmful to the ecosystem. As an aside, since I’ve been in Houston more recently, which means driving a lot, I’ve been really loving his app <a href=\"https://overcast.fm/\">Overcast</a> and I opted in to the optional paid subscription for it. I just need to get in more of a habit of listening to podcasts outside of Houston.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 08 May 2016 14:17:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 22 Jul 2016 11:36:25 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"252225\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 22 Jul 2016 11:15:20 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911080210\";}','no'),(149,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1469230585','no'),(150,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1469187385','no'),(151,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1469230586','no'),(152,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jul 2016 11:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Google Analytics by MonsterInsights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2646@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"9542@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site for Search Engines\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 15 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"6743@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26907@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"28395@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"UpdraftPlus WordPress Backup Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38058@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2012 01:25:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"47509@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical login experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Dave Ross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 16:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49521@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Easy to use WordPress Slider plugin. Create responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matcha Labs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 22 Jul 2016 11:36:26 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Fri, 14 Sep 2007 12:15:27 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911080210\";}','no'),(153,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1469230586','no'),(154,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1469187386','no'),(155,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1469230586','no'),(156,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\'>WordPress 4.6 Beta 4</a> <span class=\"rss-date\">July 20, 2016</span><div class=\"rssSummary\">WordPress 4.6 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://apps.wordpress.com/2016/07/16/wordpress-for-ios-version-6-3/\'>WP Mobile Apps: WordPress for iOS: Version 6.3</a></li><li><a class=\'rsswidget\' href=\'http://blog.wordpress.tv/2016/07/16/staff-pick-theming-in-wordpress-where-do-i-start/\'>WordPress.tv Blog: Staff Pick: Theming in WordPress – Where do I start?</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/medium-wordpress-draft-podcast/\'>Post Status: Medium and WordPress — Draft Podcast</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Clef Two-Factor Authentication <a href=\"plugin-install.php?tab=plugin-information&plugin=wpclef&_wpnonce=6e73c6f0eb&TB_iframe=true&width=600&height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Clef Two-Factor Authentication\">(Install)</a></li></ul></div>','no'),(163,'_site_transient_timeout_available_translations','1469198465','yes'),(164,'_site_transient_available_translations','a:81:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-14 10:53:34\";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.5.3/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.5.2\";s:7:\"updated\";s:19:\"2016-04-13 14:44: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.5.2/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";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.5.2\";s:7:\"updated\";s:19:\"2016-06-18 20:18:13\";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.5.2/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:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-27 08:19:49\";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.5.3/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:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-06-01 06:39:12\";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.5.2/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.5.2\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";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.5.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-22 04:43:03\";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.5.3/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:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.3/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-11 18:32:36\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-01 14:29:56\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-28 11:16:44\";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.5.3/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-30 18:59:13\";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.5.3/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 20:03:25\";s:12:\"english_name\";s:23:\"(Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.5.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-26 10:08:23\";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.5.3/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:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-02 11:53:27\";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.5.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-21 20:20:54\";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.5.3/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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-26 19:24:51\";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.5.3/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:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-28 11:29:02\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/en_ZA.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.5.3\";s:7:\"updated\";s:19:\"2016-06-21 22:55:40\";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.5.3/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-21 21:28:52\";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.5.3/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-21 22:23:41\";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.5.3/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-29 13:59:02\";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.5.3/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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-01 14:32:46\";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.5.3/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-01 14:26:32\";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.5.3/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-15 15:42:15\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.3/es_AR.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_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-16 17:35:43\";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.5.2/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_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 12:43:00\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_GT.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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-21 19:09:44\";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.5.3/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:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-23 19:36:14\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.3/es_VE.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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 11:11:25\";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.5.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-30 11:41:42\";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.5.3/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.5.2\";s:7:\"updated\";s:19:\"2016-06-20 14:58:27\";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.5.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-26 09:08:24\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-22 06:33:34\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-07-20 09:10:22\";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.5.3/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:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-13 12:55:08\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.3/fr_CA.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:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.3.4\";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.4/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.5.3\";s:7:\"updated\";s:19:\"2016-06-28 21:28:18\";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.5.3/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.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";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.4.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-26 15:19:37\";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.5.3/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-22 11:01:09\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.3/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}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.5.3\";s:7:\"updated\";s:19:\"2016-06-28 10:01:58\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-21 18:58:51\";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.5.3/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:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";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.4.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-29 09:14:16\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-21 19:10:05\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-07-20 13:14:15\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-21 20:05:02\";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.5.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-15 07:32:48\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-12 09:49:29\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-22 09:14:39\";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.5.3/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:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-12 13:55:28\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-16 06:42:31\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-28 05:36:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.3/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.12\";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:65:\"https://downloads.wordpress.org/translation/core/4.1.12/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.5.3\";s:7:\"updated\";s:19:\"2016-07-11 07:19:28\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-07-15 10:43:48\";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.5.3/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-01-20 13:35:50\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.4.3/nl_NL_formal.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.5.3\";s:7:\"updated\";s:19:\"2016-06-23 11:56:46\";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.5.3/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:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-07-19 07:00:57\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-23 08:13:15\";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.5.3/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:6:\"4.1.12\";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:62:\"https://downloads.wordpress.org/translation/core/4.1.12/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:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-30 23:41:16\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-07-19 22:01:14\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-28 05:26:21\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-26 13:55:57\";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.5.3/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.5.2\";s:7:\"updated\";s:19:\"2016-05-29 09:53:12\";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.5.2/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.4.2\";s:7:\"updated\";s:19:\"2015-11-26 00:00:18\";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.4.2/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:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.5.3\";s:7:\"updated\";s:19:\"2016-06-23 09:08:48\";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.5.3/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.5.2\";s:7:\"updated\";s:19:\"2016-04-10 08:00:57\";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.5.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-23 10:13:40\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-30 10:22:26\";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.5.3/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.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";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.4.2/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.5.3\";s:7:\"updated\";s:19:\"2016-06-26 08:25:58\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-06-22 12:27:05\";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.5.3/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.5.3\";s:7:\"updated\";s:19:\"2016-07-20 19:27:06\";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.5.3/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:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-17 03:29:01\";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.5.2/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.5.2\";s:7:\"updated\";s:19:\"2016-04-12 09:08:07\";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.5.2/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'),(165,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(168,'category_children','a:0:{}','yes'),(169,'layout_category_children','a:0:{}','yes'),(170,'project_category_children','a:0:{}','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=1657 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 (1,2,'_wp_page_template','default'),(48,27,'_wp_attached_file','2016/07/Cover-pic-400x250-1.jpg'),(49,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:31:\"2016/07/Cover-pic-400x250-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Cover-pic-400x250-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:31:\"Cover-pic-400x250-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Cover-pic-400x250-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(68,37,'_wp_attached_file','2016/07/ductcleaning-pack-400x284-1.jpg'),(69,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:284;s:4:\"file\";s:39:\"2016/07/ductcleaning-pack-400x284-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ductcleaning-pack-400x284-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:39:\"ductcleaning-pack-400x284-1-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"ductcleaning-pack-400x284-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(94,50,'_et_pb_predefined_layout','on'),(95,50,'_et_pb_built_for_post_type','page'),(96,51,'_et_pb_predefined_layout','on'),(97,51,'_et_pb_built_for_post_type','page'),(98,52,'_et_pb_predefined_layout','on'),(99,52,'_et_pb_built_for_post_type','page'),(100,53,'_et_pb_predefined_layout','on'),(101,53,'_et_pb_built_for_post_type','page'),(102,54,'_et_pb_predefined_layout','on'),(103,54,'_et_pb_built_for_post_type','page'),(104,55,'_et_pb_predefined_layout','on'),(105,55,'_et_pb_built_for_post_type','page'),(106,56,'_et_pb_predefined_layout','on'),(107,56,'_et_pb_built_for_post_type','page'),(108,57,'_et_pb_predefined_layout','on'),(109,57,'_et_pb_built_for_post_type','page'),(110,58,'_et_pb_predefined_layout','on'),(111,58,'_et_pb_built_for_post_type','page'),(112,59,'_et_pb_predefined_layout','on'),(113,59,'_et_pb_built_for_post_type','page'),(114,60,'_et_pb_predefined_layout','on'),(115,60,'_et_pb_built_for_post_type','page'),(116,61,'_et_pb_predefined_layout','on'),(117,61,'_et_pb_built_for_post_type','page'),(118,62,'_et_pb_predefined_layout','on'),(119,62,'_et_pb_built_for_post_type','page'),(120,63,'_et_pb_predefined_layout','on'),(121,63,'_et_pb_built_for_post_type','page'),(122,64,'_et_pb_predefined_layout','on'),(123,64,'_et_pb_built_for_post_type','page'),(124,65,'_et_pb_predefined_layout','on'),(125,65,'_et_pb_built_for_post_type','page'),(126,66,'_et_pb_predefined_layout','on'),(127,66,'_et_pb_built_for_post_type','page'),(128,67,'_et_pb_predefined_layout','on'),(129,67,'_et_pb_built_for_post_type','page'),(130,68,'_et_pb_predefined_layout','on'),(131,68,'_et_pb_built_for_post_type','page'),(132,69,'_et_pb_predefined_layout','on'),(133,69,'_et_pb_built_for_post_type','page'),(134,70,'_et_pb_predefined_layout','on'),(135,70,'_et_pb_built_for_post_type','page'),(136,71,'_et_pb_predefined_layout','on'),(137,71,'_et_pb_built_for_post_type','page'),(138,72,'_et_pb_predefined_layout','on'),(139,72,'_et_pb_built_for_post_type','page'),(140,73,'_et_pb_predefined_layout','on'),(141,73,'_et_pb_built_for_post_type','page'),(142,74,'_et_pb_predefined_layout','on'),(143,74,'_et_pb_built_for_post_type','page'),(144,75,'_et_pb_predefined_layout','on'),(145,75,'_et_pb_built_for_post_type','page'),(146,76,'_et_pb_predefined_layout','on'),(147,76,'_et_pb_built_for_post_type','page'),(148,77,'_et_pb_predefined_layout','on'),(149,77,'_et_pb_built_for_post_type','page'),(150,78,'_et_pb_predefined_layout','on'),(151,78,'_et_pb_built_for_post_type','page'),(152,79,'_et_pb_predefined_layout','on'),(153,79,'_et_pb_built_for_post_type','page'),(154,80,'_et_pb_predefined_layout','on'),(155,80,'_et_pb_built_for_post_type','page'),(156,81,'_et_pb_predefined_layout','on'),(157,81,'_et_pb_built_for_post_type','page'),(160,25343,'_et_pb_built_for_post_type','page'),(161,135,'_et_pb_built_for_post_type','page'),(162,25344,'_menu_item_type','custom'),(163,25344,'_menu_item_menu_item_parent','0'),(164,25344,'_menu_item_object_id','25344'),(165,25344,'_menu_item_object','custom'),(166,25344,'_menu_item_target',''),(167,25344,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(168,25344,'_menu_item_xfn',''),(169,25344,'_menu_item_url','http://digital2grow.net/tvdhkd/'),(170,38,'_edit_last','1'),(171,38,'_wp_page_template','default'),(172,38,'_et_pb_post_hide_nav','default'),(173,38,'_et_pb_page_layout','et_right_sidebar'),(174,38,'_et_pb_side_nav','off'),(175,38,'_et_pb_use_builder',''),(176,38,'_et_pb_ab_bounce_rate_limit','5'),(177,38,'_et_pb_ab_stats_refresh_interval','hourly'),(178,38,'_et_pb_old_content',''),(179,38,'_et_pb_enable_shortcode_tracking',''),(180,38,'_et_pb_custom_css',''),(181,38,'_et_pb_light_text_color','#FFFFFF'),(182,38,'_et_pb_dark_text_color','#666666'),(183,38,'_et_pb_content_area_background_color',''),(184,38,'_et_pb_section_background_color','#FFFFFF'),(185,40,'_edit_last','1'),(186,40,'_wp_page_template','default'),(187,40,'_et_pb_post_hide_nav','default'),(188,40,'_et_pb_page_layout','et_right_sidebar'),(189,40,'_et_pb_side_nav','off'),(190,40,'_et_pb_use_builder','on'),(191,40,'_et_pb_ab_bounce_rate_limit','5'),(192,40,'_et_pb_ab_stats_refresh_interval','hourly'),(193,40,'_et_pb_old_content',''),(194,40,'_et_pb_enable_shortcode_tracking',''),(195,40,'_et_pb_custom_css',''),(196,40,'_et_pb_light_text_color','#FFFFFF'),(197,40,'_et_pb_dark_text_color','#666666'),(198,40,'_et_pb_content_area_background_color',''),(199,40,'_et_pb_section_background_color','#FFFFFF'),(200,42,'_edit_last','1'),(201,42,'_wp_page_template','default'),(202,42,'_et_pb_post_hide_nav','default'),(203,42,'_et_pb_page_layout','et_right_sidebar'),(204,42,'_et_pb_side_nav','off'),(205,42,'_et_pb_use_builder',''),(206,42,'_et_pb_ab_bounce_rate_limit','5'),(207,42,'_et_pb_ab_stats_refresh_interval','hourly'),(208,42,'_et_pb_old_content',''),(209,42,'_et_pb_enable_shortcode_tracking',''),(210,42,'_et_pb_custom_css',''),(211,42,'_et_pb_light_text_color','#FFFFFF'),(212,42,'_et_pb_dark_text_color','#666666'),(213,42,'_et_pb_content_area_background_color',''),(214,42,'_et_pb_section_background_color','#FFFFFF'),(255,25351,'_wp_page_template','default'),(256,25351,'_wp_trash_meta_status','publish'),(257,25351,'_wp_trash_meta_time','1468896738'),(258,25351,'_wp_desired_post_slug','sample-page'),(259,44,'_edit_last','1'),(260,44,'_wp_page_template','default'),(261,44,'_et_pb_post_hide_nav','default'),(262,44,'_et_pb_page_layout','et_right_sidebar'),(263,44,'_et_pb_side_nav','off'),(264,44,'_et_pb_use_builder','on'),(265,44,'_et_pb_ab_bounce_rate_limit','5'),(266,44,'_et_pb_ab_stats_refresh_interval','hourly'),(267,44,'_et_pb_old_content',''),(268,44,'_et_pb_enable_shortcode_tracking',''),(269,44,'_et_pb_custom_css',''),(270,44,'_et_pb_light_text_color','#FFFFFF'),(271,44,'_et_pb_dark_text_color','#666666'),(272,44,'_et_pb_content_area_background_color',''),(273,44,'_et_pb_section_background_color','#FFFFFF'),(274,46,'_edit_last','1'),(275,46,'_wp_page_template','default'),(276,46,'_et_pb_post_hide_nav','default'),(277,46,'_et_pb_page_layout','et_right_sidebar'),(278,46,'_et_pb_side_nav','off'),(279,46,'_et_pb_use_builder','on'),(280,46,'_et_pb_ab_bounce_rate_limit','5'),(281,46,'_et_pb_ab_stats_refresh_interval','hourly'),(282,46,'_et_pb_old_content',''),(283,46,'_et_pb_enable_shortcode_tracking',''),(284,46,'_et_pb_custom_css',''),(285,46,'_et_pb_light_text_color','#FFFFFF'),(286,46,'_et_pb_dark_text_color','#666666'),(287,46,'_et_pb_content_area_background_color',''),(288,46,'_et_pb_section_background_color','#FFFFFF'),(289,47,'_edit_last','1'),(290,47,'_wp_page_template','default'),(291,47,'_et_pb_post_hide_nav','default'),(292,47,'_et_pb_page_layout','et_right_sidebar'),(293,47,'_et_pb_side_nav','off'),(294,47,'_et_pb_use_builder','on'),(295,47,'_et_pb_ab_bounce_rate_limit','5'),(296,47,'_et_pb_ab_stats_refresh_interval','hourly'),(297,47,'_et_pb_old_content',''),(298,47,'_et_pb_enable_shortcode_tracking',''),(299,47,'_et_pb_custom_css',''),(300,47,'_et_pb_light_text_color','#FFFFFF'),(301,47,'_et_pb_dark_text_color','#666666'),(302,47,'_et_pb_content_area_background_color',''),(303,47,'_et_pb_section_background_color','#FFFFFF'),(304,49,'_edit_last','1'),(305,49,'_wp_page_template','default'),(306,49,'_et_pb_post_hide_nav','default'),(307,49,'_et_pb_page_layout','et_right_sidebar'),(308,49,'_et_pb_side_nav','off'),(309,49,'_et_pb_use_builder','on'),(310,49,'_et_pb_ab_bounce_rate_limit','5'),(311,49,'_et_pb_ab_stats_refresh_interval','hourly'),(312,49,'_et_pb_old_content',''),(313,49,'_et_pb_enable_shortcode_tracking',''),(314,49,'_et_pb_custom_css',''),(315,49,'_et_pb_light_text_color','#FFFFFF'),(316,49,'_et_pb_dark_text_color','#666666'),(317,49,'_et_pb_content_area_background_color',''),(318,49,'_et_pb_section_background_color','#FFFFFF'),(319,25352,'_edit_last','1'),(320,25352,'_wp_page_template','default'),(321,25352,'_et_pb_post_hide_nav','default'),(322,25352,'_et_pb_page_layout','et_right_sidebar'),(323,25352,'_et_pb_side_nav','off'),(324,25352,'_et_pb_use_builder','on'),(325,25352,'_et_pb_ab_bounce_rate_limit','5'),(326,25352,'_et_pb_ab_stats_refresh_interval','hourly'),(327,25352,'_et_pb_old_content',''),(328,25352,'_et_pb_enable_shortcode_tracking',''),(329,25352,'_et_pb_custom_css',''),(330,25352,'_et_pb_light_text_color','#FFFFFF'),(331,25352,'_et_pb_dark_text_color','#666666'),(332,25352,'_et_pb_content_area_background_color',''),(333,25352,'_et_pb_section_background_color','#FFFFFF'),(334,25353,'_edit_last','1'),(335,25353,'_wp_page_template','default'),(336,25353,'_et_pb_post_hide_nav','default'),(337,25353,'_et_pb_page_layout','et_right_sidebar'),(338,25353,'_et_pb_side_nav','off'),(339,25353,'_et_pb_use_builder','on'),(340,25353,'_et_pb_ab_bounce_rate_limit','5'),(341,25353,'_et_pb_ab_stats_refresh_interval','hourly'),(342,25353,'_et_pb_old_content',''),(343,25353,'_et_pb_enable_shortcode_tracking',''),(344,25353,'_et_pb_custom_css',''),(345,25353,'_et_pb_light_text_color','#FFFFFF'),(346,25353,'_et_pb_dark_text_color','#666666'),(347,25353,'_et_pb_content_area_background_color',''),(348,25353,'_et_pb_section_background_color','#FFFFFF'),(349,25354,'_edit_last','1'),(350,25354,'_wp_page_template','default'),(351,25354,'_et_pb_post_hide_nav','default'),(352,25354,'_et_pb_page_layout','et_right_sidebar'),(353,25354,'_et_pb_side_nav','off'),(354,25354,'_et_pb_use_builder','on'),(355,25354,'_et_pb_ab_bounce_rate_limit','5'),(356,25354,'_et_pb_ab_stats_refresh_interval','hourly'),(357,25354,'_et_pb_old_content',''),(358,25354,'_et_pb_enable_shortcode_tracking',''),(359,25354,'_et_pb_custom_css',''),(360,25354,'_et_pb_light_text_color','#FFFFFF'),(361,25354,'_et_pb_dark_text_color','#666666'),(362,25354,'_et_pb_content_area_background_color',''),(363,25354,'_et_pb_section_background_color','#FFFFFF'),(364,25355,'_edit_last','1'),(365,25355,'_wp_page_template','default'),(366,25355,'_et_pb_post_hide_nav','default'),(367,25355,'_et_pb_page_layout','et_right_sidebar'),(368,25355,'_et_pb_side_nav','off'),(369,25355,'_et_pb_use_builder','on'),(370,25355,'_et_pb_ab_bounce_rate_limit','5'),(371,25355,'_et_pb_ab_stats_refresh_interval','hourly'),(372,25355,'_et_pb_old_content',''),(373,25355,'_et_pb_enable_shortcode_tracking',''),(374,25355,'_et_pb_custom_css',''),(375,25355,'_et_pb_light_text_color','#FFFFFF'),(376,25355,'_et_pb_dark_text_color','#666666'),(377,25355,'_et_pb_content_area_background_color',''),(378,25355,'_et_pb_section_background_color','#FFFFFF'),(379,25356,'_edit_last','1'),(380,25356,'_wp_page_template','default'),(381,25356,'_et_pb_post_hide_nav','default'),(382,25356,'_et_pb_page_layout','et_right_sidebar'),(383,25356,'_et_pb_side_nav','off'),(384,25356,'_et_pb_use_builder','on'),(385,25356,'_et_pb_ab_bounce_rate_limit','5'),(386,25356,'_et_pb_ab_stats_refresh_interval','hourly'),(387,25356,'_et_pb_old_content',''),(388,25356,'_et_pb_enable_shortcode_tracking',''),(389,25356,'_et_pb_custom_css',''),(390,25356,'_et_pb_light_text_color','#FFFFFF'),(391,25356,'_et_pb_dark_text_color','#666666'),(392,25356,'_et_pb_content_area_background_color',''),(393,25356,'_et_pb_section_background_color','#FFFFFF'),(394,25357,'_edit_last','1'),(395,25357,'_wp_page_template','default'),(396,25357,'_et_pb_post_hide_nav','default'),(397,25357,'_et_pb_page_layout','et_right_sidebar'),(398,25357,'_et_pb_side_nav','off'),(399,25357,'_et_pb_use_builder',''),(400,25357,'_et_pb_ab_bounce_rate_limit','5'),(401,25357,'_et_pb_ab_stats_refresh_interval','hourly'),(402,25357,'_et_pb_old_content',''),(403,25357,'_et_pb_enable_shortcode_tracking',''),(404,25357,'_et_pb_custom_css',''),(405,25357,'_et_pb_light_text_color','#FFFFFF'),(406,25357,'_et_pb_dark_text_color','#666666'),(407,25357,'_et_pb_content_area_background_color',''),(408,25357,'_et_pb_section_background_color','#FFFFFF'),(409,25358,'_edit_last','1'),(410,25358,'_wp_page_template','default'),(411,25358,'_et_pb_post_hide_nav','default'),(412,25358,'_et_pb_page_layout','et_right_sidebar'),(413,25358,'_et_pb_side_nav','off'),(414,25358,'_et_pb_use_builder','on'),(415,25358,'_et_pb_ab_bounce_rate_limit','5'),(416,25358,'_et_pb_ab_stats_refresh_interval','hourly'),(417,25358,'_et_pb_old_content',''),(418,25358,'_et_pb_enable_shortcode_tracking',''),(419,25358,'_et_pb_custom_css',''),(420,25358,'_et_pb_light_text_color','#FFFFFF'),(421,25358,'_et_pb_dark_text_color','#666666'),(422,25358,'_et_pb_content_area_background_color',''),(423,25358,'_et_pb_section_background_color','#FFFFFF'),(424,25359,'_edit_last','1'),(425,25359,'_wp_page_template','default'),(426,25359,'_et_pb_post_hide_nav','default'),(427,25359,'_et_pb_page_layout','et_right_sidebar'),(428,25359,'_et_pb_side_nav','off'),(429,25359,'_et_pb_use_builder','on'),(430,25359,'_et_pb_ab_bounce_rate_limit','5'),(431,25359,'_et_pb_ab_stats_refresh_interval','hourly'),(432,25359,'_et_pb_old_content',''),(433,25359,'_et_pb_enable_shortcode_tracking',''),(434,25359,'_et_pb_custom_css',''),(435,25359,'_et_pb_light_text_color','#FFFFFF'),(436,25359,'_et_pb_dark_text_color','#666666'),(437,25359,'_et_pb_content_area_background_color',''),(438,25359,'_et_pb_section_background_color','#FFFFFF'),(439,25360,'_edit_last','1'),(440,25360,'_wp_page_template','default'),(441,25360,'_et_pb_post_hide_nav','default'),(442,25360,'_et_pb_page_layout','et_right_sidebar'),(443,25360,'_et_pb_side_nav','off'),(444,25360,'_et_pb_use_builder','on'),(445,25360,'_et_pb_ab_bounce_rate_limit','5'),(446,25360,'_et_pb_ab_stats_refresh_interval','hourly'),(447,25360,'_et_pb_old_content',''),(448,25360,'_et_pb_enable_shortcode_tracking',''),(449,25360,'_et_pb_custom_css',''),(450,25360,'_et_pb_light_text_color','#FFFFFF'),(451,25360,'_et_pb_dark_text_color','#666666'),(452,25360,'_et_pb_content_area_background_color',''),(453,25360,'_et_pb_section_background_color','#FFFFFF'),(454,25360,'_et_pb_color_palette','#000000|#FFFFFF|#E02B20|#E09900|#EDF000|#7CDA24|#0C71C3|#8300E9'),(455,25361,'_edit_last','1'),(456,25361,'_wp_page_template','default'),(457,25361,'_et_pb_post_hide_nav','default'),(458,25361,'_et_pb_page_layout','et_right_sidebar'),(459,25361,'_et_pb_side_nav','off'),(460,25361,'_et_pb_use_builder','on'),(461,25361,'_et_pb_ab_bounce_rate_limit','5'),(462,25361,'_et_pb_ab_stats_refresh_interval','hourly'),(463,25361,'_et_pb_old_content',''),(464,25361,'_et_pb_enable_shortcode_tracking',''),(465,25361,'_et_pb_custom_css',''),(466,25361,'_et_pb_light_text_color','#FFFFFF'),(467,25361,'_et_pb_dark_text_color','#666666'),(468,25361,'_et_pb_content_area_background_color',''),(469,25361,'_et_pb_section_background_color','#FFFFFF'),(470,25362,'_edit_last','1'),(471,25362,'_wp_page_template','default'),(472,25362,'_et_pb_post_hide_nav','default'),(473,25362,'_et_pb_page_layout','et_right_sidebar'),(474,25362,'_et_pb_side_nav','off'),(475,25362,'_et_pb_use_builder','on'),(476,25362,'_et_pb_ab_bounce_rate_limit','5'),(477,25362,'_et_pb_ab_stats_refresh_interval','hourly'),(478,25362,'_et_pb_old_content',''),(479,25362,'_et_pb_enable_shortcode_tracking',''),(480,25362,'_et_pb_custom_css',''),(481,25362,'_et_pb_light_text_color','#FFFFFF'),(482,25362,'_et_pb_dark_text_color','#666666'),(483,25362,'_et_pb_content_area_background_color',''),(484,25362,'_et_pb_section_background_color','#FFFFFF'),(485,120,'_et_pb_page_layout','et_right_sidebar'),(486,120,'_et_pb_post_hide_nav','default'),(487,120,'_edit_last','1'),(488,120,'_wp_page_template','default'),(489,120,'_et_pb_side_nav','off'),(490,120,'_et_pb_use_builder',''),(491,120,'_et_pb_ab_bounce_rate_limit','5'),(492,120,'_et_pb_ab_stats_refresh_interval','hourly'),(493,120,'_et_pb_old_content',''),(494,120,'_et_pb_enable_shortcode_tracking',''),(495,120,'_et_pb_custom_css',''),(496,120,'_et_pb_light_text_color','#FFFFFF'),(497,120,'_et_pb_dark_text_color','#666666'),(498,120,'_et_pb_content_area_background_color',''),(499,120,'_et_pb_section_background_color','#FFFFFF'),(556,25370,'_menu_item_type','post_type'),(557,25370,'_menu_item_menu_item_parent','0'),(558,25370,'_menu_item_object_id','25360'),(559,25370,'_menu_item_object','page'),(560,25370,'_menu_item_target',''),(561,25370,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(562,25370,'_menu_item_xfn',''),(563,25370,'_menu_item_url',''),(646,124,'_wp_attached_file','2016/07/Fotolia_53458263_Subscription_Monthly_M.jpg'),(647,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1688;s:6:\"height\";i:1125;s:4:\"file\";s:51:\"2016/07/Fotolia_53458263_Subscription_Monthly_M.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Fotolia_53458263_Subscription_Monthly_M-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:\"Fotolia_53458263_Subscription_Monthly_M-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Fotolia_53458263_Subscription_Monthly_M-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Fotolia_53458263_Subscription_Monthly_M-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Fotolia_53458263_Subscription_Monthly_M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:52:\"Fotolia_53458263_Subscription_Monthly_M-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Fotolia_53458263_Subscription_Monthly_M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:52:\"Fotolia_53458263_Subscription_Monthly_M-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:21:\"michaeljung - Fotolia\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:75:\"portrait of shipping company employee standing in front of industrial tires\";s:17:\"created_timestamp\";s:10:\"1369734097\";s:9:\"copyright\";s:21:\"michaeljung - Fotolia\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:25:\"shipping company employee\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:97:{i:0;s:9:\"warehouse\";i:1;s:8:\"shipping\";i:2;s:9:\"transport\";i:3;s:3:\"man\";i:4;s:6:\"worker\";i:5;s:4:\"male\";i:6;s:10:\"industrial\";i:7;s:8:\"industry\";i:8;s:14:\"transportation\";i:9;s:7:\"company\";i:10;s:10:\"storehouse\";i:11;s:4:\"tire\";i:12;s:11:\"in front of\";i:13;s:8:\"business\";i:14;s:6:\"harbor\";i:15;s:7:\"working\";i:16;s:10:\"inspecting\";i:17;s:10:\"inspection\";i:18;s:9:\"clipboard\";i:19;s:9:\"recording\";i:20;s:7:\"writing\";i:21;s:7:\"storage\";i:22;s:7:\"uniform\";i:23;s:6:\"import\";i:24;s:6:\"export\";i:25;s:8:\"outdoors\";i:26;s:6:\"person\";i:27;s:3:\"job\";i:28;s:10:\"occupation\";i:29;s:10:\"employment\";i:30;s:8:\"standing\";i:31;s:8:\"employee\";i:32;s:8:\"portrait\";i:33;s:4:\"work\";i:34;s:5:\"adult\";i:35;s:5:\"young\";i:36;s:8:\"handsome\";i:37;s:9:\"Caucasian\";i:38;s:7:\"skilled\";i:39;s:7:\"smiling\";i:40;s:8:\"dispatch\";i:41;s:12:\"distribution\";i:42;s:10:\"dispatcher\";i:43;s:6:\"helmet\";i:44;s:6:\"yellow\";i:45;s:7:\"hardhat\";i:46;s:15:\"reflective vest\";i:47;s:7:\"looking\";i:48;s:5:\"young\";i:49;s:9:\"warehouse\";i:50;s:8:\"shipping\";i:51;s:9:\"transport\";i:52;s:3:\"man\";i:53;s:6:\"worker\";i:54;s:4:\"male\";i:55;s:10:\"industrial\";i:56;s:8:\"industry\";i:57;s:14:\"transportation\";i:58;s:7:\"company\";i:59;s:10:\"storehouse\";i:60;s:4:\"tire\";i:61;s:11:\"in front of\";i:62;s:8:\"business\";i:63;s:6:\"harbor\";i:64;s:7:\"working\";i:65;s:10:\"inspecting\";i:66;s:10:\"inspection\";i:67;s:9:\"clipboard\";i:68;s:9:\"recording\";i:69;s:7:\"writing\";i:70;s:7:\"storage\";i:71;s:7:\"uniform\";i:72;s:6:\"import\";i:73;s:6:\"export\";i:74;s:8:\"outdoors\";i:75;s:6:\"person\";i:76;s:3:\"job\";i:77;s:10:\"occupation\";i:78;s:10:\"employment\";i:79;s:8:\"standing\";i:80;s:8:\"employee\";i:81;s:8:\"portrait\";i:82;s:4:\"work\";i:83;s:5:\"adult\";i:84;s:5:\"young\";i:85;s:8:\"handsome\";i:86;s:9:\"caucasian\";i:87;s:7:\"skilled\";i:88;s:7:\"smiling\";i:89;s:8:\"dispatch\";i:90;s:12:\"distribution\";i:91;s:10:\"dispatcher\";i:92;s:6:\"helmet\";i:93;s:6:\"yellow\";i:94;s:7:\"hardhat\";i:95;s:15:\"reflective vest\";i:96;s:7:\"looking\";}}}'),(648,128,'_wp_attached_file','2016/07/Wyoming-Background.png'),(649,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:700;s:4:\"file\";s:30:\"2016/07/Wyoming-Background.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Wyoming-Background-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:\"Wyoming-Background-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Wyoming-Background-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Wyoming-Background-1024x512.png\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Wyoming-Background-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Wyoming-Background-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Wyoming-Background-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Wyoming-Background-1080x540.png\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(650,137,'_wp_attached_file','2016/07/3-1.jpg'),(651,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1391;s:4:\"file\";s:15:\"2016/07/3-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-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:15:\"3-1-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"3-1-768x556.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"3-1-1024x742.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:742;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"3-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"3-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"3-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"3-1-1080x782.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:782;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(652,138,'_wp_attached_file','2016/07/022.png'),(653,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:9;s:6:\"height\";i:18;s:4:\"file\";s:15:\"2016/07/022.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(654,139,'_wp_attached_file','2016/07/032.png'),(655,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:23;s:6:\"height\";i:18;s:4:\"file\";s:15:\"2016/07/032.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(656,140,'_wp_attached_file','2016/07/051.png'),(657,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:19;s:6:\"height\";i:18;s:4:\"file\";s:15:\"2016/07/051.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(658,141,'_wp_attached_file','2016/07/041.png'),(659,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:19;s:6:\"height\";i:18;s:4:\"file\";s:15:\"2016/07/041.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(660,25343,'_et_pb_built_for_post_type','page'),(661,25382,'_wp_attached_file','2016/07/ductcleaning-pack.jpg'),(662,25382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:29:\"2016/07/ductcleaning-pack.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"ductcleaning-pack-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:\"ductcleaning-pack-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"ductcleaning-pack-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"ductcleaning-pack-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(663,25383,'_wp_attached_file','2016/07/Cover-pic-e1469039631238.jpg'),(664,25383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:118;s:4:\"file\";s:36:\"2016/07/Cover-pic-e1469039631238.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Cover-pic-e1469039631238-150x118.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Cover-pic-e1469039631238-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Cover-pic-e1469039631238-400x118.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Cover-pic-e1469039631238-400x118.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(665,25383,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:13:\"Cover-pic.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(666,25383,'_edit_last','1'),(667,25384,'_wp_attached_file','2016/07/VA-mold-license.jpg'),(668,25384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1700;s:6:\"height\";i:1158;s:4:\"file\";s:27:\"2016/07/VA-mold-license.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"VA-mold-license-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"VA-mold-license-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"VA-mold-license-768x523.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"VA-mold-license-1024x698.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:698;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"VA-mold-license-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"VA-mold-license-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"VA-mold-license-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"VA-mold-license-1080x736.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:736;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(669,25385,'_wp_attached_file','2016/07/Moldy_room.jpg'),(670,25385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:482;s:4:\"file\";s:22:\"2016/07/Moldy_room.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Moldy_room-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:\"Moldy_room-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Moldy_room-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Moldy_room-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(671,25386,'_wp_attached_file','2016/07/PPI.jpg'),(672,25386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:276;s:4:\"file\";s:15:\"2016/07/PPI.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"PPI-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:\"PPI-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"PPI-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(673,25387,'_wp_attached_file','2016/07/trashed-home.jpg'),(674,25387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:198;s:4:\"file\";s:24:\"2016/07/trashed-home.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"trashed-home-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:\"trashed-home-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(675,25388,'_wp_attached_file','2016/07/vac1a.gif'),(676,25388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:250;s:4:\"file\";s:17:\"2016/07/vac1a.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"vac1a-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"vac1a-230x250.gif\";s:5:\"width\";i:230;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(677,25389,'_wp_attached_file','2016/07/CC_Logo.gif'),(678,25389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:36;s:4:\"file\";s:19:\"2016/07/CC_Logo.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"CC_Logo-150x36.gif\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"CC_Logo-300x35.gif\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(679,25390,'_wp_attached_file','2016/07/birdguard.gif'),(680,25390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:177;s:6:\"height\";i:173;s:4:\"file\";s:21:\"2016/07/birdguard.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"birdguard-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(681,25391,'_wp_attached_file','2016/07/HEPA_Air_Machine.jpg'),(682,25391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:192;s:6:\"height\";i:377;s:4:\"file\";s:28:\"2016/07/HEPA_Air_Machine.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"HEPA_Air_Machine-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:\"HEPA_Air_Machine-153x300.jpg\";s:5:\"width\";i:153;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"HEPA_Air_Machine-192x250.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"HEPA_Air_Machine-192x284.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(683,25394,'_wp_attached_file','2016/07/Ductworksys.jpg'),(684,25394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:343;s:4:\"file\";s:23:\"2016/07/Ductworksys.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Ductworksys-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:\"Ductworksys-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Ductworksys-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Ductworksys-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(685,135,'_et_pb_built_for_post_type','page'),(694,38,'_edit_last','1'),(695,38,'_wp_page_template','default'),(696,38,'_et_pb_post_hide_nav','default'),(697,38,'_et_pb_page_layout','et_right_sidebar'),(698,38,'_et_pb_side_nav','off'),(699,38,'_et_pb_use_builder',''),(700,38,'_et_pb_ab_bounce_rate_limit','5'),(701,38,'_et_pb_ab_stats_refresh_interval','hourly'),(702,38,'_et_pb_old_content',''),(703,38,'_et_pb_enable_shortcode_tracking',''),(704,38,'_et_pb_custom_css',''),(705,38,'_et_pb_light_text_color','#FFFFFF'),(706,38,'_et_pb_dark_text_color','#666666'),(707,38,'_et_pb_content_area_background_color',''),(708,38,'_et_pb_section_background_color','#FFFFFF'),(709,40,'_edit_last','1'),(710,40,'_wp_page_template','default'),(711,40,'_et_pb_post_hide_nav','default'),(712,40,'_et_pb_page_layout','et_right_sidebar'),(713,40,'_et_pb_side_nav','off'),(714,40,'_et_pb_use_builder','on'),(715,40,'_et_pb_ab_bounce_rate_limit','5'),(716,40,'_et_pb_ab_stats_refresh_interval','hourly'),(717,40,'_et_pb_old_content',''),(718,40,'_et_pb_enable_shortcode_tracking',''),(719,40,'_et_pb_custom_css',''),(720,40,'_et_pb_light_text_color','#FFFFFF'),(721,40,'_et_pb_dark_text_color','#666666'),(722,40,'_et_pb_content_area_background_color',''),(723,40,'_et_pb_section_background_color','#FFFFFF'),(724,42,'_edit_last','1'),(725,42,'_wp_page_template','default'),(726,42,'_et_pb_post_hide_nav','default'),(727,42,'_et_pb_page_layout','et_right_sidebar'),(728,42,'_et_pb_side_nav','off'),(729,42,'_et_pb_use_builder',''),(730,42,'_et_pb_ab_bounce_rate_limit','5'),(731,42,'_et_pb_ab_stats_refresh_interval','hourly'),(732,42,'_et_pb_old_content',''),(733,42,'_et_pb_enable_shortcode_tracking',''),(734,42,'_et_pb_custom_css',''),(735,42,'_et_pb_light_text_color','#FFFFFF'),(736,42,'_et_pb_dark_text_color','#666666'),(737,42,'_et_pb_content_area_background_color',''),(738,42,'_et_pb_section_background_color','#FFFFFF'),(739,25396,'_menu_item_type','custom'),(740,25396,'_menu_item_menu_item_parent','25403'),(741,25396,'_menu_item_object_id','25396'),(742,25396,'_menu_item_object','custom'),(743,25396,'_menu_item_target',''),(744,25396,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(745,25396,'_menu_item_xfn',''),(746,25396,'_menu_item_url','#'),(747,25397,'_menu_item_type','custom'),(748,25397,'_menu_item_menu_item_parent','25403'),(749,25397,'_menu_item_object_id','25397'),(750,25397,'_menu_item_object','custom'),(751,25397,'_menu_item_target',''),(752,25397,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(753,25397,'_menu_item_xfn',''),(754,25397,'_menu_item_url','#'),(755,25398,'_menu_item_type','custom'),(756,25398,'_menu_item_menu_item_parent','25412'),(757,25398,'_menu_item_object_id','25398'),(758,25398,'_menu_item_object','custom'),(759,25398,'_menu_item_target',''),(760,25398,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(761,25398,'_menu_item_xfn',''),(762,25398,'_menu_item_url','#'),(763,25399,'_menu_item_type','custom'),(764,25399,'_menu_item_menu_item_parent','25412'),(765,25399,'_menu_item_object_id','25399'),(766,25399,'_menu_item_object','custom'),(767,25399,'_menu_item_target',''),(768,25399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(769,25399,'_menu_item_xfn',''),(770,25399,'_menu_item_url','#'),(771,25400,'_menu_item_type','custom'),(772,25400,'_menu_item_menu_item_parent','25412'),(773,25400,'_menu_item_object_id','25400'),(774,25400,'_menu_item_object','custom'),(775,25400,'_menu_item_target',''),(776,25400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(777,25400,'_menu_item_xfn',''),(778,25400,'_menu_item_url','#'),(779,25351,'_wp_page_template','default'),(780,25351,'_wp_trash_meta_status','publish'),(781,25351,'_wp_trash_meta_time','1468896738'),(782,25351,'_wp_desired_post_slug','sample-page'),(783,44,'_edit_last','1'),(784,44,'_wp_page_template','default'),(785,44,'_et_pb_post_hide_nav','default'),(786,44,'_et_pb_page_layout','et_right_sidebar'),(787,44,'_et_pb_side_nav','off'),(788,44,'_et_pb_use_builder','on'),(789,44,'_et_pb_ab_bounce_rate_limit','5'),(790,44,'_et_pb_ab_stats_refresh_interval','hourly'),(791,44,'_et_pb_old_content',''),(792,44,'_et_pb_enable_shortcode_tracking',''),(793,44,'_et_pb_custom_css',''),(794,44,'_et_pb_light_text_color','#FFFFFF'),(795,44,'_et_pb_dark_text_color','#666666'),(796,44,'_et_pb_content_area_background_color',''),(797,44,'_et_pb_section_background_color','#FFFFFF'),(798,46,'_edit_last','1'),(799,46,'_wp_page_template','default'),(800,46,'_et_pb_post_hide_nav','default'),(801,46,'_et_pb_page_layout','et_right_sidebar'),(802,46,'_et_pb_side_nav','off'),(803,46,'_et_pb_use_builder','on'),(804,46,'_et_pb_ab_bounce_rate_limit','5'),(805,46,'_et_pb_ab_stats_refresh_interval','hourly'),(806,46,'_et_pb_old_content',''),(807,46,'_et_pb_enable_shortcode_tracking',''),(808,46,'_et_pb_custom_css',''),(809,46,'_et_pb_light_text_color','#FFFFFF'),(810,46,'_et_pb_dark_text_color','#666666'),(811,46,'_et_pb_content_area_background_color',''),(812,46,'_et_pb_section_background_color','#FFFFFF'),(813,47,'_edit_last','1'),(814,47,'_wp_page_template','default'),(815,47,'_et_pb_post_hide_nav','default'),(816,47,'_et_pb_page_layout','et_right_sidebar'),(817,47,'_et_pb_side_nav','off'),(818,47,'_et_pb_use_builder','on'),(819,47,'_et_pb_ab_bounce_rate_limit','5'),(820,47,'_et_pb_ab_stats_refresh_interval','hourly'),(821,47,'_et_pb_old_content',''),(822,47,'_et_pb_enable_shortcode_tracking',''),(823,47,'_et_pb_custom_css',''),(824,47,'_et_pb_light_text_color','#FFFFFF'),(825,47,'_et_pb_dark_text_color','#666666'),(826,47,'_et_pb_content_area_background_color',''),(827,47,'_et_pb_section_background_color','#FFFFFF'),(828,49,'_edit_last','1'),(829,49,'_wp_page_template','default'),(830,49,'_et_pb_post_hide_nav','default'),(831,49,'_et_pb_page_layout','et_right_sidebar'),(832,49,'_et_pb_side_nav','off'),(833,49,'_et_pb_use_builder','on'),(834,49,'_et_pb_ab_bounce_rate_limit','5'),(835,49,'_et_pb_ab_stats_refresh_interval','hourly'),(836,49,'_et_pb_old_content',''),(837,49,'_et_pb_enable_shortcode_tracking',''),(838,49,'_et_pb_custom_css',''),(839,49,'_et_pb_light_text_color','#FFFFFF'),(840,49,'_et_pb_dark_text_color','#666666'),(841,49,'_et_pb_content_area_background_color',''),(842,49,'_et_pb_section_background_color','#FFFFFF'),(843,25352,'_edit_last','1'),(844,25352,'_wp_page_template','default'),(845,25352,'_et_pb_post_hide_nav','default'),(846,25352,'_et_pb_page_layout','et_right_sidebar'),(847,25352,'_et_pb_side_nav','off'),(848,25352,'_et_pb_use_builder','on'),(849,25352,'_et_pb_ab_bounce_rate_limit','5'),(850,25352,'_et_pb_ab_stats_refresh_interval','hourly'),(851,25352,'_et_pb_old_content',''),(852,25352,'_et_pb_enable_shortcode_tracking',''),(853,25352,'_et_pb_custom_css',''),(854,25352,'_et_pb_light_text_color','#FFFFFF'),(855,25352,'_et_pb_dark_text_color','#666666'),(856,25352,'_et_pb_content_area_background_color',''),(857,25352,'_et_pb_section_background_color','#FFFFFF'),(858,25353,'_edit_last','1'),(859,25353,'_wp_page_template','default'),(860,25353,'_et_pb_post_hide_nav','default'),(861,25353,'_et_pb_page_layout','et_right_sidebar'),(862,25353,'_et_pb_side_nav','off'),(863,25353,'_et_pb_use_builder','on'),(864,25353,'_et_pb_ab_bounce_rate_limit','5'),(865,25353,'_et_pb_ab_stats_refresh_interval','hourly'),(866,25353,'_et_pb_old_content',''),(867,25353,'_et_pb_enable_shortcode_tracking',''),(868,25353,'_et_pb_custom_css',''),(869,25353,'_et_pb_light_text_color','#FFFFFF'),(870,25353,'_et_pb_dark_text_color','#666666'),(871,25353,'_et_pb_content_area_background_color',''),(872,25353,'_et_pb_section_background_color','#FFFFFF'),(873,25354,'_edit_last','1'),(874,25354,'_wp_page_template','default'),(875,25354,'_et_pb_post_hide_nav','default'),(876,25354,'_et_pb_page_layout','et_right_sidebar'),(877,25354,'_et_pb_side_nav','off'),(878,25354,'_et_pb_use_builder','on'),(879,25354,'_et_pb_ab_bounce_rate_limit','5'),(880,25354,'_et_pb_ab_stats_refresh_interval','hourly'),(881,25354,'_et_pb_old_content',''),(882,25354,'_et_pb_enable_shortcode_tracking',''),(883,25354,'_et_pb_custom_css',''),(884,25354,'_et_pb_light_text_color','#FFFFFF'),(885,25354,'_et_pb_dark_text_color','#666666'),(886,25354,'_et_pb_content_area_background_color',''),(887,25354,'_et_pb_section_background_color','#FFFFFF'),(888,25355,'_edit_last','1'),(889,25355,'_wp_page_template','default'),(890,25355,'_et_pb_post_hide_nav','default'),(891,25355,'_et_pb_page_layout','et_right_sidebar'),(892,25355,'_et_pb_side_nav','off'),(893,25355,'_et_pb_use_builder','on'),(894,25355,'_et_pb_ab_bounce_rate_limit','5'),(895,25355,'_et_pb_ab_stats_refresh_interval','hourly'),(896,25355,'_et_pb_old_content',''),(897,25355,'_et_pb_enable_shortcode_tracking',''),(898,25355,'_et_pb_custom_css',''),(899,25355,'_et_pb_light_text_color','#FFFFFF'),(900,25355,'_et_pb_dark_text_color','#666666'),(901,25355,'_et_pb_content_area_background_color',''),(902,25355,'_et_pb_section_background_color','#FFFFFF'),(903,25356,'_edit_last','1'),(904,25356,'_wp_page_template','default'),(905,25356,'_et_pb_post_hide_nav','default'),(906,25356,'_et_pb_page_layout','et_right_sidebar'),(907,25356,'_et_pb_side_nav','off'),(908,25356,'_et_pb_use_builder','on'),(909,25356,'_et_pb_ab_bounce_rate_limit','5'),(910,25356,'_et_pb_ab_stats_refresh_interval','hourly'),(911,25356,'_et_pb_old_content',''),(912,25356,'_et_pb_enable_shortcode_tracking',''),(913,25356,'_et_pb_custom_css',''),(914,25356,'_et_pb_light_text_color','#FFFFFF'),(915,25356,'_et_pb_dark_text_color','#666666'),(916,25356,'_et_pb_content_area_background_color',''),(917,25356,'_et_pb_section_background_color','#FFFFFF'),(918,25357,'_edit_last','1'),(919,25357,'_wp_page_template','default'),(920,25357,'_et_pb_post_hide_nav','default'),(921,25357,'_et_pb_page_layout','et_right_sidebar'),(922,25357,'_et_pb_side_nav','off'),(923,25357,'_et_pb_use_builder',''),(924,25357,'_et_pb_ab_bounce_rate_limit','5'),(925,25357,'_et_pb_ab_stats_refresh_interval','hourly'),(926,25357,'_et_pb_old_content',''),(927,25357,'_et_pb_enable_shortcode_tracking',''),(928,25357,'_et_pb_custom_css',''),(929,25357,'_et_pb_light_text_color','#FFFFFF'),(930,25357,'_et_pb_dark_text_color','#666666'),(931,25357,'_et_pb_content_area_background_color',''),(932,25357,'_et_pb_section_background_color','#FFFFFF'),(933,25358,'_edit_last','1'),(934,25358,'_wp_page_template','default'),(935,25358,'_et_pb_post_hide_nav','default'),(936,25358,'_et_pb_page_layout','et_right_sidebar'),(937,25358,'_et_pb_side_nav','off'),(938,25358,'_et_pb_use_builder','on'),(939,25358,'_et_pb_ab_bounce_rate_limit','5'),(940,25358,'_et_pb_ab_stats_refresh_interval','hourly'),(941,25358,'_et_pb_old_content',''),(942,25358,'_et_pb_enable_shortcode_tracking',''),(943,25358,'_et_pb_custom_css',''),(944,25358,'_et_pb_light_text_color','#FFFFFF'),(945,25358,'_et_pb_dark_text_color','#666666'),(946,25358,'_et_pb_content_area_background_color',''),(947,25358,'_et_pb_section_background_color','#FFFFFF'),(948,25359,'_edit_last','1'),(949,25359,'_wp_page_template','default'),(950,25359,'_et_pb_post_hide_nav','default'),(951,25359,'_et_pb_page_layout','et_right_sidebar'),(952,25359,'_et_pb_side_nav','off'),(953,25359,'_et_pb_use_builder','on'),(954,25359,'_et_pb_ab_bounce_rate_limit','5'),(955,25359,'_et_pb_ab_stats_refresh_interval','hourly'),(956,25359,'_et_pb_old_content',''),(957,25359,'_et_pb_enable_shortcode_tracking',''),(958,25359,'_et_pb_custom_css',''),(959,25359,'_et_pb_light_text_color','#FFFFFF'),(960,25359,'_et_pb_dark_text_color','#666666'),(961,25359,'_et_pb_content_area_background_color',''),(962,25359,'_et_pb_section_background_color','#FFFFFF'),(963,25360,'_edit_last','1'),(964,25360,'_wp_page_template','default'),(965,25360,'_et_pb_post_hide_nav','default'),(966,25360,'_et_pb_page_layout','et_right_sidebar'),(967,25360,'_et_pb_side_nav','off'),(968,25360,'_et_pb_use_builder','on'),(969,25360,'_et_pb_ab_bounce_rate_limit','5'),(970,25360,'_et_pb_ab_stats_refresh_interval','hourly'),(971,25360,'_et_pb_old_content',''),(972,25360,'_et_pb_enable_shortcode_tracking',''),(973,25360,'_et_pb_custom_css',''),(974,25360,'_et_pb_light_text_color','#FFFFFF'),(975,25360,'_et_pb_dark_text_color','#666666'),(976,25360,'_et_pb_content_area_background_color',''),(977,25360,'_et_pb_section_background_color','#FFFFFF'),(978,25360,'_et_pb_color_palette','#000000|#FFFFFF|#E02B20|#E09900|#EDF000|#7CDA24|#0C71C3|#8300E9'),(979,25361,'_edit_last','1'),(980,25361,'_wp_page_template','default'),(981,25361,'_et_pb_post_hide_nav','default'),(982,25361,'_et_pb_page_layout','et_right_sidebar'),(983,25361,'_et_pb_side_nav','off'),(984,25361,'_et_pb_use_builder','on'),(985,25361,'_et_pb_ab_bounce_rate_limit','5'),(986,25361,'_et_pb_ab_stats_refresh_interval','hourly'),(987,25361,'_et_pb_old_content',''),(988,25361,'_et_pb_enable_shortcode_tracking',''),(989,25361,'_et_pb_custom_css',''),(990,25361,'_et_pb_light_text_color','#FFFFFF'),(991,25361,'_et_pb_dark_text_color','#666666'),(992,25361,'_et_pb_content_area_background_color',''),(993,25361,'_et_pb_section_background_color','#FFFFFF'),(994,25362,'_edit_last','1'),(995,25362,'_wp_page_template','default'),(996,25362,'_et_pb_post_hide_nav','default'),(997,25362,'_et_pb_page_layout','et_right_sidebar'),(998,25362,'_et_pb_side_nav','off'),(999,25362,'_et_pb_use_builder','on'),(1000,25362,'_et_pb_ab_bounce_rate_limit','5'),(1001,25362,'_et_pb_ab_stats_refresh_interval','hourly'),(1002,25362,'_et_pb_old_content',''),(1003,25362,'_et_pb_enable_shortcode_tracking',''),(1004,25362,'_et_pb_custom_css',''),(1005,25362,'_et_pb_light_text_color','#FFFFFF'),(1006,25362,'_et_pb_dark_text_color','#666666'),(1007,25362,'_et_pb_content_area_background_color',''),(1008,25362,'_et_pb_section_background_color','#FFFFFF'),(1009,120,'_et_pb_page_layout','et_right_sidebar'),(1010,120,'_et_pb_post_hide_nav','default'),(1011,120,'_edit_last','1'),(1012,120,'_wp_page_template','default'),(1013,120,'_et_pb_side_nav','off'),(1014,120,'_et_pb_use_builder',''),(1015,120,'_et_pb_ab_bounce_rate_limit','5'),(1016,120,'_et_pb_ab_stats_refresh_interval','hourly'),(1017,120,'_et_pb_old_content',''),(1018,120,'_et_pb_enable_shortcode_tracking',''),(1019,120,'_et_pb_custom_css',''),(1020,120,'_et_pb_light_text_color','#FFFFFF'),(1021,120,'_et_pb_dark_text_color','#666666'),(1022,120,'_et_pb_content_area_background_color',''),(1023,120,'_et_pb_section_background_color','#FFFFFF'),(1024,25401,'_menu_item_type','post_type'),(1025,25401,'_menu_item_menu_item_parent','0'),(1026,25401,'_menu_item_object_id','40'),(1027,25401,'_menu_item_object','page'),(1028,25401,'_menu_item_target',''),(1029,25401,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1030,25401,'_menu_item_xfn',''),(1031,25401,'_menu_item_url',''),(1032,25402,'_menu_item_type','post_type'),(1033,25402,'_menu_item_menu_item_parent','0'),(1034,25402,'_menu_item_object_id','25362'),(1035,25402,'_menu_item_object','page'),(1036,25402,'_menu_item_target',''),(1037,25402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1038,25402,'_menu_item_xfn',''),(1039,25402,'_menu_item_url',''),(1040,25403,'_menu_item_type','post_type'),(1041,25403,'_menu_item_menu_item_parent','0'),(1042,25403,'_menu_item_object_id','42'),(1043,25403,'_menu_item_object','page'),(1044,25403,'_menu_item_target',''),(1045,25403,'_menu_item_classes','a:1:{i:0;s:9:\"mega-menu\";}'),(1046,25403,'_menu_item_xfn',''),(1047,25403,'_menu_item_url',''),(1048,25404,'_menu_item_type','post_type'),(1049,25404,'_menu_item_menu_item_parent','25396'),(1050,25404,'_menu_item_object_id','46'),(1051,25404,'_menu_item_object','page'),(1052,25404,'_menu_item_target',''),(1053,25404,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1054,25404,'_menu_item_xfn',''),(1055,25404,'_menu_item_url',''),(1056,25405,'_menu_item_type','post_type'),(1057,25405,'_menu_item_menu_item_parent','25396'),(1058,25405,'_menu_item_object_id','47'),(1059,25405,'_menu_item_object','page'),(1060,25405,'_menu_item_target',''),(1061,25405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1062,25405,'_menu_item_xfn',''),(1063,25405,'_menu_item_url',''),(1064,25406,'_menu_item_type','post_type'),(1065,25406,'_menu_item_menu_item_parent','25396'),(1066,25406,'_menu_item_object_id','25353'),(1067,25406,'_menu_item_object','page'),(1068,25406,'_menu_item_target',''),(1069,25406,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1070,25406,'_menu_item_xfn',''),(1071,25406,'_menu_item_url',''),(1072,25407,'_menu_item_type','post_type'),(1073,25407,'_menu_item_menu_item_parent','25401'),(1074,25407,'_menu_item_object_id','25361'),(1075,25407,'_menu_item_object','page'),(1076,25407,'_menu_item_target',''),(1077,25407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1078,25407,'_menu_item_xfn',''),(1079,25407,'_menu_item_url',''),(1088,25409,'_menu_item_type','post_type'),(1089,25409,'_menu_item_menu_item_parent','25403'),(1090,25409,'_menu_item_object_id','44'),(1091,25409,'_menu_item_object','page'),(1092,25409,'_menu_item_target',''),(1093,25409,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1094,25409,'_menu_item_xfn',''),(1095,25409,'_menu_item_url',''),(1096,25410,'_menu_item_type','post_type'),(1097,25410,'_menu_item_menu_item_parent','25397'),(1098,25410,'_menu_item_object_id','25354'),(1099,25410,'_menu_item_object','page'),(1100,25410,'_menu_item_target',''),(1101,25410,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1102,25410,'_menu_item_xfn',''),(1103,25410,'_menu_item_url',''),(1104,25411,'_menu_item_type','post_type'),(1105,25411,'_menu_item_menu_item_parent','25397'),(1106,25411,'_menu_item_object_id','25355'),(1107,25411,'_menu_item_object','page'),(1108,25411,'_menu_item_target',''),(1109,25411,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1110,25411,'_menu_item_xfn',''),(1111,25411,'_menu_item_url',''),(1112,25412,'_menu_item_type','post_type'),(1113,25412,'_menu_item_menu_item_parent','25403'),(1114,25412,'_menu_item_object_id','49'),(1115,25412,'_menu_item_object','page'),(1116,25412,'_menu_item_target',''),(1117,25412,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1118,25412,'_menu_item_xfn',''),(1119,25412,'_menu_item_url',''),(1120,25413,'_menu_item_type','post_type'),(1121,25413,'_menu_item_menu_item_parent','25397'),(1122,25413,'_menu_item_object_id','25352'),(1123,25413,'_menu_item_object','page'),(1124,25413,'_menu_item_target',''),(1125,25413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1126,25413,'_menu_item_xfn',''),(1127,25413,'_menu_item_url',''),(1128,25414,'_menu_item_type','post_type'),(1129,25414,'_menu_item_menu_item_parent','0'),(1130,25414,'_menu_item_object_id','25357'),(1131,25414,'_menu_item_object','page'),(1132,25414,'_menu_item_target',''),(1133,25414,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1134,25414,'_menu_item_xfn',''),(1135,25414,'_menu_item_url',''),(1136,25415,'_menu_item_type','post_type'),(1137,25415,'_menu_item_menu_item_parent','25414'),(1138,25415,'_menu_item_object_id','25358'),(1139,25415,'_menu_item_object','page'),(1140,25415,'_menu_item_target',''),(1141,25415,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1142,25415,'_menu_item_xfn',''),(1143,25415,'_menu_item_url',''),(1144,25416,'_menu_item_type','post_type'),(1145,25416,'_menu_item_menu_item_parent','25409'),(1146,25416,'_menu_item_object_id','25356'),(1147,25416,'_menu_item_object','page'),(1148,25416,'_menu_item_target',''),(1149,25416,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1150,25416,'_menu_item_xfn',''),(1151,25416,'_menu_item_url',''),(1152,25417,'_menu_item_type','post_type'),(1153,25417,'_menu_item_menu_item_parent','25414'),(1154,25417,'_menu_item_object_id','25359'),(1155,25417,'_menu_item_object','page'),(1156,25417,'_menu_item_target',''),(1157,25417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1158,25417,'_menu_item_xfn',''),(1159,25417,'_menu_item_url',''),(1160,25418,'_menu_item_type','post_type'),(1161,25418,'_menu_item_menu_item_parent','25401'),(1162,25418,'_menu_item_object_id','120'),(1163,25418,'_menu_item_object','page'),(1164,25418,'_menu_item_target',''),(1165,25418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1166,25418,'_menu_item_xfn',''),(1167,25418,'_menu_item_url',''),(1170,25343,'_et_pb_built_for_post_type','page'),(1171,25383,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:13:\"Cover-pic.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:21:\"Cover-pic-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1172,25383,'_edit_last','1'),(1173,135,'_et_pb_built_for_post_type','page'),(1174,25420,'_menu_item_type','custom'),(1175,25420,'_menu_item_menu_item_parent','0'),(1176,25420,'_menu_item_object_id','25420'),(1177,25420,'_menu_item_object','custom'),(1178,25420,'_menu_item_target',''),(1179,25420,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1180,25420,'_menu_item_xfn',''),(1181,25420,'_menu_item_url','http://www.air-techinternational.com/'),(1182,38,'_edit_last','1'),(1183,38,'_wp_page_template','default'),(1184,38,'_et_pb_post_hide_nav','default'),(1185,38,'_et_pb_page_layout','et_full_width_page'),(1186,38,'_et_pb_side_nav','off'),(1187,38,'_et_pb_use_builder','on'),(1188,38,'_et_pb_ab_bounce_rate_limit','5'),(1189,38,'_et_pb_ab_stats_refresh_interval','hourly'),(1190,38,'_et_pb_old_content',''),(1191,38,'_et_pb_enable_shortcode_tracking',''),(1192,38,'_et_pb_custom_css',''),(1193,38,'_et_pb_light_text_color','#FFFFFF'),(1194,38,'_et_pb_dark_text_color','#666666'),(1195,38,'_et_pb_content_area_background_color',''),(1196,38,'_et_pb_section_background_color','#FFFFFF'),(1197,40,'_edit_last','1'),(1198,40,'_wp_page_template','default'),(1199,40,'_et_pb_post_hide_nav','default'),(1200,40,'_et_pb_page_layout','et_right_sidebar'),(1201,40,'_et_pb_side_nav','off'),(1202,40,'_et_pb_use_builder','on'),(1203,40,'_et_pb_ab_bounce_rate_limit','5'),(1204,40,'_et_pb_ab_stats_refresh_interval','hourly'),(1205,40,'_et_pb_old_content',''),(1206,40,'_et_pb_enable_shortcode_tracking',''),(1207,40,'_et_pb_custom_css',''),(1208,40,'_et_pb_light_text_color','#FFFFFF'),(1209,40,'_et_pb_dark_text_color','#666666'),(1210,40,'_et_pb_content_area_background_color',''),(1211,40,'_et_pb_section_background_color','#FFFFFF'),(1212,42,'_edit_last','1'),(1213,42,'_wp_page_template','default'),(1214,42,'_et_pb_post_hide_nav','default'),(1215,42,'_et_pb_page_layout','et_right_sidebar'),(1216,42,'_et_pb_side_nav','off'),(1217,42,'_et_pb_use_builder',''),(1218,42,'_et_pb_ab_bounce_rate_limit','5'),(1219,42,'_et_pb_ab_stats_refresh_interval','hourly'),(1220,42,'_et_pb_old_content',''),(1221,42,'_et_pb_enable_shortcode_tracking',''),(1222,42,'_et_pb_custom_css',''),(1223,42,'_et_pb_light_text_color','#FFFFFF'),(1224,42,'_et_pb_dark_text_color','#666666'),(1225,42,'_et_pb_content_area_background_color',''),(1226,42,'_et_pb_section_background_color','#FFFFFF'),(1227,25421,'_menu_item_type','custom'),(1228,25421,'_menu_item_menu_item_parent','25428'),(1229,25421,'_menu_item_object_id','25421'),(1230,25421,'_menu_item_object','custom'),(1231,25421,'_menu_item_target',''),(1232,25421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1233,25421,'_menu_item_xfn',''),(1234,25421,'_menu_item_url','#'),(1235,25422,'_menu_item_type','custom'),(1236,25422,'_menu_item_menu_item_parent','25428'),(1237,25422,'_menu_item_object_id','25422'),(1238,25422,'_menu_item_object','custom'),(1239,25422,'_menu_item_target',''),(1240,25422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1241,25422,'_menu_item_xfn',''),(1242,25422,'_menu_item_url','#'),(1243,25423,'_menu_item_type','custom'),(1244,25423,'_menu_item_menu_item_parent','25437'),(1245,25423,'_menu_item_object_id','25423'),(1246,25423,'_menu_item_object','custom'),(1247,25423,'_menu_item_target',''),(1248,25423,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1249,25423,'_menu_item_xfn',''),(1250,25423,'_menu_item_url','#'),(1251,25424,'_menu_item_type','custom'),(1252,25424,'_menu_item_menu_item_parent','25437'),(1253,25424,'_menu_item_object_id','25424'),(1254,25424,'_menu_item_object','custom'),(1255,25424,'_menu_item_target',''),(1256,25424,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1257,25424,'_menu_item_xfn',''),(1258,25424,'_menu_item_url','#'),(1259,25425,'_menu_item_type','custom'),(1260,25425,'_menu_item_menu_item_parent','25437'),(1261,25425,'_menu_item_object_id','25425'),(1262,25425,'_menu_item_object','custom'),(1263,25425,'_menu_item_target',''),(1264,25425,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1265,25425,'_menu_item_xfn',''),(1266,25425,'_menu_item_url','#'),(1267,25351,'_wp_page_template','default'),(1268,25351,'_wp_trash_meta_status','publish'),(1269,25351,'_wp_trash_meta_time','1468896738'),(1270,25351,'_wp_desired_post_slug','sample-page'),(1271,44,'_edit_last','1'),(1272,44,'_wp_page_template','default'),(1273,44,'_et_pb_post_hide_nav','default'),(1274,44,'_et_pb_page_layout','et_right_sidebar'),(1275,44,'_et_pb_side_nav','off'),(1276,44,'_et_pb_use_builder','on'),(1277,44,'_et_pb_ab_bounce_rate_limit','5'),(1278,44,'_et_pb_ab_stats_refresh_interval','hourly'),(1279,44,'_et_pb_old_content',''),(1280,44,'_et_pb_enable_shortcode_tracking',''),(1281,44,'_et_pb_custom_css',''),(1282,44,'_et_pb_light_text_color','#FFFFFF'),(1283,44,'_et_pb_dark_text_color','#666666'),(1284,44,'_et_pb_content_area_background_color',''),(1285,44,'_et_pb_section_background_color','#FFFFFF'),(1286,46,'_edit_last','1'),(1287,46,'_wp_page_template','default'),(1288,46,'_et_pb_post_hide_nav','default'),(1289,46,'_et_pb_page_layout','et_right_sidebar'),(1290,46,'_et_pb_side_nav','off'),(1291,46,'_et_pb_use_builder','on'),(1292,46,'_et_pb_ab_bounce_rate_limit','5'),(1293,46,'_et_pb_ab_stats_refresh_interval','hourly'),(1294,46,'_et_pb_old_content',''),(1295,46,'_et_pb_enable_shortcode_tracking',''),(1296,46,'_et_pb_custom_css',''),(1297,46,'_et_pb_light_text_color','#FFFFFF'),(1298,46,'_et_pb_dark_text_color','#666666'),(1299,46,'_et_pb_content_area_background_color',''),(1300,46,'_et_pb_section_background_color','#FFFFFF'),(1301,47,'_edit_last','1'),(1302,47,'_wp_page_template','default'),(1303,47,'_et_pb_post_hide_nav','default'),(1304,47,'_et_pb_page_layout','et_right_sidebar'),(1305,47,'_et_pb_side_nav','off'),(1306,47,'_et_pb_use_builder','on'),(1307,47,'_et_pb_ab_bounce_rate_limit','5'),(1308,47,'_et_pb_ab_stats_refresh_interval','hourly'),(1309,47,'_et_pb_old_content',''),(1310,47,'_et_pb_enable_shortcode_tracking',''),(1311,47,'_et_pb_custom_css',''),(1312,47,'_et_pb_light_text_color','#FFFFFF'),(1313,47,'_et_pb_dark_text_color','#666666'),(1314,47,'_et_pb_content_area_background_color',''),(1315,47,'_et_pb_section_background_color','#FFFFFF'),(1316,49,'_edit_last','1'),(1317,49,'_wp_page_template','default'),(1318,49,'_et_pb_post_hide_nav','default'),(1319,49,'_et_pb_page_layout','et_right_sidebar'),(1320,49,'_et_pb_side_nav','off'),(1321,49,'_et_pb_use_builder','on'),(1322,49,'_et_pb_ab_bounce_rate_limit','5'),(1323,49,'_et_pb_ab_stats_refresh_interval','hourly'),(1324,49,'_et_pb_old_content',''),(1325,49,'_et_pb_enable_shortcode_tracking',''),(1326,49,'_et_pb_custom_css',''),(1327,49,'_et_pb_light_text_color','#FFFFFF'),(1328,49,'_et_pb_dark_text_color','#666666'),(1329,49,'_et_pb_content_area_background_color',''),(1330,49,'_et_pb_section_background_color','#FFFFFF'),(1331,25352,'_edit_last','1'),(1332,25352,'_wp_page_template','default'),(1333,25352,'_et_pb_post_hide_nav','default'),(1334,25352,'_et_pb_page_layout','et_right_sidebar'),(1335,25352,'_et_pb_side_nav','off'),(1336,25352,'_et_pb_use_builder','on'),(1337,25352,'_et_pb_ab_bounce_rate_limit','5'),(1338,25352,'_et_pb_ab_stats_refresh_interval','hourly'),(1339,25352,'_et_pb_old_content',''),(1340,25352,'_et_pb_enable_shortcode_tracking',''),(1341,25352,'_et_pb_custom_css',''),(1342,25352,'_et_pb_light_text_color','#FFFFFF'),(1343,25352,'_et_pb_dark_text_color','#666666'),(1344,25352,'_et_pb_content_area_background_color',''),(1345,25352,'_et_pb_section_background_color','#FFFFFF'),(1346,25353,'_edit_last','1'),(1347,25353,'_wp_page_template','default'),(1348,25353,'_et_pb_post_hide_nav','default'),(1349,25353,'_et_pb_page_layout','et_right_sidebar'),(1350,25353,'_et_pb_side_nav','off'),(1351,25353,'_et_pb_use_builder','on'),(1352,25353,'_et_pb_ab_bounce_rate_limit','5'),(1353,25353,'_et_pb_ab_stats_refresh_interval','hourly'),(1354,25353,'_et_pb_old_content',''),(1355,25353,'_et_pb_enable_shortcode_tracking',''),(1356,25353,'_et_pb_custom_css',''),(1357,25353,'_et_pb_light_text_color','#FFFFFF'),(1358,25353,'_et_pb_dark_text_color','#666666'),(1359,25353,'_et_pb_content_area_background_color',''),(1360,25353,'_et_pb_section_background_color','#FFFFFF'),(1361,25354,'_edit_last','1'),(1362,25354,'_wp_page_template','default'),(1363,25354,'_et_pb_post_hide_nav','default'),(1364,25354,'_et_pb_page_layout','et_right_sidebar'),(1365,25354,'_et_pb_side_nav','off'),(1366,25354,'_et_pb_use_builder','on'),(1367,25354,'_et_pb_ab_bounce_rate_limit','5'),(1368,25354,'_et_pb_ab_stats_refresh_interval','hourly'),(1369,25354,'_et_pb_old_content',''),(1370,25354,'_et_pb_enable_shortcode_tracking',''),(1371,25354,'_et_pb_custom_css',''),(1372,25354,'_et_pb_light_text_color','#FFFFFF'),(1373,25354,'_et_pb_dark_text_color','#666666'),(1374,25354,'_et_pb_content_area_background_color',''),(1375,25354,'_et_pb_section_background_color','#FFFFFF'),(1376,25355,'_edit_last','1'),(1377,25355,'_wp_page_template','default'),(1378,25355,'_et_pb_post_hide_nav','default'),(1379,25355,'_et_pb_page_layout','et_right_sidebar'),(1380,25355,'_et_pb_side_nav','off'),(1381,25355,'_et_pb_use_builder','on'),(1382,25355,'_et_pb_ab_bounce_rate_limit','5'),(1383,25355,'_et_pb_ab_stats_refresh_interval','hourly'),(1384,25355,'_et_pb_old_content',''),(1385,25355,'_et_pb_enable_shortcode_tracking',''),(1386,25355,'_et_pb_custom_css',''),(1387,25355,'_et_pb_light_text_color','#FFFFFF'),(1388,25355,'_et_pb_dark_text_color','#666666'),(1389,25355,'_et_pb_content_area_background_color',''),(1390,25355,'_et_pb_section_background_color','#FFFFFF'),(1391,25356,'_edit_last','1'),(1392,25356,'_wp_page_template','default'),(1393,25356,'_et_pb_post_hide_nav','default'),(1394,25356,'_et_pb_page_layout','et_right_sidebar'),(1395,25356,'_et_pb_side_nav','off'),(1396,25356,'_et_pb_use_builder','on'),(1397,25356,'_et_pb_ab_bounce_rate_limit','5'),(1398,25356,'_et_pb_ab_stats_refresh_interval','hourly'),(1399,25356,'_et_pb_old_content',''),(1400,25356,'_et_pb_enable_shortcode_tracking',''),(1401,25356,'_et_pb_custom_css',''),(1402,25356,'_et_pb_light_text_color','#FFFFFF'),(1403,25356,'_et_pb_dark_text_color','#666666'),(1404,25356,'_et_pb_content_area_background_color',''),(1405,25356,'_et_pb_section_background_color','#FFFFFF'),(1406,25357,'_edit_last','1'),(1407,25357,'_wp_page_template','default'),(1408,25357,'_et_pb_post_hide_nav','default'),(1409,25357,'_et_pb_page_layout','et_right_sidebar'),(1410,25357,'_et_pb_side_nav','off'),(1411,25357,'_et_pb_use_builder',''),(1412,25357,'_et_pb_ab_bounce_rate_limit','5'),(1413,25357,'_et_pb_ab_stats_refresh_interval','hourly'),(1414,25357,'_et_pb_old_content',''),(1415,25357,'_et_pb_enable_shortcode_tracking',''),(1416,25357,'_et_pb_custom_css',''),(1417,25357,'_et_pb_light_text_color','#FFFFFF'),(1418,25357,'_et_pb_dark_text_color','#666666'),(1419,25357,'_et_pb_content_area_background_color',''),(1420,25357,'_et_pb_section_background_color','#FFFFFF'),(1421,25358,'_edit_last','1'),(1422,25358,'_wp_page_template','default'),(1423,25358,'_et_pb_post_hide_nav','default'),(1424,25358,'_et_pb_page_layout','et_right_sidebar'),(1425,25358,'_et_pb_side_nav','off'),(1426,25358,'_et_pb_use_builder','on'),(1427,25358,'_et_pb_ab_bounce_rate_limit','5'),(1428,25358,'_et_pb_ab_stats_refresh_interval','hourly'),(1429,25358,'_et_pb_old_content',''),(1430,25358,'_et_pb_enable_shortcode_tracking',''),(1431,25358,'_et_pb_custom_css',''),(1432,25358,'_et_pb_light_text_color','#FFFFFF'),(1433,25358,'_et_pb_dark_text_color','#666666'),(1434,25358,'_et_pb_content_area_background_color',''),(1435,25358,'_et_pb_section_background_color','#FFFFFF'),(1436,25359,'_edit_last','1'),(1437,25359,'_wp_page_template','default'),(1438,25359,'_et_pb_post_hide_nav','default'),(1439,25359,'_et_pb_page_layout','et_right_sidebar'),(1440,25359,'_et_pb_side_nav','off'),(1441,25359,'_et_pb_use_builder','on'),(1442,25359,'_et_pb_ab_bounce_rate_limit','5'),(1443,25359,'_et_pb_ab_stats_refresh_interval','hourly'),(1444,25359,'_et_pb_old_content',''),(1445,25359,'_et_pb_enable_shortcode_tracking',''),(1446,25359,'_et_pb_custom_css',''),(1447,25359,'_et_pb_light_text_color','#FFFFFF'),(1448,25359,'_et_pb_dark_text_color','#666666'),(1449,25359,'_et_pb_content_area_background_color',''),(1450,25359,'_et_pb_section_background_color','#FFFFFF'),(1451,25360,'_edit_last','1'),(1452,25360,'_wp_page_template','default'),(1453,25360,'_et_pb_post_hide_nav','default'),(1454,25360,'_et_pb_page_layout','et_right_sidebar'),(1455,25360,'_et_pb_side_nav','off'),(1456,25360,'_et_pb_use_builder','on'),(1457,25360,'_et_pb_ab_bounce_rate_limit','5'),(1458,25360,'_et_pb_ab_stats_refresh_interval','hourly'),(1459,25360,'_et_pb_old_content',''),(1460,25360,'_et_pb_enable_shortcode_tracking',''),(1461,25360,'_et_pb_custom_css',''),(1462,25360,'_et_pb_light_text_color','#FFFFFF'),(1463,25360,'_et_pb_dark_text_color','#666666'),(1464,25360,'_et_pb_content_area_background_color',''),(1465,25360,'_et_pb_section_background_color','#FFFFFF'),(1466,25360,'_et_pb_color_palette','#000000|#FFFFFF|#E02B20|#E09900|#EDF000|#7CDA24|#0C71C3|#8300E9'),(1467,25361,'_edit_last','1'),(1468,25361,'_wp_page_template','default'),(1469,25361,'_et_pb_post_hide_nav','default'),(1470,25361,'_et_pb_page_layout','et_right_sidebar'),(1471,25361,'_et_pb_side_nav','off'),(1472,25361,'_et_pb_use_builder','on'),(1473,25361,'_et_pb_ab_bounce_rate_limit','5'),(1474,25361,'_et_pb_ab_stats_refresh_interval','hourly'),(1475,25361,'_et_pb_old_content',''),(1476,25361,'_et_pb_enable_shortcode_tracking',''),(1477,25361,'_et_pb_custom_css',''),(1478,25361,'_et_pb_light_text_color','#FFFFFF'),(1479,25361,'_et_pb_dark_text_color','#666666'),(1480,25361,'_et_pb_content_area_background_color',''),(1481,25361,'_et_pb_section_background_color','#FFFFFF'),(1482,25362,'_edit_last','1'),(1483,25362,'_wp_page_template','default'),(1484,25362,'_et_pb_post_hide_nav','default'),(1485,25362,'_et_pb_page_layout','et_right_sidebar'),(1486,25362,'_et_pb_side_nav','off'),(1487,25362,'_et_pb_use_builder','on'),(1488,25362,'_et_pb_ab_bounce_rate_limit','5'),(1489,25362,'_et_pb_ab_stats_refresh_interval','hourly'),(1490,25362,'_et_pb_old_content',''),(1491,25362,'_et_pb_enable_shortcode_tracking',''),(1492,25362,'_et_pb_custom_css',''),(1493,25362,'_et_pb_light_text_color','#FFFFFF'),(1494,25362,'_et_pb_dark_text_color','#666666'),(1495,25362,'_et_pb_content_area_background_color',''),(1496,25362,'_et_pb_section_background_color','#FFFFFF'),(1497,120,'_edit_last','1'),(1498,120,'_wp_page_template','default'),(1499,120,'_et_pb_post_hide_nav','default'),(1500,120,'_et_pb_page_layout','et_right_sidebar'),(1501,120,'_et_pb_side_nav','off'),(1502,120,'_et_pb_use_builder',''),(1503,120,'_et_pb_ab_bounce_rate_limit','5'),(1504,120,'_et_pb_ab_stats_refresh_interval','hourly'),(1505,120,'_et_pb_old_content',''),(1506,120,'_et_pb_enable_shortcode_tracking',''),(1507,120,'_et_pb_custom_css',''),(1508,120,'_et_pb_light_text_color','#FFFFFF'),(1509,120,'_et_pb_dark_text_color','#666666'),(1510,120,'_et_pb_content_area_background_color',''),(1511,120,'_et_pb_section_background_color','#FFFFFF'),(1512,25426,'_menu_item_type','post_type'),(1513,25426,'_menu_item_menu_item_parent','0'),(1514,25426,'_menu_item_object_id','40'),(1515,25426,'_menu_item_object','page'),(1516,25426,'_menu_item_target',''),(1517,25426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1518,25426,'_menu_item_xfn',''),(1519,25426,'_menu_item_url',''),(1520,25427,'_menu_item_type','post_type'),(1521,25427,'_menu_item_menu_item_parent','0'),(1522,25427,'_menu_item_object_id','25362'),(1523,25427,'_menu_item_object','page'),(1524,25427,'_menu_item_target',''),(1525,25427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1526,25427,'_menu_item_xfn',''),(1527,25427,'_menu_item_url',''),(1528,25428,'_menu_item_type','post_type'),(1529,25428,'_menu_item_menu_item_parent','0'),(1530,25428,'_menu_item_object_id','42'),(1531,25428,'_menu_item_object','page'),(1532,25428,'_menu_item_target',''),(1533,25428,'_menu_item_classes','a:1:{i:0;s:9:\"mega-menu\";}'),(1534,25428,'_menu_item_xfn',''),(1535,25428,'_menu_item_url',''),(1536,25429,'_menu_item_type','post_type'),(1537,25429,'_menu_item_menu_item_parent','25421'),(1538,25429,'_menu_item_object_id','46'),(1539,25429,'_menu_item_object','page'),(1540,25429,'_menu_item_target',''),(1541,25429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1542,25429,'_menu_item_xfn',''),(1543,25429,'_menu_item_url',''),(1544,25430,'_menu_item_type','post_type'),(1545,25430,'_menu_item_menu_item_parent','25421'),(1546,25430,'_menu_item_object_id','47'),(1547,25430,'_menu_item_object','page'),(1548,25430,'_menu_item_target',''),(1549,25430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1550,25430,'_menu_item_xfn',''),(1551,25430,'_menu_item_url',''),(1552,25431,'_menu_item_type','post_type'),(1553,25431,'_menu_item_menu_item_parent','25421'),(1554,25431,'_menu_item_object_id','25353'),(1555,25431,'_menu_item_object','page'),(1556,25431,'_menu_item_target',''),(1557,25431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1558,25431,'_menu_item_xfn',''),(1559,25431,'_menu_item_url',''),(1560,25432,'_menu_item_type','post_type'),(1561,25432,'_menu_item_menu_item_parent','25426'),(1562,25432,'_menu_item_object_id','25361'),(1563,25432,'_menu_item_object','page'),(1564,25432,'_menu_item_target',''),(1565,25432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1566,25432,'_menu_item_xfn',''),(1567,25432,'_menu_item_url',''),(1568,25433,'_menu_item_type','post_type'),(1569,25433,'_menu_item_menu_item_parent','0'),(1570,25433,'_menu_item_object_id','25360'),(1571,25433,'_menu_item_object','page'),(1572,25433,'_menu_item_target',''),(1573,25433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1574,25433,'_menu_item_xfn',''),(1575,25433,'_menu_item_url',''),(1576,25434,'_menu_item_type','post_type'),(1577,25434,'_menu_item_menu_item_parent','25428'),(1578,25434,'_menu_item_object_id','44'),(1579,25434,'_menu_item_object','page'),(1580,25434,'_menu_item_target',''),(1581,25434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1582,25434,'_menu_item_xfn',''),(1583,25434,'_menu_item_url',''),(1584,25435,'_menu_item_type','post_type'),(1585,25435,'_menu_item_menu_item_parent','25422'),(1586,25435,'_menu_item_object_id','25354'),(1587,25435,'_menu_item_object','page'),(1588,25435,'_menu_item_target',''),(1589,25435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1590,25435,'_menu_item_xfn',''),(1591,25435,'_menu_item_url',''),(1592,25436,'_menu_item_type','post_type'),(1593,25436,'_menu_item_menu_item_parent','25422'),(1594,25436,'_menu_item_object_id','25355'),(1595,25436,'_menu_item_object','page'),(1596,25436,'_menu_item_target',''),(1597,25436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1598,25436,'_menu_item_xfn',''),(1599,25436,'_menu_item_url',''),(1600,25437,'_menu_item_type','post_type'),(1601,25437,'_menu_item_menu_item_parent','25428'),(1602,25437,'_menu_item_object_id','49'),(1603,25437,'_menu_item_object','page'),(1604,25437,'_menu_item_target',''),(1605,25437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1606,25437,'_menu_item_xfn',''),(1607,25437,'_menu_item_url',''),(1608,25438,'_menu_item_type','post_type'),(1609,25438,'_menu_item_menu_item_parent','25422'),(1610,25438,'_menu_item_object_id','25352'),(1611,25438,'_menu_item_object','page'),(1612,25438,'_menu_item_target',''),(1613,25438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1614,25438,'_menu_item_xfn',''),(1615,25438,'_menu_item_url',''),(1616,25439,'_menu_item_type','post_type'),(1617,25439,'_menu_item_menu_item_parent','0'),(1618,25439,'_menu_item_object_id','25357'),(1619,25439,'_menu_item_object','page'),(1620,25439,'_menu_item_target',''),(1621,25439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1622,25439,'_menu_item_xfn',''),(1623,25439,'_menu_item_url',''),(1624,25440,'_menu_item_type','post_type'),(1625,25440,'_menu_item_menu_item_parent','25439'),(1626,25440,'_menu_item_object_id','25358'),(1627,25440,'_menu_item_object','page'),(1628,25440,'_menu_item_target',''),(1629,25440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1630,25440,'_menu_item_xfn',''),(1631,25440,'_menu_item_url',''),(1632,25441,'_menu_item_type','post_type'),(1633,25441,'_menu_item_menu_item_parent','25434'),(1634,25441,'_menu_item_object_id','25356'),(1635,25441,'_menu_item_object','page'),(1636,25441,'_menu_item_target',''),(1637,25441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1638,25441,'_menu_item_xfn',''),(1639,25441,'_menu_item_url',''),(1640,25442,'_menu_item_type','post_type'),(1641,25442,'_menu_item_menu_item_parent','25439'),(1642,25442,'_menu_item_object_id','25359'),(1643,25442,'_menu_item_object','page'),(1644,25442,'_menu_item_target',''),(1645,25442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1646,25442,'_menu_item_xfn',''),(1647,25442,'_menu_item_url',''),(1648,25443,'_menu_item_type','post_type'),(1649,25443,'_menu_item_menu_item_parent','25426'),(1650,25443,'_menu_item_object_id','120'),(1651,25443,'_menu_item_object','page'),(1652,25443,'_menu_item_target',''),(1653,25443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1654,25443,'_menu_item_xfn',''),(1655,25443,'_menu_item_url',''),(1656,38,'_edit_lock','1469188306:1'); /*!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=25444 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 (1,1,'2016-06-23 15:23:45','2016-06-23 15:23:45','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2016-06-23 15:23:45','2016-06-23 15:23:45','',0,'http://www.air-techinternational.com/airtech/?p=1',0,'post','',1),(2,1,'2016-06-23 15:23:45','2016-06-23 15:23:45','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://www.air-techinternational.com/airtech/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2016-06-23 15:23:45','2016-06-23 15:23:45','',0,'http://www.air-techinternational.com/airtech/?page_id=2',0,'page','',0),(3,1,'2016-07-22 11:20:21','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2016-07-22 11:20:21','0000-00-00 00:00:00','',0,'http://www.air-techinternational.com/airtech/?p=3',0,'post','',0),(27,1,'2016-07-22 11:28:38','2016-07-22 11:28:38','','Cover-pic-400x250','','inherit','open','closed','','cover-pic-400x250','','','2016-07-22 11:28:38','2016-07-22 11:28:38','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Cover-pic-400x250-1.jpg',0,'attachment','image/jpeg',0),(37,1,'2016-07-22 11:29:02','2016-07-22 11:29:02','','ductcleaning-pack-400x284','','inherit','open','closed','','ductcleaning-pack-400x284','','','2016-07-22 11:29:02','2016-07-22 11:29:02','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/ductcleaning-pack-400x284-1.jpg',0,'attachment','image/jpeg',0),(38,1,'2016-07-19 02:46:08','2016-07-19 02:46:08','','Home','','publish','closed','closed','','home','','','2016-07-19 02:46:08','2016-07-19 02:46:08','',0,'http://digital2grow.net/tvdhkd/?page_id=38',0,'page','',0),(40,1,'2016-07-19 02:46:49','2016-07-19 02:46:49','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"ABOUT AIR TECH INTERNATIONAL\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"][/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Air Tech Int\'l LLC (ATI) offers a wide range of services to help residential & commercial clients resolving general maintenance, construction, remodeling, fire/water damage cleanup and restoration issues. Our corporate philosophy is entirely dedicated to provide our clients with the most feasible, unobtrusive and effective solutions they seek. Our services include, but are not limited to: [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"802px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Full-Service Handyman Work</li>\n <li>Fire/Water Damage Restoration</li>\n <li>Home & Office Remodeling</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>General Construction Contracting</li>\n <li>HVAC Cleaning & Sanitation</li>\n <li>REO/Vacancy Clean-ups & Repair</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ATI\'s commitment to excellence is our promise that we shall always provide the highest level of professional services available in the industry. Our commitment to excellence through continuing education and training is the driving force behind our objective of contributing to safe & healthy housing [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3><strong><span style=\"font-size: 18pt; line-height: 1.5; color: #000080;\">Our Exclusive QA/QC, Customer Service Warranties</span></strong></h3>\n<ul style=\"list-style-type: square;\">\n <li><strong>On-Time Arrival</strong> - Air Tech guarantees appointment keeping within 30 minutes, which by all means is considered a grace period. Otherwise, customer shall be unconditionally entitled to 20% Off Invoice Value despite whatever circumstances may have caused the unforeseen delay.</li>\n <li><strong>No Hidden Fees</strong> - Air Tech guarantees that all service fees are to be set forth At The Time Of Booking. Should the need arise, unforeseen and/or additional improvements, tasks or services may be noted -but not proposed- to the client by the crew while on-site.</li>\n <li><strong>Character Technicians</strong> - Unlike franchise operations or service referral networks, Air Tech is a locally established, family owned & operated business. Thus, guarantees that all personnel is drug, alcohol & trouble free, and furthermore insures technician\'s Honesty & Integrity at all times.</li>\n <li><strong>Proof of Performance</strong> - Air Tech proudly guarantees all clients to be allowed to and; provided with the means to verify all HVAC cleaning improvements at any time upon request and; At No Additional Expense.</li>\n <li><strong>No Mold Scams</strong> - NADCA & EPA address various specific microbial growth situations in their HVAC cleaning guidelines, and so does Air Tech. Thus, any mold and/or microbial growth discovery shall be immediately treated with the appropriate disinfectant & removed At No Additional Charge.</li>\n <li><strong>HVAC System Soundness</strong> - (Comprehensive Service Only) Your A/C, furnace & air handling units will be tested for proper operation before the cleaning process begins, and again thereafter for a period of 15 minutes. If any component becomes inoperable within this timeframe, Air Tech will repair or replace it as required At No Cost To The Client.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"25\" text_text_color=\"#0c71c3\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Air Tech Is Fully Licensed & Insured. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','publish','closed','closed','','about','','','2016-07-19 02:46:49','2016-07-19 02:46:49','',0,'http://digital2grow.net/tvdhkd/?page_id=40',0,'page','',0),(42,1,'2016-07-19 02:47:05','2016-07-19 02:47:05','','Services','','publish','closed','closed','','services','','','2016-07-19 02:47:05','2016-07-19 02:47:05','',0,'http://digital2grow.net/tvdhkd/?page_id=42',0,'page','',0),(44,1,'2016-07-19 02:47:44','2016-07-19 02:47:44','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"HVAC\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"][/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong><span style=\"font-size: 14pt;\">Dirty Air Handlers, Evaporator Coils: The Secret Behind Poor HVAC System Performance, Shortened Life Span & Compromised Indoor Air Quality (IAQ)</span></strong>\n\nHVAC evaporators (A/C coils) and; blower fans periodic maintenance is often neglected; mainly because accessing their inner sides takes much more effort than \"the usual\". That is until they accumulate enough dirt to reduce or restrict airflow, causing a myriad of performance and/or comfort issues, or worse, clog condensate drainage components, which often leads to overflow spills that may result in catastrophic (non-repairable) equipment damage. See FAQ for more.\n\nFurthermore, dirty air handlers promote Rapid Bacteria & Mold Growth and; operating an infected unit may lead to Potentially Harmful Microbial Widespread. Because of the ill-effects that this may cause, HVAC unit\'s hygiene is now recognized as a key factor while addressing numerous IAQ issues. Visit EPA For MoreResidential/small commercial furnace\n\nFortunately, all of the above can be resolved overnight. Air Tech has the appropriate training, licensing and thus expertise, the latest containment gear, premium decon formulas & ambient sterilization technologies to safely resolve air handler microbial contamination issues of any kind, restore equipment\'s factory performance and; reestablish optimal conditioned airflow.\n\n \n\n<span style=\"color: #000080;\"><strong><span style=\"font-size: 18pt; line-height: 1.5;\">Our HVAC Cleaning Service includes the following tasks:</span></strong></span>\n<ul style=\"list-style-type: square;\">\n <li>Disinfected Air Handling Unit</li>\n <li>Preliminary HVAC Unit Isolation and Shock Plasma Sterilization</li>\n <li>Evaporator & Blower Fan Cabinets Insulation Cleaning/Repair</li>\n <li>Cooling Coil, Condensate Drainage Plumbing Cleaning & Flush-Out</li>\n <li>Complete Air Handler Cabinet Biocide Disinfection & Wipe Cleaning</li>\n <li>Heat Exchanger Wire Brush Cleaning, Blower Fan Power Washing</li>\n <li>Air Filter Housing Tracks Repair, Air Filter Sizing & Tight Fitting</li>\n <li>Return Air Duct-Work Cleaning (further depicted & explained below)</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3><span style=\"font-size: 18pt;\"><strong><span style=\"color: #000080;\">Why Return Air Duct-Work Cleaning?</span></strong></span></h3>\nA typical HVAC duct system consists of a supply network of ducts to carry conditioned air from the furnace or A/C unit (air handler) to various parts of a home/building, and a return branch that brings used air back into the air handler to be conditioned again. Unlike supply airflow, which is filtered & conditioned, the air drawn into a return branch is laden with dust, pollen, fibers, bacteria, mold spores, dander, etc., which adhere to the duct walls and severely build-up over time.\n\nTemperature & humidity changes, vibrations (from walking, stomping, door slamming, etc) often cause debris detachment, which affects air filter\'s performance or integrity, and thus the HVAC unit in various ways.\n\nCleaning the return air duct-work along with the HVAC unit may boost energy/operational savings (up to 30%), provides a much higher level of pollutants removal and hence enhanced indoor air quality and better yet, it guarantees increased air filtration efficiency as well as equipment lifespan.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Ductworksys.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h4><strong><span style=\"font-size: 24pt; color: #000080;\">PRICING</span></strong></h4>\nResidential Units (ANY SIZE): <span style=\"font-size: 18pt;\"><strong>$385.00 Each</strong></span>\n\n<img class=\"aligncenter size-full wp-image-25382\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/CC_Logo.gif\" alt=\"CC_Logo\" width=\"310\" height=\"36\" />\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Commercial / Industrial Units: Contact Air Tech For Free Estimates!</span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\"><strong><span style=\"font-size: 18pt;\">(240) 388-0030</span></strong></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HVAC','','publish','closed','closed','','hvac','','','2016-07-19 02:47:44','2016-07-19 02:47:44','',42,'http://digital2grow.net/tvdhkd/?page_id=44',0,'page','',0),(46,1,'2016-07-19 02:48:09','2016-07-19 02:48:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Air Duct Cleaning\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"][/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignleft size-full wp-image-25388\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/HEPA_Air_Machine.jpg\" alt=\"HEPA_Air_Machine\" width=\"192\" height=\"377\" />Air ducts & HVAC units cleaning is now considered the first step towards indoor air pollution control, provided that is done properly. This means following EPA\'s recommended cleaning techniques and; using the appropriate equipment, which is essential for managing massive contaminant disturbances.\nAir Tech\'s Air Duct cleaning rotary brush systemAir Tech brings 10+ years of experience sanitizing HVAC systems using certified green products and the latest Air-Care professional duct cleaning equipment, which is EPA Registered, 100% NADCA Compliant and; FDA Approved for use in hospitals.\n\nAir Duct Video Inspection SystemAnd because Seeing Is Believing, we\'re always Ready & Looking Forward to fulfill Consumer\'s Rights. In fact, our exclusive QA/QC program (itemized below) includes Complimentary duct cleaning video proofing since day one.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3>Residential Air Duct, HVAC Cleaning: Options & Pricing</h3>\nNote: Base pricing set forth below is for 1 HVAC system featuring up to 16 supply air vents and; 3 return air intakes. Have a large home with Over 20 vents And/or 2 or More Separate HVAC Systems? Contact ATI for custom pricing. 240-388-0030\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<span style=\"color: #000080;\"><strong><span style=\"font-size: 14pt; line-height: 1.2;\">Standard Air Duct Cleaning</span></strong></span>\n<span style=\"color: #000080;\"><strong><span style=\"font-size: 14pt; line-height: 1.2;\"> Ductwork Only (Limited Service)</span></strong></span>\n\nThis service applies best to newly constructed homes, or when your HVAC unit is fairly new and/or regularly maintained by a reputable HVAC contractor. It includes all existing vents/grilles, branches, main supply & return ducts, distribution plenums and; filter housing cleaning.\n\n<strong>Single Family Homes & Townhouses:</strong> $349.00\n<strong>Small (1 Br.) Apartments & Condos:</strong> $289.00\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong><span style=\"font-size: 14pt; line-height: 1.2; color: #000080;\">HVAC (Furnace, Air Handler) Unit Cleaning</span></strong>\n<strong><span style=\"font-size: 14pt; line-height: 1.2; color: #000080;\"> NADCA / EPA Compliant Comprehensive Service</span></strong>\n\nIf your HVAC unit is 4 years or older, has been poorly maintained, or if there is visible mold growth within, NADCA/EPA recommend having it cleaned along with the duct-work. This option adds blower fan, heat exchanger, A/C coil, drain plumbing and; cabinet insulation cleaning. More About Dirty Air Handlers.\n\n<strong>Only $150.00 With Air Duct Cleaning! Excl. Service: $499.00</strong>\n<strong> Any Additional System/HVAC Zone Cleaning: $30.00 Off!!</strong>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n1St Floor Dryer Vent Cleaning: <strong>Just $35.00</strong> With Air Duct Cleaning. Excl. Service: <strong>$109.00</strong>\n\n<span style=\"font-size: 18pt;\">Commercial & Industrial Air Duct Cleaning: Free Estimates</span>\n\n<span style=\"font-size: 18pt;\">Contact Air Tech For Scheduling & More Details. <strong><span style=\"color: #ff0000;\">240-388-0030</span></strong></span>\n\n<img class=\"size-full wp-image-25382 aligncenter\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/CC_Logo.gif\" alt=\"CC_Logo\" width=\"310\" height=\"36\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Air Duct Cleaning','','publish','closed','closed','','air-duct-cleaning','','','2016-07-19 02:48:09','2016-07-19 02:48:09','',42,'http://digital2grow.net/tvdhkd/?page_id=46',0,'page','',0),(47,1,'2016-07-19 02:48:38','2016-07-19 02:48:38','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"150px\" bottom_padding=\"150px\"] [et_pb_slide heading=\"Dryer Vent Cleaning\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" body_font_size=\"20\" body_font_size_tablet=\"20\" body_font_size_phone=\"20\" body_line_height=\"1.75em\" body_line_height_tablet=\"1.75em\" body_line_height_phone=\"1.75em\"]Commercial & Residential Dryer Exhaust Vents, Air Duct Cleaning Contractor MD/VA/DC[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2>Clogged Dryer Vents - More Than Annoying</h2>\n<img class=\"alignleft size-full wp-image-25381\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/vac1a.gif\" alt=\"vac1a\" width=\"230\" height=\"250\" />Besides preventing fast drying action, excessive lint build-up or bird nesting in dryer vents may cause the dryer\'s temperature limit safety switch to cycle continuously, resulting in (1) Higher dryer operation costs, (2) Clothing damage, or worse; (3) Overheating, which could possibly cause a Dryer Fire.\n\nRo-Vac Professional dryer vent cleaning system. Removes lint and bird nests, cleans small vents and air ducts.Fortunately, this problem has a Fast & Economical Solution. The key to optimal dryer performance is insuring proper exhaust airflow, and our newest Ro-Vac D4 professional dryer vent cleaning system was engineered exclusively for such a task. It features special attachments that grab & pull soft blockages (wet lint, bird nests), and self-maneuvering brush drivers that can reach & thoroughly clean any length or shape dryer duct. No other system (hose brush, compressed-air tool) works nearly as good ...if at all !!\n\n<span style=\"font-size: 16pt; line-height: 1.5;\">We\'re committed to deliver the highest quality services that you seek, for which invest in specialty tools that insure a job well done. So-please, save your receipt. With our newest D4, we Guarantee dryer vent cleaning at least 3 months.</span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2><span style=\"color: #000080;\">Pricing</span></h2>\n<strong>Basement, 1St. Floor Dryer Vent Cleaning:</strong> $109.00\n\n<strong>2nd. floor wall-mounted dryer vents (Up to 20 Ft. high):</strong> $149.00\n\n<strong>3Rd. floor, roof-mounted vents (Over 20 Ft. High)</strong>: Call For Pricing\n\n \n\n<img class=\"alignleft size-full wp-image-25382\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/CC_Logo.gif\" alt=\"CC_Logo\" width=\"310\" height=\"36\" />\n\n \n\n \n\n<span style=\"font-size: 14pt; line-height: 1.5;\"><span style=\"color: #ff0000;\"><strong>Service Coverage Area:</strong></span> Washington DC, Montgomery, Howard, PG, Arlington, Fairfax, P. William & Loudon County. Special Reminder: Check our HVAC Cleaning Service!</span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3><span style=\"color: #000080;\"><strong><span style=\"font-size: 18pt;\">Stop Birds & Other Pests From Nesting In Your Dryer Vent!</span></strong></span></h3>\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignleft size-full wp-image-25383\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/birdguard.gif\" alt=\"birdguard\" width=\"177\" height=\"173\" />Universal bird screen fits over all standard dryer and bathroom vent end tips for positive protection against birds, rodents and other pests. <span style=\"color: #000080;\"><strong>Just $55.00,</strong></span> Installed! With dryer vent cleaning.\n\nSpecial Note - Because dryer\'s exhaust airflow is more important than heat in the drying process, the use of proper dryer venting materials as well as adequate installation not only validate our exclusive 3-Month cleaning service warranty, but also helps achieving maximum dryer performance, resulting in lower electric/gas usage over time.\n\n \n\n<strong><span style=\"font-size: 18pt; line-height: 1.5;\">In order to achieve these savings,</span></strong>\n<ul style=\"list-style-type: square;\">\n <li>Your dryer vent should be independent from all other exhaust systems and vented outdoors</li>\n <li>Dryer ducts must be at least 4\" in diameter and/or as large as the dryer\'s outlet</li>\n <li>Only flexible metal connectors should be used between the dryer machine and the exhaust duct</li>\n <li>Duct-work joints should be secured with metal tape only, never screws or rivets</li>\n <li>Joints should be installed so the pipe connections point in the direction of the airflow</li>\n <li>Structurally concealed dryer vent ducts must be rigid metal (galvanized or aluminum)</li>\n <li>Outside end tip should not be obstructed or concealed (i.e. under decking or siding material)</li>\n <li>Outside dryer vent tip should be equipped with a back-draft damper, and a 1\" rodent/bird screen</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dryer Vent Cleaning','','publish','closed','closed','','dryer-vent-cleaning','','','2016-07-19 02:48:38','2016-07-19 02:48:38','',42,'http://digital2grow.net/tvdhkd/?page_id=47',0,'page','',0),(49,1,'2016-07-19 02:48:50','2016-07-19 02:48:50','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Remodelling\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" body_font_size=\"20\" body_font_size_tablet=\"20\" body_font_size_phone=\"20\" body_line_height=\"1.75em\" body_line_height_tablet=\"1.75em\" body_line_height_phone=\"1.75em\"]\n\nConstruction, Handyman, Home Repair & Restoration Services MD, VA & Washington DC\n\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" module_id=\"home-repair\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Thank you for considering our Full-Service handyman, home repair, restoration & remodeling services. We are a Fully Licensed & Insured home improvement company committed to provide quality work at reasonable rates, which are based on accurate estimates. [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2>Our services include, but are not limited to:</h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"802px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" parallax_3=\"off\" parallax_method_3=\"off\" module_id=\"construction\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Gutter Cleaning & Replacement</li>\n <li>Basement Waterproofing</li>\n <li>Attic Insulation Repair/Install</li>\n <li>Foundation Grading Repair</li>\n <li>Windows & Doors Install</li>\n <li>Sheetrock/Drywall Repair</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Kitchen Remodeling</li>\n <li>Bathroom Remodeling</li>\n <li>Standard & Custom Painting</li>\n <li>Full-Service Electrical Work</li>\n <li>Patio & Driveway Concrete</li>\n <li>Wood & Ceramic Tile Flooring</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Fire/Water Damage Restoration</li>\n <li>Vinyl Siding Installation</li>\n <li>Drop Ceilings, Recess Lighting</li>\n <li>Porch Construction/Repair</li>\n <li>Wood and Composite Decks</li>\n <li>Plumbing</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" module_id=\"restoration\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWhether you are looking into remodeling a kitchen, bathroom, basement, porch, deck or entire structure; cleanup burned or moldy environments, or simply have your home or office repainted, we\'ll provide the quality workmanship that you seek, and no matter what size, all work is guaranteed. Finally, let us offer a few contractor selection tips:\n<ul style=\"list-style-type: square;\">\n <li>Always get at least two estimates, insure they\'re as itemized as possible</li>\n <li>Make sure to get your estimates in writing, do not accept verbal offers</li>\n <li>Always make sure to check, call at least two of each contractor\'s references</li>\n <li>Always request, and please make sure to check the contractor\'s LICENSE</li>\n <li>Do not accept persuasive behavior, take your time before making decisions</li>\n <li>Insure that your estimate includes a pricing accuracy warranty</li>\n</ul>\nWith that said, consider the advantages of having Air Tech take care of everything on your \"To Do\" list in one guaranteed hassle-free appointment. Again, no job is too small so go ahead, give us a call!! <strong><span style=\"color: #ff0000;\">240-388-0030</span></strong>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Remodelling','','publish','closed','closed','','remodelling','','','2016-07-19 02:48:50','2016-07-19 02:48:50','',42,'http://digital2grow.net/tvdhkd/?page_id=49',0,'page','',0),(50,1,'2016-07-22 11:31:16','2016-07-22 11:31:16','[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Basic','','publish','closed','closed','','homepage-basic','','','2016-07-22 11:31:16','2016-07-22 11:31:16','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/homepage-basic/',0,'et_pb_layout','',0),(51,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Recent Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Shop','','publish','closed','closed','','homepage-shop','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/homepage-shop/',0,'et_pb_layout','',0),(52,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Portfolio','','publish','closed','closed','','homepage-portfolio','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/homepage-portfolio/',0,'et_pb_layout','',0),(53,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"http://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/d2-300px.png\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Company','','publish','closed','closed','','homepage-company','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/homepage-company/',0,'et_pb_layout','',0),(54,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Corporate','','publish','closed','closed','','homepage-corporate','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/homepage-corporate/',0,'et_pb_layout','',0),(55,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"http://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\r\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Extended','','publish','closed','closed','','homepage-extended','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/homepage-extended/',0,'et_pb_layout','',0),(56,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Page Fullwidth','','publish','closed','closed','','page-fullwidth','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/page-fullwidth/',0,'et_pb_layout','',0),(57,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Right Sidebar','','publish','closed','closed','','page-right-sidebar','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/page-right-sidebar/',0,'et_pb_layout','',0),(58,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Page Left Sidebar','','publish','closed','closed','','page-left-sidebar','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/page-left-sidebar/',0,'et_pb_layout','',0),(59,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Dual Sidebars','','publish','closed','closed','','page-dual-sidebars','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/page-dual-sidebars/',0,'et_pb_layout','',0),(60,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/portfolio-grid/',0,'et_pb_layout','',0),(61,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send me an inquiry and I will get back to you as soon as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio 1 Column','','publish','closed','closed','','portfolio-1-column','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/portfolio-1-column/',0,'et_pb_layout','',0),(62,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Carousel','','publish','closed','closed','','portfolio-fullwidth-carousel','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/portfolio-fullwidth-carousel/',0,'et_pb_layout','',0),(63,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Grid','','publish','closed','closed','','portfolio-fullwidth-grid','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/portfolio-fullwidth-grid/',0,'et_pb_layout','',0),(64,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended','','publish','closed','closed','','project-extended','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/project-extended/',0,'et_pb_layout','',0),(65,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Details</h4>\r\n<strong>Client </strong>Client Name\r\n<strong>Date </strong>Date of Completion\r\n<strong>Skills </strong>Branding, Web Design\r\n<strong>View </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended 2','','publish','closed','closed','','project-extended-2','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/project-extended-2/',0,'et_pb_layout','',0),(66,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Masonry','','publish','closed','closed','','blog-masonry','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/blog-masonry/',0,'et_pb_layout','',0),(67,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Blog Standard','','publish','closed','closed','','blog-standard','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/blog-standard/',0,'et_pb_layout','',0),(68,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Basic','','publish','closed','closed','','shop-basic','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/shop-basic/',0,'et_pb_layout','',0),(69,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Extended','','publish','closed','closed','','shop-extended','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/shop-extended/',0,'et_pb_layout','',0),(70,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Splash Page','','publish','closed','closed','','splash-page','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/splash-page/',0,'et_pb_layout','',0),(71,1,'2016-07-22 11:31:17','2016-07-22 11:31:17','[et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\r\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Maintenance Mode','','publish','closed','closed','','maintenance-mode','','','2016-07-22 11:31:17','2016-07-22 11:31:17','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/maintenance-mode/',0,'et_pb_layout','',0),(72,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Coming Soon','','publish','closed','closed','','coming-soon','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/coming-soon/',0,'et_pb_layout','',0),(73,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\r\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page','','publish','closed','closed','','landing-page','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/landing-page/',0,'et_pb_layout','',0),(74,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]','About Me','','publish','closed','closed','','about-me','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/about-me/',0,'et_pb_layout','',0),(75,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','publish','closed','closed','','about-us','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/about-us/',0,'et_pb_layout','',0),(76,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\r\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\r\n\r\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\r\nSan Francisco, California 65432\r\n\r\n<strong>Phone:</strong> 123.4567.890\r\n\r\n<strong>Business Hours:</strong> 8a-6:30p M-F, 9a-2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','publish','closed','closed','','contact-us','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/contact-us/',0,'et_pb_layout','',0),(77,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\r\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\r\n[/et_pb_section]\r\n\r\n[et_pb_section]\r\n[et_pb_row]\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Nick Roach</h2>\r\n<em>President, CEO, Theme UI/UX Designer</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\r\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Kenny Sing</h2>\r\n<em>Lead Graphic Designers</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\r\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\r\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Mitch Skolnik</h2>\r\n<em>Community Manager</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\r\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\r\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\" title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\" title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\" title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\" title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\r\nLearn from the top thought leaders in the industry.\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\r\nLearn from the top thought leaders in the industry.\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#7EBEC5\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\r\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\r\n[/et_pb_cta]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]','Our Team','','publish','closed','closed','','our-team','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/our-team/',0,'et_pb_layout','',0),(78,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\r\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Creative Agency','','publish','closed','closed','','creative-agency','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/creative-agency/',0,'et_pb_layout','',0),(79,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n-Premium Technical Support\r\n-Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n-Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\r\nDon\'t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Sales Page','','publish','closed','closed','','sales-page','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/sales-page/',0,'et_pb_layout','',0),(80,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]','Case Study','','publish','closed','closed','','case-study','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/case-study/',0,'et_pb_layout','',0),(81,1,'2016-07-22 11:31:18','2016-07-22 11:31:18','[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Product Features','','publish','closed','closed','','product-features','','','2016-07-22 11:31:18','2016-07-22 11:31:18','',0,'http://www.air-techinternational.com/airtech/et_pb_layout/product-features/',0,'et_pb_layout','',0),(120,1,'2016-07-19 03:08:05','2016-07-19 03:08:05','','Testimonials','','publish','closed','closed','','testimonials','','','2016-07-19 03:08:05','2016-07-19 03:08:05','',0,'http://digital2grow.net/tvdhkd/?page_id=120',0,'page','',0),(124,1,'2016-07-19 03:14:18','2016-07-19 03:14:18','','shipping company employee','portrait of shipping company employee standing in front of industrial tires','inherit','open','closed','','shipping-company-employee','','','2016-07-19 03:14:18','2016-07-19 03:14:18','',40,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Fotolia_53458263_Subscription_Monthly_M.jpg',0,'attachment','image/jpeg',0),(128,1,'2016-07-19 03:15:44','2016-07-19 03:15:44','','Wyoming Background','','inherit','open','closed','','wyoming-background','','','2016-07-19 03:15:44','2016-07-19 03:15:44','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png',0,'attachment','image/png',0),(135,1,'2016-07-19 07:46:11','2016-07-19 07:46:11','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"]\n\n[et_pb_slide heading=\"ABOUT AIR TECH INTERNATIONAL\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\n\n\n\n[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nAir Tech Int\'l LLC (ATI) offers a wide range of services to help residential & commercial clients resolving general maintenance, construction, remodeling, fire/water damage cleanup and restoration issues. Our corporate philosophy is entirely dedicated to provide our clients with the most feasible, unobtrusive and effective solutions they seek. Our services include, but are not limited to:\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"802px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<ul style=\"list-style-type: square;\">\n <li>Full-Service Handyman Work</li>\n <li>Fire/Water Damage Restoration</li>\n <li>Home & Office Remodeling</li>\n</ul>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<ul style=\"list-style-type: square;\">\n <li>General Construction Contracting</li>\n <li>HVAC Cleaning & Sanitation</li>\n <li>REO/Vacancy Clean-ups & Repair</li>\n</ul>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nATI\'s commitment to excellence is our promise that we shall always provide the highest level of professional services available in the industry. Our commitment to excellence through continuing education and training is the driving force behind our objective of contributing to safe & healthy housing\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"25\" text_text_color=\"#0c71c3\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nAir Tech Is Fully Licensed & Insured.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Page Layout v1','','publish','closed','closed','','page-layout-v1','','','2016-07-19 07:46:11','2016-07-19 07:46:11','',0,'http://digital2grow.net/tvdhkd/et_pb_layout/page-layout-v1/',0,'et_pb_layout','',0),(137,1,'2016-07-19 08:14:47','2016-07-19 08:14:47','','3-1','','inherit','open','closed','','3-1','','','2016-07-19 08:14:47','2016-07-19 08:14:47','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/3-1.jpg',0,'attachment','image/jpeg',0),(138,1,'2016-07-19 08:14:50','2016-07-19 08:14:50','','022','','inherit','open','closed','','022','','','2016-07-19 08:14:50','2016-07-19 08:14:50','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/022.png',0,'attachment','image/png',0),(139,1,'2016-07-19 08:14:50','2016-07-19 08:14:50','','032','','inherit','open','closed','','032','','','2016-07-19 08:14:50','2016-07-19 08:14:50','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/032.png',0,'attachment','image/png',0),(140,1,'2016-07-19 08:14:50','2016-07-19 08:14:50','','051','','inherit','open','closed','','051','','','2016-07-19 08:14:50','2016-07-19 08:14:50','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/051.png',0,'attachment','image/png',0),(141,1,'2016-07-19 08:14:50','2016-07-19 08:14:50','','041','','inherit','open','closed','','041','','','2016-07-19 08:14:50','2016-07-19 08:14:50','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/041.png',0,'attachment','image/png',0),(25343,1,'2016-06-29 02:24:17','2016-06-29 02:24:17','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"129px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"64px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"10em\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_tablet=\"4em\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>FAQs</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"37px||149px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_width_px=\"940px\" custom_padding_tablet=\"0px||64px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#888888\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" max_width=\"940px\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>Frequently Asked Questions.<br /> Here are some common questions about Elegant Studio.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f7f7\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"130px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How is my price determined?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can I get my order sooner?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What file-format should I submit?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is your minimum order quantity?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How long is turnaround time?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How much do I have to pay to get started?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is the 3% under allowance policy?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"133\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/3-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"190px||190px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"120px||120px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"||0px|\" custom_padding=\"0px||0px|\"]\n\n<p>Still need help? Send us a note!</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#cccccc\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\" text_font_size_tablet=\"24\"]\n\n<p>For any other questions, please write us at info@elegant.studio or call us on +39 123 456 789</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#dac8c1\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\"]\n\n<p><a href=\"#\"><img style=\"margin-right: 40px\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/022.png\" alt=\"022\" width=\"9\" height=\"18\" class=\"alignnone size-full wp-image-18669\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/032.png\" alt=\"032\" width=\"23\" height=\"18\" class=\"alignnone size-full wp-image-18668\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/051.png\" alt=\"051\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18670\"></a> <a href=\"#\"><img style=\"margin-right: 40px\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/041.png\" alt=\"041\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18671\"></a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FAQ #3','','publish','closed','closed','','faq-3','','','2016-06-29 02:24:17','2016-06-29 02:24:17','',0,'http://digital2grow.net/tvdhkd/et_pb_layout/faq-3/',0,'et_pb_layout','',0),(25344,1,'2016-07-22 11:37:31','2016-07-22 11:37:31','','Home','','publish','closed','closed','','home','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/home/',1,'nav_menu_item','',0),(25350,1,'2016-07-19 01:51:11','2016-07-19 01:51:11','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world-2','','','2016-07-19 01:51:11','2016-07-19 01:51:11','',0,'http://digital2grow.net/tvdhkd/?p=1',0,'post','',1),(25351,1,'2016-07-19 01:51:11','2016-07-19 01:51:11','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://digital2grow.net/tvdhkd/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','closed','open','','sample-page__trashed','','','2016-07-19 01:51:11','2016-07-19 01:51:11','',0,'http://digital2grow.net/tvdhkd/?page_id=2',0,'page','',0),(25352,1,'2016-07-19 02:49:28','2016-07-19 02:49:28','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Water Damage Restoration\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nAll indoor mold growth situations should be resolved, and quickly. It is well known that besides degrading building materials, certain species of fungi may produce mycotoxins that are among the most toxic chemicals known to man. Thus, it is possible that by the time mold growth is discovered indoors, mycotoxin levels may have already build-up.Dissicant heat delivery system for toxic mold remediation, water damage control and basement flood cleaning\n\nAir Tech\'s approach to mold remediation utilizing medical industry containment techniques and novel microbial deactivation formulas enhance Federal safety guidelines and expedite remedial work. Our equipment can be deployed in just minutes to provide Pressure Barriers, and deliver a variety of mitigation agents (i.e. atomized peroxide formulas), boost dehumidification, air scrubbing & more.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n\n<span style=\"font-size: 18pt;\">15 Minutes, Environment Under Control - Now Let\'s Deactivate The Mold</span>\n\nSandia National Laboratories has brought Decon technology to the commercial market, representing a major advance in combating mold and other contaminants. Originally developed for the U.S. Government, Decon formulations safely deactivate toxic fungi, bacterium and its by-products, Trichothecene Mycotoxins within 30 minutes, and dwelling time is 24 hours at most.\n\n<span style=\"font-size: 18pt;\">Mold Is Gone - Let\'s Cleanup The Mess & While At It, Fix The Source</span>\n\nWhile our expert cleanup team finish up the project, remediation takes its place. This means resolving whatever CAUSED or CONTRIBUTED to the situation, which most \"mold remediation\" companies don\'t do at all (including ServiceMaster & Servpro). Since the project\'s long term success depends on it, we\'ll diagnose the source free of charge. Better yet, even though we\'re licensed to take care of it, will provide you a competitive bid, and the chance to shop around. Fair is fair & best of all: Mold is gone!\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Moldy_room.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/PPI.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3><span style=\"font-size: 24pt;\">What Is The Guarantee?</span></h3>\nSimply put, 100%. Air Tech guarantees that any given site and/or area thereof that is treated under our exclusive mold risk management program will be:\n\nMold sampling after mold remediation and cleaning, water damage cleanup, basement waterproofing or restoration is completed\n\n(1) Free of active (VIAL) mycotoxin mold, bacterium and/or chemical by-products (mycotoxins),\n(2) Free of gross filth, water-damaged items or substrates, heavy soil, free of foul or musty odors,\n(3) At half or less colony forming units (CFU) counts compared to outdoor mold readings*,\n(4) Will successfully pass Third Party Clearance Testing within 48 hours of treatment, and;\n(5) Improved conditions will remain like so as long as whatever caused the problem is fixed to code.\n\n* Mold spores are a part of the natural environment at all times, thus impossible to eradicate.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><span style=\"font-size: 24pt;\">Budget Rules - How Much?</span></h3>\nBottom line: Compared to traditional mold mitigation methods, biosafety Makes Sense. Starting at $1.85 P/ Square Foot, an entire home or building and all contents within can become microbe-safe overnight, converting any mold/IAQ situation into a harmless cleanup & maintenance project, which may be Up to 60% Less Expensive. And sure enough, the fact that we\'re properly licensed for the job does not mean that you have to pay more to get rid of infamous toxic black mold.\n\n<span style=\"font-size: 14pt;\">So-Please, Shop Around First, and then give Air Tech a call. <strong><span style=\"color: #ff0000;\">240-388-0030</span></strong></span>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/VA-mold-license.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3>Biosafety As A Profession</h3>\nThe concept of Biological Safety (or biosafety) has paralleled the development of the science of microbiology. Applied biosafety is the knowledge and skill necessary to identify, isolate and/or manipulate pathogenic microorganisms. Biosafety professionals master the principles of epidemiology, disease transmission patterns, risk management, disinfection and sterilization, aerobiology and environmental control systems engineering to reduce or eliminate the potential for adverse environmental impact from infectious agents or biologically-derived materials.\n\n<img class=\"alignleft size-full wp-image-25370\" src=\"http://digital2grow.net/tvdhkd/wp-content/uploads/2016/07/ABSA_Logo.gif\" alt=\"ABSA_Logo\" width=\"118\" height=\"118\" />The American Biological Safety Association (ABSA) is a recognized applied biosafety institution that works in alliance with OSHA. ABSA focuses primarily on biological safety in the workplace, emerging biological safety issues, and methods to address those issues. Air Tech is a proud member of ABSA.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Water Damage Restoration','','publish','closed','closed','','water-damage-restoration','','','2016-07-19 02:49:28','2016-07-19 02:49:28','',42,'http://digital2grow.net/tvdhkd/?page_id=52',0,'page','',0),(25353,1,'2016-07-19 02:49:21','2016-07-19 02:49:21','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Foreclosure Vacancy Cleanup\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignleft size-full wp-image-25373\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/trashed-home.jpg\" alt=\"trashed home\" width=\"300\" height=\"198\" />Time is money, so the benefits of quickly turning REO/foreclosed or rental return properties into clean, safe and attractive homes for market cannot be overstated. Backed by nearly 10 years of environmental clean-ups, fire and water damage restoration experience, Air Tech is committed to make your bank-owned (REO), rental vacancy or foreclosed homes to-do list headaches a thing of the past. Imagine making a single phone call, have your REO, foreclosed or rental return property cleaned, fixed & ready for occupancy in 2 days or so!\n\nOur experienced Full-House Rehab team works with realtors, banks & landlords to quickly bring devastated homes to par. In addition to Police-assisted initial entry, intruder\'s eviction & property survey, services include, but are not limited to:\n\n<strong>Exterior Trash-Out:</strong> Includes junk/debris, construction materials & light furniture removal, lawn mowing, edging, shrubs trimming, raking, gutter cleaning and; low hanging tree branches (up to 3\" in diameter) cutting, removal & haul-out.\n\n<strong>Interior Clean-Out:</strong> Includes junk/debris & light furniture removal, and thorough cleaning of bathrooms, kitchen counters, cabinets and appliances, doors & windows, fireplaces, ceiling and wall fixtures, laundry rooms, closets, living areas carpet vacuuming, hard floors moping, full-house deodorizing, and garage junk/debris clearing and sweeping.\n\n \n<h3><span style=\"font-size: 18pt;\"><strong>Additional Services</strong></span></h3>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"802px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Plumbing Winterization & Board-Ups</li>\n <li>Flood/Sewer Back-Up Damage Repair</li>\n <li>Mold Remediation & Waterproofing</li>\n <li>Water Damaged Carpet Replacement</li>\n <li>HVAC Tune-Up Service & Repair</li>\n <li>Air Ducts & Dryer Vents Cleaning</li>\n <li>Wood Flooring Sanding & Re-Finishing</li>\n <li>Smoke & CO Detectors Install</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Attic Cleaning, Heating Oil Tanks Removal</li>\n <li>Plumbing & Appliances Repair</li>\n <li>Interior Walls Patching, Finishing & Painting</li>\n <li>Fixtures & Light Electrical Wiring Repair</li>\n <li>Deck, Driveway & Siding Power Washing</li>\n <li>Windows & Doors Repair, Locksmith Work</li>\n <li>Pools / Fish Ponds Cleanout & Draining</li>\n <li>Abandoned Vehicles Removal / Towing</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Bottom Line:</strong> Save time, aggravations & money, focus on market-ready real estate, not what\'s left of a home laden with junk. Let Air Tech clear entry, inspect, clean and restore your recent rental return, evicted or REO foreclosed home in a One-Stop operation, which is a much simpler, faster & cost effective approach, and a hassle-free resource that you can always count on.\n\nBanks have already accepted capital investments under the Treasury Department\'s ERP, which announced commitments totaling $161.3 billion out of $250 billion allocated. Sure enough, it means fresh money for loans! So foreclosed or not, struggling to sell a run-down home makes no sense when all that it takes to get it fixed... is a single phone call.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Foreclosure Vacancy Cleanup','','publish','closed','closed','','foreclosure-vacancy-cleanup','','','2016-07-19 02:49:21','2016-07-19 02:49:21','',42,'http://digital2grow.net/tvdhkd/?page_id=53',0,'page','',0),(25354,1,'2016-07-19 02:49:41','2016-07-19 02:49:41','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Mold Inspection\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMold, organic fumes or bacteria can play a role as both, result or culprit of a variety of issues. Mold typically occurs when building materials become exposed to a moisture source, or when inadequate ventilation promotes ambient relative humidity build-up. Unattended mold infections are likely to spread, leading eventually to massive building materials -or personal assets- decay and; their infamous overwhelming musty smell.\n\nMold\'s natural way of spreading has also become a matter of concern involving indoor air quality (IAQ), an area in which there are no established regulatory standards to date. Thus far, only a physician can determine whether such mold or IAQ situation may be related to health complaints, for which very specific screen testing is required.\n\nBeware that in most cases, if visible mold growth is present and; moisture sources are identified, substrates testing or IAQ sampling may be unnecessary. According to the US EPA, \"In specific instances, such as cases where litigation is involved, the source\'s of the mold contamination are unclear, or health concerns are a problem, you may consider sampling as part of a site evaluation\". Please contact ATI to determine whether your situation may require testing or air sampling. <strong><span style=\"color: #ff0000;\">240-388-0030</span></strong>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3><strong><span style=\"font-size: 18pt; color: #000080;\">Have A Readily Visible Mold Problem That Needs Remediation?</span></strong></h3>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/VA-mold-license.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nThen take advantage of our savvy Mold/IAQ Management services, which provide everything that you need to insure that your home or building\'s mold problem is fixed to code, within time and; budget constrains. When you employ our Mold Remediation & Water Damage Restoration services, all initial inspection and/or consulting fees are applied towards the project, and we can tailor our services to accommodate your specific mold clean-up needs. Learn MoreMold remediation worker.\n<p style=\"text-align: center;\"><strong><span style=\"color: #000080;\">And Because We\'re Licensed To Address </span></strong></p>\n<p style=\"text-align: center;\"><strong><span style=\"color: #000080;\">Whatever The Source, Our Mold Remediation </span></strong></p>\n<p style=\"text-align: center;\"><strong><span style=\"color: #000080;\">Services Are 100% Guaranteed.</span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Mold Inspection','','publish','closed','closed','','mold-inspection','','','2016-07-19 02:49:41','2016-07-19 02:49:41','',42,'http://digital2grow.net/tvdhkd/?page_id=56',0,'page','',0),(25355,1,'2016-07-19 02:49:49','2016-07-19 02:49:49','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"]\n\n[et_pb_slide heading=\"Plasma Disinfection\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\n\n[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFor one searching for means to eradicate unwanted mold, bacteria, viruses or VOCs from homes or buildings, <strong>Plasma</strong> may sound complicated, yet is a <strong>relatively simple and quite safe microbial sterilization</strong> technique that is utilized in a variety of applications for its low operating costs and non-polluting capabilities. Though plasma is an electrical term, it is considered the fourth state of matter by many leading physicists, and is generally described as a gaseous form of energy.\n\n \n<h2><strong><span style=\"color: #000080; line-height: 1.5;\">How It Works With Air?</span></strong></h2>\nWhen a modulated electric field is applied to a pair of electrodes, a plasma is formed, which makes the Oxygen molecules of the air passing near the electrodes break down into reactive oxygen species (ROS). Organic substrates such as bacteria, viruses and mold spores that become exposed to these ROS are destroyed or rendered harmless on contact, and the same reaction convert the ROS back into oxygen. In fact, any amount of air that is exposed to the ROS becomes substrates-free.\n\n \n<h3><span style=\"font-size: 18pt;\"><strong><span style=\"color: #000080; line-height: 1.5;\">Plasma Technologies & Applications - Technical Information Sources</span></strong></span></h3>\n<ul style=\"list-style-type: square;\">\n <li>DOE & US Air Force: <a href=\"http://www.eurekalert.org/pub_releases/1996-06/LANL-PTFC-100696.php\">Cold Plasma Decontamination Research At Los Alamos</a></li>\n <li>American Physical Society: <a href=\"http://www.aps.org/meet/DPP00/baps/abs/S1460.html\">Killing Airborne & Surface Microorganisms With Cold Plasma</a></li>\n <li>South West Research Institute: <a href=\"http://www.swri.org/3pubs/ttoday/spring96/ttoday2.htm\">$2M Plasma Technology & Applications Research</a></li>\n <li>Discharge Plasma: <a href=\"http://flux.aps.org/meetings/BAPSDPP96/abs/G550031.html\">Sterilization of Materials with a One Atmosphere Discharge Plasma</a></li>\n</ul>\n<strong>Disclaimer:</strong> In compliance with Federal Trade Commission (FTC) rules, Air Tech does not make individual statements (claims), entertain scientific, professional or personal opinions regarding these technologies, or their current or future applications. The following material is of general public access and is hereby provided for references only.\n\n \n<h4><strong><span style=\"font-size: 18pt; color: #000080; line-height: 1.5;\">Plasma-Generated Ozonolysis Testing Results</span></strong></h4>\n\"There is a possibility of 53 chemical substances, which are emitted from dry-cleaning clothing. Fully 2/3 of these chemicals are controlled and regulated by OSHA in industrial settings. These chemicals may be broken into eight groups, all but one of which react with a cold plasma ROS to form harmless compounds:\n<ul style=\"list-style-type: square;\">\n <li>Organic acids, Alcohols, Aldehydes, and keytones: Forms carbon dioxide, water vapor and releases oxygen</li>\n <li>Aromatic Compounds such as benzene and camphor: Forms carbon dioxide, water vapor and releases oxygen</li>\n <li>Aliphatic Compounds such as butane and mineral spirits: Forms carbon dioxide, water vapor and releases oxygen</li>\n <li>Chlorides such as Methylene chloride: Forms carbon dioxide, water vapor, CL2O, and releases oxygen after an intermediate Hypochlorite state</li>\n <li>Nitrogen Compounds such as Hydrogen Cyanide: Forms carbon dioxide, water vapor and releases nitrogen and oxygen</li>\n <li>Sulphur Compounds such as Ammonium Thiglycolate: Forms carbon dioxide, water vapor sulfur trioxide, and releases oxygen (and occasionally nitrogen)</li>\n <li>Other Alkylated Silicates and non Ionic detergents: Forms carbon dioxide, water vapor and releases oxygen</li>\n <li>Non reactive compounds such as calcium oxide, silica titanium oxides, etc.: No reaction.</li>\n</ul>\nWhile these chemicals are not inclusive of all the chemicals found in the home and work place, they are representative of the families of chemicals that do exist there. In addition, other tests have shown that common household bacteria, mold, mildew, and fungus are greatly reduced in typical household environments. Specifically, E-Coli, Salmonella Choleraesuis, Staphylococcus Aureua, Candida Albicans, and Aspergillus Niger have been shown to have dramatic reductions in population in independent laboratory tests.\"\n\n \n\n<span style=\"font-size: 18pt; line-height: 1.5;\">Plasma & Food-borne Pathogens: New Sterilization Technique For Medical & Food Industrial Processes. Original Source: American Society for Microbiology.</span>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\">\"98th General Meeting of the American Society for Microbiology</span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\">May 17-21, 1998, Atlanta, Georgia</span></p>\n<em>For more information on any presentation at the 98th General Meeting contact Jim Sliwa, Public Communications at jsliwa@asmusa.org.</em>\n\nReference #: 423/974-0286 - Paper P-101, Session 257-P\n\nWhile Americans enjoy a food supply that is among the safest in the world, food producers are continuously searching for new, state-of-the-art technologies that further improve food safety and quality. Food safety is a major concern of every sector of the food industry, with recent attention being focused on the meat and poultry industry. Current methods in reduction of microorganisms associated with food may pose problems with regard to residual food changes, the presence of resistant organisms, questions of cost and the necessity for elaborate facilities.\n\nTo answer the need of new methods in sterilization and pasteurization, a collaborative group of researchers at the University of Tennessee, Knoxville have developed the technology of room temperature sterilization using a one atmosphere uniform glow discharge plasma. An exploratory research program involves the Department of Electrical Engineering, Department of Microbiology, Textiles and Nonwovens Development Center, and Department of Food Science and Technology.\n\nThis proprietary University of Tennessee plasma process greatly reduces or eliminates high temperatures, toxic compounds, or harmful high-energy radiation associated with standard sterilization processes. In experiments performed thus far, atmospheric plasma is a very safe, gentle and rapid method (seconds) to reduce microbial loads on porous and non-porous surfaces. The sterilization process can be carried out at room temperature and complete killing was observed in conventional sterilization bags in less than one minute of exposure.\n\nProcess applications are currently being investigated is for use as a mechanism of pasteurizing foods and controlling foodborne pathogens such as E. coli O157:H7, Listeria monocytogenes, Campylobacter jejuni, and various Salmonella species. Experimental data indicate that thousands to millions of E. coli O157:H7 cells were killed in as little at 5 to 15 seconds of plasma when the cells were applied to the surface of the test material such as polypropylene. When the E. coli O157:H7 cells were embedded in a gel matrix, the exposure time was extended to 2 minutes or less. Such short exposure times may have little effect in the physical and organoleptic properties of food such as taste and texture but greatly reduce the bioburden present in foods.\n\nThis study was extended to include other microorganisms to demonstrate the efficacy of this method as a general sterilization procedure. Bacteria, bacterial spores, fungi and viruses on non-porous and porous surfaces that were exposed to the process. Microorganisms at levels of 10,000 to 10,000,000 were routinely killed in seconds to minutes even when the samples were placed in conventional medical sterilization bags.\n\nThis technology has the potential for development of more efficient and safer means of reducing the bioburden in foods and sterilization for industrial and medical industries. Another important area of our research currently being funded by the Air Force is a plasma process to decontaminate military equipment exposed to various biological and chemical warfare agents. This developing plasma reactor will be portable and capable of decontaminating a number of interior and exterior surfaces of planes, tanks, etc. and personal military equipment.\"\n\n<strong><span style=\"font-size: 18pt; line-height: 1.5;\">Selected Publications:</span></strong>\n<ul style=\"list-style-type: disc;\">\n <li>Dorai, R., K. Hassouni, and M. J. Kushner. Interaction between soot particles and NOx during dielectric barrier discharge plasma remediation of simulated diesel exhaust. Journal of Applied Physics 88:6060 (2000).</li>\n <li>Hwang, H. H., E. R. Keiter, and M. J. Kushner. Consequences of 3-dimensional physical and electromagnetic structures on dust particle trapping in high plasma density materials processing discharges. Journal of Vacuum Science and Technology A 16:2454 (1998).</li>\n <li>Kinder, R. L. and M. J. Kushner. Wave propagation and power deposition in magnetically enhanced inductively coupled and helican plasma sources. Journal of Vacuum Science A19:76 (2001).</li>\n <li>Zhang, D. and M. J. Kushner. A surface kinetics and plasma equipment model for Si etching by fluorocarbon plasmas. Journal of Applied Physics 87:1060 (2000).</li>\n <li>National Air Pollutant Emissions Estimates, 1900-1991, U.S. Environmental Protection Agency Publication No. EPA-454/R-92-013, October 1992.</li>\n <li>M.G. Grothaus, E.R. Fanick, D. Bannon, B.B. Bykowski, M. Grimes, \"Pulsed Corona Reactor for Efficient Destruction of Hazardous Gases,\" Southwest Research Institute Internal Research and Development Program, Project No. 10-9857.\"</li>\n <li>4. P. Burggraaf, \"Process Exhaust Treatment\" Semiconductor International, April 1993, pp. 44-47.</li>\n <li>\"Nonthermal Plasma Techniques for Pollution Control, Parts A & B\"; edited by B. Penetrante and S. Schultheis, NATO ASI Series G: Ecological Sciences, Vol. 34, Parts A and B, Springer-Verlag, Heidelberg, 1993.</li>\n <li>G. Wakalopulos, \"Electron Beam Array for Surface Treatment\"; May 9, 1995.</li>\n <li>M.G. Grothaus, R.K. Hutcherson, R.A. Korzekwa, R. Brown, M.W. Ingram, R. Roush, S. Beck, M. George, R. Pearce, and R. Ridgeway, \"Gaseous Effluent Treatment Using a Pulsed Corona Discharge\" Proceedings, 10th Institute of Electrical and Electronics Engineers Conference on Pulsed Power, Albuquerque, New Mexico, July 10-13, 1995.</li>\n <li>E.R. Fanick and B.B. Bykowski, \"Simultaneous Reduction of Diesel Particulate and NOx Using a Plasma\"; presented at the Society of Automotive Engineers Fuels and Lubricants Meeting and Exposition, Baltimore, Maryland, October 17-20, 1994</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Plasma Disinfection','','publish','closed','closed','','plasma-disinfection','','','2016-07-19 02:49:49','2016-07-19 02:49:49','',42,'http://digital2grow.net/tvdhkd/?page_id=57',0,'page','',0),(25356,1,'2016-07-19 02:50:07','2016-07-19 02:50:07','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"MDF 500\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nThrough funding provided by the US Department of Energy and National Security Administration’s Chemical & Biological National Security Program, under contract DE-AC04-94AL85000, Sandia National Laboratories developed MDF\'s original <a href=\"http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PALL&p=1&u=%2Fnetahtml%2FPTO%2Fsrchnum.htm&r=1&f=G&l=50&s1=6566574.PN.&OS=PN/6566574&RS=PN/6566574\">base formulation</a>.\n\nMDF-500In July 2000, SNL provided all field-of-use licenses to Modec, Inc. for its manufacture & commercial sale. SNL\'s base formulation technique (<a href=\"http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PALL&p=1&u=%2Fnetahtml%2FPTO%2Fsrchnum.htm&r=1&f=G&l=50&s1=6566574.PN.&OS=PN/6566574&RS=PN/6566574\">Hydrolysis</a>) was then enhanced to maximize detoxification and neutralization performance while protecting human health. Resulting solutions became powerful non-toxic, biodegradable, non-corrosive oxidizing agents capable of neutralizing various chemical & biological agents, including Mustard Gas, VX, Cyanides, Bacillus Anthracis AMES-RIID & ANR-1, Hydrogen & Sodium Cyanide, Butyl Lscyanate, Carbon Disulfide, Anhydrous Ammonia and Soman.\n\nModec\'s most applauded product, <strong>MDF-500</strong>, is a binary solution that becomes a hunter for fungi, bacteria and viruses. With a surfactant wetting out and surrounding the target with positively charged micelles, it draws oxidizing species directly into microbials. Since MDF\'s application techniques were developed with Federal funding, the U.S. Government has certain rights in the base formulation invention and deployment protocols. Thus, Full-strength formulas are available only to qualified professionals. Air Tech is an authorized applicator of MDF formulas, including foam, mist & fog applications.\n<h3><span style=\"color: #000080;\"><strong>MDF-500 Vs. Traditional Mold Remediation Containment</strong></span></h3>\nTraditional Mold Remediation ContainmentNanometer-sized Microbial Volatile Organic Compounds (MVOCs) are the source of many poor IAQ situations. Complex mixtures of potentially harmful volatile organic compounds (VOCs) including alcohols, ketones, aldehydes, aromatic & chlorinated hydrocarbons, sulfur-based compounds, amines, and even terpenes are known to be produced by MVOCs microbial metabolism (Burge, 1995). MVOCs can readily disperse throughout a building & potentially penetrate barriers such as vinyl wallpaper & polyethylene sheeting. MDF-500 can address these issues at Sub-Molecular Level, operating as a continuous Full-Site mitigation mechanism during mold remediation activities.\n\n<span style=\"font-size: 14pt;\">For custom detoxification services in MD/VA/DC, please contact Air Tech: <span style=\"color: #ff0000;\">240-388-0030</span></span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','MDF 500','','publish','closed','closed','','mdf-500','','','2016-07-19 02:50:07','2016-07-19 02:50:07','',0,'http://digital2grow.net/tvdhkd/?page_id=60',0,'page','',0),(25357,1,'2016-07-19 02:50:24','2016-07-19 02:50:24','','References','','publish','closed','closed','','references','','','2016-07-19 02:50:24','2016-07-19 02:50:24','',0,'http://digital2grow.net/tvdhkd/?page_id=61',0,'page','',0),(25358,1,'2016-07-19 02:50:47','2016-07-19 02:50:47','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Contracting Experience\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nATI has performed numerous services for residential, commercial, industrial and institutional clients, as well as for other environmental firms addressing environmental and safety issues since 1994. Due to the nature of our services and the confidentiality we offer to our clients and contracting partners, only a few references can be published at this time.\n\nThe following list is published with our client\'s permission. However, the client reserves the right to refuse to provide details about the services provided, or the nature of the circumstances for which our services were requested.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Environment\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><strong><span style=\"font-size: 18pt; color: #000080;\">Environmental Investigation/Testing</span></strong></h3>\nBryan Davis\n926 Wampler Rd - Middle River, MD 21220\nTel: 443-604-8869\n\nDCX Inc - Diamond Cab\n1100 Q Street NW - Washington, DC 22009\nContact: Ralph Waller Tel: 202-387-4011\n\nEric Blow\n1565 Brookshire Court - Reston, VA 20190\nTel: 703-668-1597\n\nRobin Smith\n8914 River Island Drive - Savage, MD 20763\nTel: 301-332-0757\n\n[/et_pb_text][et_pb_text admin_label=\"Commercial\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><span style=\"color: #000080; font-size: 18pt;\"><strong>Commercial/Institutional Clients</strong></span></h3>\nThe World Bank\n1818 H St. NW - Wash. DC 20433\nContact: Michael DeSouza - Gen. Srvices Dept.\n\nU.S. Dept. Of The Interior\n1849 C St. NW #MS-1324 - Wash. DC 20240\nContact: Kate A. McKenna - Contract Specialist\n\nIBM\n6710 Rockledge Drive - Bethesda, MD 20817\nContact: Patrick Vasold, Solutions Manager\n\nSodexho Marriott\n1030 W Chicago Ave #200 - Chicago, IL 60622\nContact: Jean Crudup-Snell - Services\n\nCare Tech Industries, Inc.\n5020 Seminole Blvd - St. Petersburg, FL\nContact: John O. Shannon, President\nTel: 800-700-3327\n\nThe Royal Embassy Of Saudi Arabia\n605 New HAmpshire Avenue NW - Washington, DC 20036\nContact: Shahla Izadi\n\nClarke County Public Schools\n309 W. Main Street - Berryville, VA 22611\nContact: Larry W. Hardesty, Dir. Of Maintenance\n\nDaston Corporation\n2010 Corporate Ridge #750 - McLean, VA\nContact: Peter J. Caylor - 703-306-6883\n\nThe Corradino Group\n4055 NW 97Th. Avenue - Miami, FL 33178\nContact: Frederick C. P\'Pool - 954-777-0044\n\n[/et_pb_text][et_pb_text admin_label=\"ENvironment\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><span style=\"color: #000080;\"><strong>Environmental Management Services</strong></span></h3>\nCharles O\'Hara\n2144 Old Dairy Farm Rd. - Gambrills, MD 21054\nTel: 410-987-5357\n\nDaniel Fritz\n21055 Branchwood Way - Sterling, VA 21064\nTel: 703-444-0654\n\nParrish Evans\n9904 Killarney Way - Gaithersburg, MD 20688\nTel: 301-987-8895\n\nBeverly Crawford\n437 Christopher Avenue # T-2 - Gaithersburg, MD 20865\nTel: 301-366-7630\n\n[/et_pb_text][et_pb_text admin_label=\"Commercial\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><span style=\"color: #000080;\"><strong>Commercial Clients</strong></span></h3>\nThe Neighborhood Development Company\n1003 K St. NW - Wash. DC 20001\nTel: 202-347-7880\nContact: Sussane Mulbah, Director\n\nMorgan State University\n1700 E. Cold Spring Lane - Baltimore, MD 21251\nContact: Joseph Popovich, Director\nTel: 443-885-3372\n\nBiosynexus Inc.\n9119 Gaither Road - Gaithersburg, MD 20877\nContact: Paul Choma, Director\nTel: 301-987-1169\n\nS. R. Inc.\n1615 Manchester Lane NW - Wash. DC 20012\nContact: Dick Clark/Andrew Mayer\n\nSilver, Freedman & Taff, L.L.P.\n1700 Wisconsin Avenue NW - Washington, DC 20007\nContact: Lamont Mahone Tel: 202-295-4500\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Home\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><span style=\"color: #000080;\"><strong><span style=\"font-size: 18pt;\">Home Inspections / Building Physical Needs</span></strong></span></h3>\nSally Hamidi\n1437 Rhode Island Ave NW - Wash. DC 20005\nTel: 202-321-3490\n\nSara Buchanan\n6075 Majors Lane - Columbia, MD 21045\nTel: 301-437-3737\n\nMr. & Mrs. Becerra\n9038 Miles Place - Manassas, VA 20110\nGabriela Rivas, Realtor\nRE/MAX - Tel: 202-744-6990\n\nTed Nguyen, Realtor\nColdwell Banker - 703-524-2100\n\nAngel Ribulotta, Realtor\nCentury 21 - 301-871-3606\n\nLuis Cordero/Ada Calero, Realtors\nCamelot International - 703-207-1700\n\nPatricia Henryk, Real Estate Broker\nPat Henryk Real Estate Inc.\n\nJoe Faraji, Realtor\nWeichert Realtors - 301-263-0700\n\nReginal E. Thomas, Financial Advisor\nMorgan & Stanley - 800-676-3376\n\nLong & Foster Realtors\nAna Irazabal - 703-813-8214\nPamela Key - 301-434-8900\nFeriel Massri - 301-907-7600\nEileen Rogers - 202-362-8743 Ext 231\n\nS.F Zaru, Architect - S. Zaru & Associates\n3159 Smart Heiress Dr. - Mount Airy, MD 21771\n\nDCI Group, LLC\n1133 21St. Street NW # M100 - Washington, DC\nComntact: Brandi Tatlisu, Director - 202-546-4242\n\nARQUITECTONICA\n550 Brickell Avenue Suite 200 - Miami, FL 33131\nContact: Laurinda Spear, FAIA - 305-372-1812\n\nLaw Offices Of Ann Shaw, PA\n212 W. Main Street - Salisbury, MD 21801\nContact: Jefrey White, Attorney At Law\n\nUnivision TV\n9405 NW 41St. Street - Miami, FL 33178\nContact: Enrique Cuervo, Director Of Facilities\n\n[/et_pb_text][et_pb_text admin_label=\"Environment consulting\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n<h3><strong><span style=\"color: #000080;\">Environmental Consulting Services</span></strong></h3>\nVMTJBJ - J.B. Johnson Nursing Center\nContact: Ulysses Cooper - Engineering Dept.\nTel: 202-535-2115\n\nFriendship School\n6220 Georgetown Blvd. - Eldersburg, MD 21784\nContact: Teresa Aukney, Director - 410-552-6880\n\nInternational Engineering Corporation\n3609 Astoria Road - Kensington, MD 20895\nContact: Dr. Victor B. Rebaza, PhD., PE - Tel: 301-946-4406\n\nEnergy & Environmental Consultants, Inc.\n2601 Stanley Dr. - Baldwin, MD 21013\nTel: 443-804-4520 Fax: 410-692-9349\nContact: Kathleen Fox\n\nXact Teleservices Solutions\n320 Main Street - Laurel, MD 20707\nContact: Julie Thorne, Director\n\nLanghart Communications\n1200 19Th. St NW # 400- Wash. DC 20036\nContact: Kari Lidgett\n\nICI- INCLAIMCO\n17463 Jef. Davis Hwy. - Dumfries, VA\nContact: Sandy Marrocco, Contract Specialist\nTel: 703-441-3644 Fax: 703-441-3647\n\nBOB\'S BMW\n10720 Guilford Road - Jessup, MD 20794\nTel: 1-800-BMW-BOBS Fax: 301-776-2338\nContact: Bob Henig, owner\n\nPEPCO Building Services\n25279 Pleasant Valley Road - Chantilly, VA 20152\nTel: 703-471-6310\nContact: Jay Harper/Richard Roldan/James Beach\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contracting Experience','','publish','closed','closed','','contracting-experience','','','2016-07-19 02:50:47','2016-07-19 02:50:47','',25357,'http://digital2grow.net/tvdhkd/?page_id=64',0,'page','',0),(25359,1,'2016-07-19 02:51:15','2016-07-19 02:51:15','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"Air Duct Cleaning References\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"|||on|\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nSince its inception in 1999, Air Tech\'s Air Duct & HVAC Cleaning division has successfully completed over 14,500 residential, commercial and institutional projects with a consistent 92% customer satisfaction record. Remaining percentage accounts for project halt/cancellations due to inclement weather, schedule changes and; a few unforeseen circumstances that were beyond Air Tech\'s capabilities and/or control (should you find the perfect company, let us know).\n\nWe respect our client\'s privacy. Thus, would like to express our gratitude to all whom willfully pledged to be listed below.\n\nPlease note that\n\n(1) Clients\' phone numbers are available upon request;\n\n(2) May reserve the right to refuse to provide details about services provided and;\n\n(3) Listings may be up to 5 Years old. Additional references may be found at the following consumer\'s guide web sites: <a href=\"http://www.angieslist.com/\">Angie\'s List</a> | <a href=\"http://www.checkbook.org/\">Consumer\'s Checkbook</a>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Air Duct Cleaning References','','publish','closed','closed','','air-duct-cleaning-references','','','2016-07-19 02:51:15','2016-07-19 02:51:15','',42,'http://digital2grow.net/tvdhkd/?page_id=66',0,'page','',0),(25360,1,'2016-07-19 02:51:43','2016-07-19 02:51:43','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"200px\" bottom_padding=\"200px\"] [et_pb_slide heading=\"REQUEST A QUOTE\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\n\nFill out the form below to get a free quote\n\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"696px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"mrosette@rcn.com\" use_redirect=\"off\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Requirement\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Request a Quote','','publish','closed','closed','','request-a-quote','','','2016-07-19 02:51:43','2016-07-19 02:51:43','',0,'http://digital2grow.net/tvdhkd/?page_id=69',0,'page','',0),(25361,1,'2016-07-19 02:51:49','2016-07-19 02:51:49','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"150px\" bottom_padding=\"150px\"]\n\n[et_pb_slide heading=\"Contact Us\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" body_font_size=\"20\" body_font_size_tablet=\"20\" body_font_size_phone=\"20\"]Serving Maryland, No. Virginia & Washington D.C.\n\n[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"802px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nHave a query about our services? Call us directly or fill the form in this page. We will get back to you soon.\n\n<strong>Tel: (240) 388-0030</strong>\n\n<strong>Fax: (866) 603-6959</strong>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"mrosette@rcn.com\" use_redirect=\"off\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','publish','closed','closed','','contact-us','','','2016-07-19 02:51:49','2016-07-19 02:51:49','',0,'http://digital2grow.net/tvdhkd/?page_id=70',0,'page','',0),(25362,1,'2016-07-19 02:52:25','2016-07-19 02:52:25','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" top_padding=\"150px\" bottom_padding=\"150px\"] [et_pb_slide heading=\"FAQs\" background_image=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Wyoming-Background.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" body_font_size=\"20\" body_font_size_tablet=\"20\" body_font_size_phone=\"20\" body_line_height=\"1.75em\" body_line_height_tablet=\"1.75em\" body_line_height_phone=\"1.75em\"]Air duct cleaning facts, air duct cleaning myths + tips & tricks to pick or kick HVAC cleaning firms[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"1st para\" background_layout=\"light\" text_orientation=\"justified\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nBecause HVAC cleaning is not yet fully regulated, most people are unfamiliar with the processes involved, and less prepared to distinguish a reliable service provider. Thus, many companies take advantage by up-selling supposedly integral tasks; operate illegally, use sub-standard equipment or untrained subcontractors, or worse; cut corners in cleaning procedures to book more jobs per day.\n\nAccording to the BBB, these \"blow-n-go\" companies (as they have come to be known) are often attractive to unwary consumers because of enticing low prices, but generally create more problems than what they solve. In addition to professional uncertainty, widespread issues are:\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/ductcleaning-pack.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"802px\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Bullets\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<ul style=\"list-style-type: square;\">\n <li>Bait & Switch tactics, or SCAMS. <a href=\"http://www.youtube.com/watch?v=rNu6u8KiA-o\">Video Reference 1</a> | <a href=\"http://www.youtube.com/watch?v=pT4WKwfBu18&NR=1\">Video Reference 2</a></li>\n <li>Poor Craftsmanship, or NEGLIGENCE.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"2nd para\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"16\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] So when all claim to be the best, and no one knows who\'s who until is too late, Air Tech comes forward in good faith. We\'re a local enterprise, so before a client, you are (to us) a valued neighbor, and with it comes all due respect. Let us then address these gray areas of the trade, explain how things must be done, help you make an informed decision and; should you wish to go ahead, how to prepare your home & what to expect, so nobody gets hurt. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f7f7\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"130px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"What is air duct cleaning, really?\" title=\"What is air duct cleaning, really?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"] The term \"air duct cleaning\" generally refers to the work performed by companies that clean HVAC systems, which is a misnomer because it implies that only ductwork is cleaned. The term \"Heating, Ventilation & Air Conditioning (HVAC) system cleaning defines best what Air Tech does, which is the comprehensive cleaning of all existing components of a forced air system. [/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"What\'s the difference?\" title=\"What\'s the difference?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"] We also clean HVAC units, and like No one else does. Because these deliver 3 functions (heating, ventilation & air-conditioning) to provide thermal comfort & acceptable indoor air quality, even manufacturers recognize the importance of this task. Also, EPA clearly states: \"It makes nonsense to clean ductwork if air handlers are left untouched. Air ducts deliver exactly what an air handler drives, and if the ductwork is dirty, so are the air handler\'s guts\". [/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"How do I find out if my HVAC unit actually needs cleaning?\" title=\"How do I find out if my HVAC unit actually needs cleaning?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\nAll air handlers -or HVAC units- are accessible for inspection by design, so power off the unit first, and then remove its front cover panels to take a look. A GAS furnace is depicted to the left. Note the blower fan at the bottom and; the air filter enclosure to the side. By removing the air filter, part of the return ductwork will also become exposed. Since the blower fan is the heart of your system, it should be inspected first. If you see anything like in the pictures below, then consider having the HVAC unit cleaned along with the air ducts.\n\nLeft side pictures denote excessive dust & debris, which tells you there\'s a problem with the air filter. The ones to the right denote excessive rust, which means there\'s a moisture problem that needs immediate attention.\n\nKeep in mind that when the system is on, what\'s in the blower is also in the air that you breathe, so ..you be the judge. Also, of note is that if the blower fan is dirty, so is the rest of the system, and blower fans cannot be cleaned while in place. They MUST be removed & cleaned outdoors, and this task alone takes 1 hour or so.\n\nEvaporator CoilYour evaporator, or A/C cooling coil looks like an automobile\'s radiator and it usually sits above the furnace. You should know that dirt & water socialize in there, and yet is the most neglected of all HVAC parts. That\'s because periodic servicing takes soft hands & a fair amount of patience, and for many HVAC maintenance contractors ..patience is not worth a dime. Inspecting A/C coils in gas furnaces can be tricky but again, if the blower fan is dirty, so is the coil\'s inner side.heat pump\n\nHeat pumps are far more accessible. When you remove the cover panel the blower fan is totally exposed, and also most of this infamous coil, which unlike that of a gas furnace, it actually faces the incoming airflow. Thus, it is prone by design not only to do its own, but also the air filter\'s job. So-please, pay special attention to it.dirty and rusty cooling coil\n\ndirty cooling coilIf it looks like in the pictures to the sides, have it cleaned ASAP. Moistened dirt build-up on its surfaces work pretty much like a hair clog in your sink. It can restrict airflow up to a point in which ice build-up may occur, blower fans choke, fan motors overheat or burn, or may cause blower surfaces & surrounding areas to get filled with mold. If that may be the case, you\'ll find out at first sight.\n\nCleaning coils & blower fans are tedious tasks, take specialty tools, character, know-how & patience to do it right; or even licensing, depending on where you are. And this is what \"blow-n-goers\" Feast off, Cheat on, or Skip at all.\n\nConsumer\'s Countermeasures: Seeing for yourself the condition of your HVAC unit Before you call anyone; knowing what needs to be cleaned and; saying that you want -and will- closely inspect these key HVAC parts along with the ductwork at the time of booking may cause certain companies to suddenly experience booked up syndrome, or please hold attacks. Have some coupons? Go ahead now - Try One Out! :)\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"Should Licensed Contractors offer options?\" title=\"Should Licensed Contractors offer options?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\nIf regulations apply, then the answer is no. According to the EPA, if an HVAC system is to be cleaned, is everything from top to bottom, no piece should be left behind; but sure enough, there are circumstances in which a licensed contractor might choose to accommodate your personal needs at a reasonable price, but not without making sure that you understand that while performing a limited task, cannot assume liability for anything else. If no regulations apply and; should you agree to the facts in advance, then you may choose from two half-way options:\n<ul style=\"list-style-type: square;\">\n <li>Air Duct Cleaning - Meaning, all of the ductwork, vents & grilles, but nothing else than what distributes airflow.</li>\n <li>Air Handler or HVAC Cleaning - Meaning, all of the heating & cooling machinery, but none of the ductwork.</li>\n</ul>\nBut until your local authorities draw the line & set apart a custom service from a half ... job, anything less than a full-service is not worth the try. Regulations or not, EPA still makes sense, and we stand by the authorities 100%.\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"Are there any health benefits that come from HVAC cleaning?\" title=\"Are there any health benefits that come from HVAC cleaning?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"] None that we, as contractors, are legally allowed to discuss, advertise, or assume any credit for. If you \"catch\" anyone making health claims, not only scratch it off the list, but also report it to the EPA or BBB at once. However, it is well known that dirty air ducts offer undisturbed shelter, numerous food sources and therefore, a near perfect breeding environment for fungi, bacteria and viruses. If simple tasks like washing your hands, bagging your trash or wiping your kitchen counter can, in fact, prevent about 4 diseases, imagine what cleaning your air conveyance system might add to the list! [/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"Does air duct cleaning eliminate dust, pollen or mold?\" title=\"Does air duct cleaning eliminate dust, pollen or mold?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"] Never did, never will, and we\'re glad to tackle this myth - Mold spores and pollen are a part of the natural environment at all times, and we (humans) are for the most part the source of indoor dust. Any duct cleaner that use such an extreme word cannot be trusted. What air duct cleaning does is remove EXCESS accumulation of that stuff. By doing so, it minimizes the widespread of it as the HVAC system operates, and thus improve the indoor environment to a certain degree. But it won\'t stop wind from blowing, trees from growing, or you from shedding skin. [/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"Can air duct cleaning alone reduce home energy bills?\" title=\"Can air duct cleaning alone reduce home energy bills?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\nVery little, if at all. That is, of course, under normal circumstances. Popular exceptions include liner insulation detachment (well known for blocking dampers), small objects (pet/children toys, cans or even tennis balls) that have fallen through floor mounted vents (could block a supply branch), or when excessive buildup begins to detach, causing frequent clogs on the air filter, which chokes the system\'s airflow.\n\nOtherwise, the key to optimal HVAC performance lays in the air handling (or HVAC) unit itself. Research has clearly shown that removing airflow-restricting debris from sensitive HVAC components such as cooling coils & blower fans does, in fact, bring the system\'s energy efficiency <a href=\"http://digital2grow.net/tvdhkd/services/hvac/\">back to near factory specs</a>.\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"Why are there so many advertisement consumer warnings?\" title=\"Why are there so many advertisement consumer warnings?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"] In fact, <a href=\"http://www.ductbusters.com/ground_breaking_survey.htm\">nearly 60%</a> of service providers only clean air ducts, and most for $400 or less. Problem is that air duct cleaning alone is a limited task, and the act of bringing up health issues while implying the benefits of the comprehensive scope of work to promote the service is misleading, or deceitful. Many offer fog sanitation, edge sealants, UV lights, electronic air filters or other \"miracle\" products to cover their tracks, but if you look closely at the facts, all that they do is just clean air ducts, sell toys & add-ons. [/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"Why are there so many advertisement consumer warnings?\" title=\"Should I have my air ducts sanitized?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"] Although it sounds like it makes sense, biocide fog sanitation is NOT a \"routine\" procedure. It is not uncommon for fungus or bacteria to be present in dirty ductwork, and it can all be removed using the appropriate equipment. Also, biocides application is limited to non-porous materials only; cannot be applied to liner insulated and/or fiberboard ducts. If in despite the facts you choose to have your ductwork sanitized, make sure to obtain a copy of the biocide\'s MSDS. We use <a href=\"http://digital2grow.net/tvdhkd/mdf-500/\">MDF-500</a> to sanitize air handlers - but you better give us a darn good reason to spray it in ductwork. [/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"How should air ducts be cleaned?\" title=\"How should air ducts be cleaned?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\nThe safest & most effective way to clean air ducts is to employ controlled source removal methods of cleaning, as defined by NADCA Standards. Large or industrial systems allow contractors to enter and crawl -or even walk- inside the system\'s main trunks and key parts, for which various source removal techniques may apply; Not-So On Smaller Systems.\n\n<img class=\"size-medium wp-image-25347 alignleft\" src=\"http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/ductcleaning-pack-300x225.jpg\" alt=\"ductcleaning pack\" width=\"300\" height=\"225\" />Air Tech\'s Professional Air Duct Cleaning SystemLight commercial & residential ductwork must be cleaned following a procedure called the Push/Pull Method. Meaning, the contractor shall place the entire system under negative pressure through the use of a powerful Big-Mouthed Vacuum Machine. While the vacuum massively draws air backwards, agitation devices are inserted into all branches & main trunks to dislodge & sweep all debris towards it, and eventually out of the system. All authorities agree, vacuum power is everything.\n\nNADCA compliant equipment can be distinguished by its vacuum\'s impressive SIZE, airflow, multi-stage HEPA filter banks & various independent agitation devices.\n\nBut big or small, red or blue, equipment does not clean air ducts - People do. And if air ducts remain dirty, it is not the equipment\'s fault. Here lays the tremendous importance of INSPECTING the contractor\'s work at the time of service. If the contractor cannot demonstrate its performance upon request at such critical time, then you may refuse to pay the contractor until you verify the quality of its work.\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"How often should residential HVAC systems be cleaned?\" title=\"How often should residential HVAC systems be cleaned?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\nEPA recommends that you should consider this task not on periodic, but on \"as needed\" basis, and we certainly agree. Frequency of cleaning may depend on several factors, one of which is preference of the homeowner. Some factors of influence while considering more frequent cleanings are:\n<ul style=\"list-style-type: square;\">\n <li>Smokers, intensive cooking, high occupancy/traffic or child care activities in the household</li>\n <li>Pets that shed lots of dander, highway or homebuilding projects nearby, etc.</li>\n</ul>\nBut rest assured, nothing will make your system last longer & cleaner than a good quality, pleated, properly sized, carefully installed air filter. What\'s The Trick? Make sure there is no airflow by-pass around the air filter framing.\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"What criteria should I use in selecting a Residential HVAC cleaning contractor?\" title=\"What criteria should I use in selecting a Residential HVAC cleaning contractor?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n<ul style=\"list-style-type: square;\">\n <li>Make sure the company is Legally Established and listed with your local <a href=\"http://www.bbb.org/washington-dc-eastern-pa\">Better Business Bureau</a>.</li>\n <li>Verify that the company cleans key HVAC parts such as A/C coils & blower fans, ask how they do that.</li>\n <li>Ask how the company will show you all improvements, and if there\'s a fee for it. (avoid will-mail DVD\'s)</li>\n <li>Find out what\'s the contractor\'s policy regarding accidental equipment damage during the cleaning process.</li>\n <li>Ask how many technicians will be on site to perform the work. True HVAC cleaning is not a one-man job.</li>\n <li>Get a list of <a href=\"http://digital2grow.net/tvdhkd/services/air-duct-cleaning-references/\">references</a>, make sure to call those nearest to you, check with neighbors for a word of mouth.</li>\n</ul>\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_toggle admin_label=\"What criteria should I use in REJECTING a contractor upon arrival?\" title=\"What criteria should I use in REJECTING a contractor upon arrival?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n<ul style=\"list-style-type: square;\">\n <li>When you see an un-marked truck, or a van with magnetic signs. Is it actually them, or just a \"sub\"?</li>\n <li>If the duct cleaning equipment looks like it fits in the trunk of a car (please read BBB report #3)</li>\n <li>If it tries to bring any heavy equipment inside before inspecting & testing your HVAC system.</li>\n <li>If it tries to up-sell any task or option that you didn\'t discuss or asked about at the time of booking</li>\n <li>If it recommends any HVAC upgrades or costly repairs right off the bat, before even testing the system</li>\n <li>When tardiness or sudden scheduling issues arise after appointment time has passed. That\'s GROSS.</li>\n <li>If it fails to produce any air duct inspection tools upon request (bore scope, video probe, camera, etc.)</li>\n <li>When technicians don\'t look properly dressed for the job, or seem too \"casual\" for business hours.</li>\n <li>If the cleaning equipment looks dirtier than your ducts. Keep in mind, you have the right to inspect it!</li>\n <li>When it talks about mold-related health issues while inspecting the furnace. (a scare tactic for else)</li>\n <li>When it says that the house - or the system - is bigger than expected. Big red flag. Send it HOME!</li>\n</ul>\n[/et_pb_toggle][et_pb_toggle admin_label=\"How long should it take to clean a typical residential air conveyance system?\" title=\"How long should it take to clean a typical residential air conveyance system?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\nWhen done by the book, it takes from 3 to 7 hours per system, depending on system\'s age, location, size & duct-work configuration. That is, of course, under ideal conditions. This means\n\n(1) Fairly good access to all systems components;\n\n(2) Uninterrupted worker\'s pace, (\n\n3) Enough power to operate all equipment and most important; (\n\n4) A friendly & respectful environment under the circumstances.\n\n<a href=\"http://digital2grow.net/tvdhkd/services/air-duct-cleaning/\">Learn more</a>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"] [/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Getting prep\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"36\" text_line_height=\"1.8em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Getting Prepared for your Cleaning [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"16\"]\n\nAir duct cleaning is done by appointment only, and for very good reasons. Although IT IS NOT a \"messy\" process, it involves a series of disruptive tasks that may interfere with traditional business or daily life, and thus cause a myriad of upsetting situations if the site -or occupants- are not prepared for it. Let\'s start with:\n\n<strong>Intrusive Traffic</strong> - In order to clean an HVAC system, a service area reconnaissance or walkthrough must be performed first, and permission will be asked for at the time. If allowed to, crew then considers full access to all HVAC service areas granted and \"project started\" from that point on. Personal activities (showers, breast-feeding or else) should be avoided to prevent embarrassing situations until project completion.\n\n<strong>Utilities Shut-Down</strong> -\n\n(1) Your HVAC system will be turned off, which may cause significant changes to your indoor environment;\n\n(2) Accessories hard wired to other electrical branches must also be powered down.\n\n(3) To remove humidifiers, crew may have to cut water supply and;\n\n(4) To clean heat exchangers, gas lines may be closed too. We all have a life to live and yes, dinner must be cooked - so unless you wish to inspect their work, it would be in your best interest not to distract, interfere with, or halt the crew.\n\n<strong>Noise</strong> - An industrial strength vacuum machine hooked to your home\'s duct-work, an air compressor near your doorsteps and 2 guys hauling 35 Ft. long rotary brush snakes throughout every room\'s vents will not go unnoticed. Naps, conference calls, book or song writing -or perhaps meditation- would certainly be out of the equation.\n\n<strong>Tampering</strong> with personal items to access grilles or hidden vents is often inevitable, and you should expect such occurrence. Accidents happen, but most can be avoided - In this case, it is your duty to secure lose or valuable items in narrow hallways & near HVAC vents to minimize the odds. Key items include delicate ornaments, antique furniture, toys, clothing, power cords & electronics within a 4 Ft. radius from a vent. Keep in mind, crews are there to perform a specific task, and although moving aside a few items may be OK with them, it is technically outside their scope of work. Thus, cannot be held responsible if anything brakes, gets misplaced or not moved back at all.\n\n<strong>Heavy Moving & Lifting</strong> - Ceiling-mounted vents are often a challenge because heavy furniture (beds, sofas, pianos, etc.) underneath may need to be temporarily removed to make room for ladders. Also, wall & floor vents may be obstructed by heavy desks, bookshelves or entertainment centers. If this may be your case, please take the appropriate measures in advance, or make sure to discuss heavy furniture lifting at the time of booking. A dedicated moving crew may be more expensive, yet may save you a week\'s worth of backaches.\n<h3><span style=\"font-size: 24pt; color: #ff0000;\">Liability Exclusions</span></h3>\n<strong>Paint & Drywall Chipping</strong> - Water based paint does not adhere to metal as good as it does to drywall and; some vents are glued to drywall for whatever reason. In despite of how careful crews may be, it is possible that; if supply vents or return grilles are glued or painted over, minor damage may occur upon their forced removal. Because vents & grilles cannot be glued or water-based painted by code, neither crew or company can assume liability.\n\n<strong>Concealed Wiring Damage</strong> - Many contractors discretely run thermostats, phone, cable or satellite video, alarms, and even audio wiring through the inside of older home\'s ductwork, which is against building codes. And yes, this may go undetected for many years, and further concealed by heavy debris accumulation, which often makes it undetectable to inspection scopes or cameras. So unless the duct cleaning contractor is notified in advance, cannot assume liability and/or be held responsible for accidental inner-ductwork wiring damage.\n<h4><span style=\"font-size: 18pt; color: #ff0000;\">Additional Considerations</span></h4>\n<ul style=\"list-style-type: square;\">\n <li><strong>Hovering</strong> - Air Tech\'s crews will proudly show you what\'s being done. Just don\'t get too close to them while they\'re doing it. In addition to annoying, toe-stepping & head-bumping can be painful.</li>\n <li><strong>Shoes</strong> - OSHA rules, and under no circumstances HVAC workers are to take off their shoes. High amperage equipment, hidden power lines and metal duct-work are a constant risk for worker\'s electrocution and; rotary and/or compressed-air agitators can generate harmful electrostatic discharges. We will however, wear cloth booties to protect white or religious use carpeting, and use drop clothes to lay our tools over brand new flooring. But-please, don\'t ask the crew to wear booties on stairways, hardwood, ceramic or vinyl floors; it\'s a Slip & Fall waiting to happen, it is against OSHA regulations, and if you look at it in perspective, it\'s not worth forcing circumstances - it makes you responsible for injuries or damage! Safety First, God Bless OSHA.</li>\n <li><strong>HVAC Compartment Stuffing</strong> - Our biggest, heaviest & most powerful tool (negative air machine) will have to be placed at two different points next to your HVAC unit, and crew needs to focus on what they do best. A little space around the air handler will allow technicians to work at a much faster pace - So spend 10 minutes, clear some clutter, Save 2 Hours Off Your Day!</li>\n</ul>\nFinally, keep in mind that every home or building is unique in many ways, and so will be your air conveyance cleaning project. In despite the odds, our crews grow wiser and more observant with every job, and are always prepared to back-track in a second, should human factors or special needs may arise. Hoping we may have the opportunity to serve you soon, we\'ll be delighted to answer any other questions or be of assistance in any other way. Keep in mind, we\'re just a phone call away! <strong><span style=\"color: #ff0000;\">240-388-0030</span></strong>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FAQs','','publish','closed','closed','','faqs','','','2016-07-19 02:52:25','2016-07-19 02:52:25','',0,'http://digital2grow.net/tvdhkd/?page_id=73',0,'page','',0),(25370,1,'2016-07-22 11:37:42','2016-07-22 11:37:42',' ','','','publish','closed','closed','','25370','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/25370/',24,'nav_menu_item','',0),(25382,1,'2016-07-19 08:29:06','2016-07-19 08:29:06','','ductcleaning pack','','inherit','open','closed','','ductcleaning-pack','','','2016-07-19 08:29:06','2016-07-19 08:29:06','',25362,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/ductcleaning-pack.jpg',0,'attachment','image/jpeg',0),(25383,1,'2016-07-20 18:33:05','2016-07-20 18:33:05','','Cover pic','','inherit','open','closed','','cover-pic','','','2016-07-20 18:33:05','2016-07-20 18:33:05','',0,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Cover-pic-e1469039631238.jpg',0,'attachment','image/jpeg',0),(25384,1,'2016-07-20 19:36:21','2016-07-20 19:36:21','','VA mold license','','inherit','open','closed','','va-mold-license','','','2016-07-20 19:36:21','2016-07-20 19:36:21','',25354,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/VA-mold-license.jpg',0,'attachment','image/jpeg',0),(25385,1,'2016-07-20 19:39:10','2016-07-20 19:39:10','','Moldy_room','','inherit','open','closed','','moldy_room','','','2016-07-20 19:39:10','2016-07-20 19:39:10','',25352,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Moldy_room.jpg',0,'attachment','image/jpeg',0),(25386,1,'2016-07-20 19:39:13','2016-07-20 19:39:13','','PPI','','inherit','open','closed','','ppi','','','2016-07-20 19:39:13','2016-07-20 19:39:13','',25352,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/PPI.jpg',0,'attachment','image/jpeg',0),(25387,1,'2016-07-21 03:07:45','2016-07-21 03:07:45','','trashed home','','inherit','open','closed','','trashed-home','','','2016-07-21 03:07:45','2016-07-21 03:07:45','',25353,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/trashed-home.jpg',0,'attachment','image/jpeg',0),(25388,1,'2016-07-21 03:38:46','2016-07-21 03:38:46','','vac1a','','inherit','open','closed','','vac1a','','','2016-07-21 03:38:46','2016-07-21 03:38:46','',47,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/vac1a.gif',0,'attachment','image/gif',0),(25389,1,'2016-07-21 03:52:48','2016-07-21 03:52:48','','CC_Logo','','inherit','open','closed','','cc_logo','','','2016-07-21 03:52:48','2016-07-21 03:52:48','',47,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/CC_Logo.gif',0,'attachment','image/gif',0),(25390,1,'2016-07-21 03:56:13','2016-07-21 03:56:13','','birdguard','','inherit','open','closed','','birdguard','','','2016-07-21 03:56:13','2016-07-21 03:56:13','',47,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/birdguard.gif',0,'attachment','image/gif',0),(25391,1,'2016-07-21 04:03:33','2016-07-21 04:03:33','','HEPA_Air_Machine','','inherit','open','closed','','hepa_air_machine','','','2016-07-21 04:03:33','2016-07-21 04:03:33','',46,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/HEPA_Air_Machine.jpg',0,'attachment','image/jpeg',0),(25394,1,'2016-07-21 04:28:55','2016-07-21 04:28:55','','Ductworksys','','inherit','open','closed','','ductworksys','','','2016-07-21 04:28:55','2016-07-21 04:28:55','',44,'http://www.air-techinternational.com/airtech/wp-content/uploads/2016/07/Ductworksys.jpg',0,'attachment','image/jpeg',0),(25396,1,'2016-07-22 11:39:34','2016-07-22 11:39:34','','Cleaning','','publish','closed','closed','','cleaning-2','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/cleaning-2/',6,'nav_menu_item','',0),(25397,1,'2016-07-22 11:39:34','2016-07-22 11:39:34','','Mold','','publish','closed','closed','','mold-2','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/mold-2/',10,'nav_menu_item','',0),(25398,1,'2016-07-22 11:39:35','2016-07-22 11:39:35','','Home Repair','','publish','closed','closed','','home-repair-2','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/home-repair-2/',17,'nav_menu_item','',0),(25399,1,'2016-07-22 11:39:35','2016-07-22 11:39:35','','Construction','','publish','closed','closed','','construction-2','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/construction-2/',18,'nav_menu_item','',0),(25400,1,'2016-07-22 11:39:35','2016-07-22 11:39:35','','Restoration','','publish','closed','closed','','restoration-2','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/restoration-2/',19,'nav_menu_item','',0),(25401,1,'2016-07-22 11:39:36','2016-07-22 11:39:36',' ','','','publish','closed','closed','','25401','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/25401/',2,'nav_menu_item','',0),(25402,1,'2016-07-22 11:39:36','2016-07-22 11:39:36',' ','','','publish','closed','closed','','25402','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/25402/',20,'nav_menu_item','',0),(25403,1,'2016-07-22 11:39:36','2016-07-22 11:39:36',' ','','','publish','closed','closed','','25403','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/25403/',5,'nav_menu_item','',0),(25404,1,'2016-07-22 11:39:36','2016-07-22 11:39:36',' ','','','publish','closed','closed','','25404','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',42,'http://www.air-techinternational.com/airtech/25404/',7,'nav_menu_item','',0),(25405,1,'2016-07-22 11:39:37','2016-07-22 11:39:37',' ','','','publish','closed','closed','','25405','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',42,'http://www.air-techinternational.com/airtech/25405/',8,'nav_menu_item','',0),(25406,1,'2016-07-22 11:39:37','2016-07-22 11:39:37',' ','','','publish','closed','closed','','25406','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',42,'http://www.air-techinternational.com/airtech/25406/',9,'nav_menu_item','',0),(25407,1,'2016-07-22 11:39:37','2016-07-22 11:39:37',' ','','','publish','closed','closed','','25407','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/25407/',4,'nav_menu_item','',0),(25409,1,'2016-07-22 11:39:37','2016-07-22 11:39:37',' ','','','publish','closed','closed','','25409','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',42,'http://www.air-techinternational.com/airtech/25409/',14,'nav_menu_item','',0),(25410,1,'2016-07-22 11:39:37','2016-07-22 11:39:37',' ','','','publish','closed','closed','','25410','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',42,'http://www.air-techinternational.com/airtech/25410/',11,'nav_menu_item','',0),(25411,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25411','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',42,'http://www.air-techinternational.com/airtech/25411/',12,'nav_menu_item','',0),(25412,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25412','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',42,'http://www.air-techinternational.com/airtech/25412/',16,'nav_menu_item','',0),(25413,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25413','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',42,'http://www.air-techinternational.com/airtech/25413/',13,'nav_menu_item','',0),(25414,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25414','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/25414/',21,'nav_menu_item','',0),(25415,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25415','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',25357,'http://www.air-techinternational.com/airtech/25415/',22,'nav_menu_item','',0),(25416,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25416','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',0,'http://www.air-techinternational.com/airtech/25416/',15,'nav_menu_item','',0),(25417,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25417','','','2016-07-22 11:45:15','2016-07-22 11:45:15','',42,'http://www.air-techinternational.com/airtech/25417/',23,'nav_menu_item','',0),(25418,1,'2016-07-22 11:39:38','2016-07-22 11:39:38',' ','','','publish','closed','closed','','25418','','','2016-07-22 11:45:14','2016-07-22 11:45:14','',0,'http://www.air-techinternational.com/airtech/25418/',3,'nav_menu_item','',0),(25420,1,'2016-07-22 11:53:32','2016-07-22 11:53:32','','Home','','publish','closed','closed','','home-2','','','2016-07-22 11:53:32','2016-07-22 11:53:32','',0,'http://www.air-techinternational.com/airtech/home-2/',1,'nav_menu_item','',0),(25421,1,'2016-07-22 11:53:32','2016-07-22 11:53:32','','Cleaning','','publish','closed','closed','','cleaning','','','2016-07-22 11:53:32','2016-07-22 11:53:32','',0,'http://www.air-techinternational.com/airtech/cleaning/',6,'nav_menu_item','',0),(25422,1,'2016-07-22 11:53:33','2016-07-22 11:53:33','','Mold','','publish','closed','closed','','mold','','','2016-07-22 11:53:33','2016-07-22 11:53:33','',0,'http://www.air-techinternational.com/airtech/mold/',10,'nav_menu_item','',0),(25423,1,'2016-07-22 11:53:33','2016-07-22 11:53:33','','Home Repair','','publish','closed','closed','','home-repair','','','2016-07-22 11:53:33','2016-07-22 11:53:33','',0,'http://www.air-techinternational.com/airtech/home-repair/',17,'nav_menu_item','',0),(25424,1,'2016-07-22 11:53:33','2016-07-22 11:53:33','','Construction','','publish','closed','closed','','construction','','','2016-07-22 11:53:33','2016-07-22 11:53:33','',0,'http://www.air-techinternational.com/airtech/construction/',18,'nav_menu_item','',0),(25425,1,'2016-07-22 11:53:33','2016-07-22 11:53:33','','Restoration','','publish','closed','closed','','restoration','','','2016-07-22 11:53:33','2016-07-22 11:53:33','',0,'http://www.air-techinternational.com/airtech/restoration/',19,'nav_menu_item','',0),(25426,1,'2016-07-22 11:53:34','2016-07-22 11:53:34',' ','','','publish','closed','closed','','25426','','','2016-07-22 11:53:34','2016-07-22 11:53:34','',0,'http://www.air-techinternational.com/airtech/25426/',2,'nav_menu_item','',0),(25427,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25427','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',0,'http://www.air-techinternational.com/airtech/25427/',20,'nav_menu_item','',0),(25428,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25428','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',0,'http://www.air-techinternational.com/airtech/25428/',5,'nav_menu_item','',0),(25429,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25429','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25429/',7,'nav_menu_item','',0),(25430,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25430','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25430/',8,'nav_menu_item','',0),(25431,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25431','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25431/',9,'nav_menu_item','',0),(25432,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25432','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',0,'http://www.air-techinternational.com/airtech/25432/',4,'nav_menu_item','',0),(25433,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25433','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',0,'http://www.air-techinternational.com/airtech/25433/',24,'nav_menu_item','',0),(25434,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25434','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25434/',14,'nav_menu_item','',0),(25435,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25435','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25435/',11,'nav_menu_item','',0),(25436,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25436','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25436/',12,'nav_menu_item','',0),(25437,1,'2016-07-22 11:53:35','2016-07-22 11:53:35',' ','','','publish','closed','closed','','25437','','','2016-07-22 11:53:35','2016-07-22 11:53:35','',42,'http://www.air-techinternational.com/airtech/25437/',16,'nav_menu_item','',0),(25438,1,'2016-07-22 11:53:36','2016-07-22 11:53:36',' ','','','publish','closed','closed','','25438','','','2016-07-22 11:53:36','2016-07-22 11:53:36','',42,'http://www.air-techinternational.com/airtech/25438/',13,'nav_menu_item','',0),(25439,1,'2016-07-22 11:53:36','2016-07-22 11:53:36',' ','','','publish','closed','closed','','25439','','','2016-07-22 11:53:36','2016-07-22 11:53:36','',0,'http://www.air-techinternational.com/airtech/25439/',21,'nav_menu_item','',0),(25440,1,'2016-07-22 11:53:36','2016-07-22 11:53:36',' ','','','publish','closed','closed','','25440','','','2016-07-22 11:53:36','2016-07-22 11:53:36','',25357,'http://www.air-techinternational.com/airtech/25440/',22,'nav_menu_item','',0),(25441,1,'2016-07-22 11:53:36','2016-07-22 11:53:36',' ','','','publish','closed','closed','','25441','','','2016-07-22 11:53:36','2016-07-22 11:53:36','',0,'http://www.air-techinternational.com/airtech/25441/',15,'nav_menu_item','',0),(25442,1,'2016-07-22 11:53:36','2016-07-22 11:53:36',' ','','','publish','closed','closed','','25442','','','2016-07-22 11:53:36','2016-07-22 11:53:36','',42,'http://www.air-techinternational.com/airtech/25442/',23,'nav_menu_item','',0),(25443,1,'2016-07-22 11:53:36','2016-07-22 11:53:36',' ','','','publish','closed','closed','','25443','','','2016-07-22 11:53:36','2016-07-22 11:53:36','',0,'http://www.air-techinternational.com/airtech/25443/',3,'nav_menu_item','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0),(135,2,0),(135,3,0),(135,4,0),(25343,2,0),(25343,3,0),(25343,4,0),(25344,5,0),(25350,1,0),(25370,5,0),(25396,5,0),(25397,5,0),(25398,5,0),(25399,5,0),(25400,5,0),(25401,5,0),(25402,5,0),(25403,5,0),(25404,5,0),(25405,5,0),(25406,5,0),(25407,5,0),(25409,5,0),(25410,5,0),(25411,5,0),(25412,5,0),(25413,5,0),(25414,5,0),(25415,5,0),(25416,5,0),(25417,5,0),(25418,5,0),(25420,5,0),(25421,5,0),(25422,5,0),(25423,5,0),(25424,5,0),(25425,5,0),(25426,5,0),(25427,5,0),(25428,5,0),(25429,5,0),(25430,5,0),(25431,5,0),(25432,5,0),(25433,5,0),(25434,5,0),(25435,5,0),(25436,5,0),(25437,5,0),(25438,5,0),(25439,5,0),(25440,5,0),(25441,5,0),(25442,5,0),(25443,5,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=6 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,2),(2,2,'layout_type','',0,2),(3,3,'scope','',0,2),(4,4,'module_width','',0,2),(5,5,'nav_menu','',0,48); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_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_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_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=6 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,'layout','layout',0),(3,'not_global','not_global',0),(4,'regular','regular',0),(5,'Header','header',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=22 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','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(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',''),(13,1,'default_password_nag',''),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:1:{s:64:\"9ce856e662a4031bc59eecb7c4ca362bb4a1ec8b6a9fce37b3430a84a0f987dc\";a:4:{s:10:\"expiration\";i:1469359219;s:2:\"ip\";s:15:\"117.247.189.136\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36\";s:5:\"login\";i:1469186419;}}'),(16,1,'wp_user-settings','editor=html&libraryContent=browse&hidetb=1&align=center&imgsize=full'),(17,1,'wp_user-settings-time','1469186448'),(18,1,'wp_dashboard_quick_press_last_post_id','3'),(19,1,'nav_menu_recently_edited','5'),(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(21,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'); /*!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(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 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,'admin','$P$BIfNclh7IIiZ5zfTXRsjEvY5.1vA0q.','admin','redhawx10@hotmail.com','','2016-06-23 15:23:45','',0,'admin'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_02c4f04_1' -- /*!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 2016-07-22 7:56:32