You are on page 1of 316

-- MySQL dump 10.13 Distrib 5.5.

47, for debian-linux-gnu (x86_64)


--
-- Host: localhost Database: wordpress
-- ------------------------------------------------------
-- Server version 5.5.47-0ubuntu0.14.04.1

/*!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 AUTO_INCREMENT=7 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=5 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-04-21 09:48:47','2016-04-21
09:48:47','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,'post-trashed','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_layerslider`
--

DROP TABLE IF EXISTS `wp_layerslider`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_layerslider` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`author` int(10) NOT NULL DEFAULT '0',
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`data` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`date_c` int(10) NOT NULL,
`date_m` int(11) NOT NULL,
`flag_hidden` tinyint(1) NOT NULL DEFAULT '0',
`flag_deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_layerslider`
--

LOCK TABLES `wp_layerslider` WRITE;


/*!40000 ALTER TABLE `wp_layerslider` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_layerslider` 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=846 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://139.59.234.208','yes'),(2,'home','http://139.59.234.20
8','yes'),(3,'blogname','STIKOM PROSIA','yes'),(4,'blogdescription','To Be
a Professional in Communication is a Passionate
Profession."','yes'),(5,'users_can_register','0','yes'),(6,'admin_emai
l','aris@rubyh.co','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','passw
ord','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','
4','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','/%year%/%monthnum%/%day%/%postname%/','yes
'),(29,'hack_file','0','yes'),(30,'blog_charset','UTF-
8','yes'),(31,'moderation_keys','','no'),(32,'active_plugins','a:14:{i:0;s:
27:\"LayerSlider/layerslider.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:3
6:\"contact-form-7/wp-contact-form-7.php\";i:3;s:33:\"duplicate-
post/duplicate-post.php\";i:4;s:59:\"force-regenerate-thumbnails/force-
regenerate-thumbnails.php\";i:5;s:43:\"google-analytics-dashboard-for-
wp/gadwp.php\";i:6;s:9:\"hello.php\";i:7;s:51:\"hide-core-update-
notice/hide-core-update-notice.php\";i:8;s:45:\"hide-plugin-updates-
notifications/wphdpuw.php\";i:9;s:27:\"js_composer/js_composer.php\";i:10;s
:23:\"playerzbr/playerzbr.php\";i:11;s:23:\"revslider/revslider.php\";i:12;
s:78:\"wp-translator-revolution-dropdown/surstudio-translator-revolution-
dropdown.php\";i:13;s:25:\"zopim-live-
chat/zopim.php\";}','yes'),(33,'category_base','','yes'),(34,'ping_sites','
http://rpc.pingomatic.com/','yes'),(35,'comment_max_links','2','yes'),(36,'
gmt_offset','0','yes'),(37,'default_email_category','1','yes'),(38,'recentl
y_edited','a:2:{i:0;s:111:\"/var/www/html/wp-content/plugins/wp-translator-
revolution-dropdown/surstudio-translator-revolution-
dropdown.php\";i:1;s:0:\"\";}','no'),(39,'template','betheme','yes'),(40,'s
tylesheet','betheme-
child','yes'),(41,'comment_whitelist','1','yes'),(42,'blacklist_keys','','n
o'),(43,'comment_registration','0','yes'),(44,'html_type','text/html','yes'
),(45,'use_trackback','0','yes'),(46,'default_role','subscriber','yes'),(47
,'db_version','36686','yes'),(48,'uploads_use_yearmonth_folders','1','yes')
,(49,'upload_path','','yes'),(50,'blog_public','1','yes'),(51,'default_link
_category','2','yes'),(52,'show_on_front','page','yes'),(53,'tag_base','','
yes'),(54,'show_avatars','1','yes'),(55,'avatar_rating','G','yes'),(56,'upl
oad_url_path','','yes'),(57,'thumbnail_size_w','150','yes'),(58,'thumbnail_
size_h','150','yes'),(59,'thumbnail_crop','1','yes'),(60,'medium_size_w','3
00','yes'),(61,'medium_size_h','300','yes'),(62,'avatar_default','mystery',
'yes'),(63,'large_size_w','1024','yes'),(64,'large_size_h','1024','yes'),(6
5,'image_default_link_type','none','yes'),(66,'image_default_size','','yes'
),(67,'image_default_align','','yes'),(68,'close_comments_for_old_posts','0
','yes'),(69,'close_comments_days_old','14','yes'),(70,'thread_comments','1
','yes'),(71,'thread_comments_depth','5','yes'),(72,'page_comments','0','ye
s'),(73,'comments_per_page','50','yes'),(74,'default_comments_page','newest
','yes'),(75,'comment_order','asc','yes'),(76,'sticky_posts','a:0:{}','yes'
),(77,'widget_categories','a:2:{i:3;a:4:{s:5:\"title\";s:10:\"Categories\";
s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_m
ultiwidget\";i:1;}','yes'),(78,'widget_text','a:5:{i:2;a:3:{s:5:\"title\";s
:20:\"About our university\";s:4:\"text\";s:154:\"Mauris imperdiet, urna
mi, gravida sod ales. \r\n[tooltip hint=\"Donec nisl ac turpis\"]Vivamus
hendrerit[/tooltip] nulla erat ornare tortor in vestibulum
id.\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:11:\"Alamat
Kami\";s:4:\"text\";s:84:\"Jl. Tegalan No. 1E,
Palmeriam\r\n<br/>\r\nMatraman, Jakarta Timur\r\n<br/>\r\n+6221 857
6647\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:12:\"Aliquam
erat\";s:4:\"text\";s:175:\"Proin gravida nibh vel velit auctor aliquet.
Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum,
nec sagittis sem nibh id elit. Duis sed odio sit
amet.\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:15:\"Radio
Streaming\";s:4:\"text\";s:179:\"Lorem ipsum dolor sit amet, consectetur
adipiscing elit.\r\n\r\n[playerzbr url=\"http://traxonsky.com/wp-
content/uploads/2015/11/MORNING-ZONE-CERITA-BERSAMBUNG-NENEK-DI-
HUTAN.mp3?_=2\"]\";s:6:\"filter\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),
(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'u
ninstall_plugins','a:4:{s:27:\"LayerSlider/layerslider.php\";s:29:\"layersl
ider_uninstall_scripts\";s:45:\"hide-plugin-updates-
notifications/wphdpuw.php\";s:15:\"wphpuw_unistall\";s:57:\"multisite-
language-
switcher/MultisiteLanguageSwitcher.php\";a:2:{i:0;s:10:\"MslsPlugin\";i:1;s
:9:\"uninstall\";}s:43:\"google-analytics-dashboard-for-
wp/gadwp.php\";a:2:{i:0;s:15:\"GADWP_Uninstall\";i:1;s:9:\"uninstall\";}}',
'no'),(81,'timezone_string','','yes'),(82,'page_for_posts','2309','yes'),(8
3,'page_on_front','2324','yes'),(84,'default_post_format','0','yes'),(85,'l
ink_manager_enabled','0','yes'),(86,'finished_splitting_shared_terms','1','
yes'),(87,'site_icon','0','yes'),(88,'medium_large_size_w','768','yes'),(89
,'medium_large_size_h','0','yes'),(90,'initial_db_version','35700','yes'),(
91,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Ad
ministrator\";s:12:\"capabilities\";a:63:{s:13:\"switch_themes\";b:1;s:11:\
"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;
s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1
;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manag
e_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltere
d_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:\"lev
el_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_ot
hers_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";
b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:
20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read
_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_
pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:
\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\"
;b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install
_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:
\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:
\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\
";b:1;s:6:\"export\";b:1;s:10:\"copy_posts\";b:1;s:12:\"access_zopim\";b:1;
}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:3
5:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"man
age_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_po
sts\";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:\"l
evel_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_other
s_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_pr
ivate_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pag
es\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"au
thor\";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:\"lev
el_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_publ
ished_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contribut
or\";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:\"su
bscriber\";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'),(92,'widget_search','a:2:
{i:3;a:1:{s:5:\"title\";s:6:\"Search\";}s:12:\"_multiwidget\";i:1;}','yes')
,(93,'widget_recent-
posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-
comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_archives','
a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_meta','a:2:{i:3;a:1:{s
:5:\"title\";s:4:\"Meta\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'sidebar
s_widgets','a:20:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-
blog\";a:5:{i:0;s:8:\"search-3\";i:1;s:6:\"text-
2\";i:2;s:25:\"widget_mfn_recent_posts-2\";i:3;s:12:\"categories-
3\";i:4;s:6:\"meta-3\";}s:13:\"footer-area-1\";a:2:{i:0;s:42:\"surstudio-
translator-revolution-dropdown-3\";i:1;s:6:\"text-3\";}s:13:\"footer-area-
2\";a:1:{i:0;s:6:\"text-4\";}s:13:\"footer-area-3\";a:1:{i:0;s:6:\"text-
5\";}s:13:\"footer-area-4\";a:0:{}s:10:\"top-area-1\";a:0:{}s:10:\"top-
area-2\";a:0:{}s:10:\"top-area-3\";a:0:{}s:10:\"top-area-
4\";a:0:{}s:5:\"forum\";a:0:{}s:5:\"buddy\";a:0:{}s:6:\"events\";a:0:{}s:3:
\"edd\";a:0:{}s:4:\"shop\";a:0:{}s:20:\"blog-cat-
job_vacancy\";a:0:{}s:13:\"blog-cat-news\";a:0:{}s:17:\"blog-cat-
research\";a:0:{}s:16:\"blog-cat-
stories\";a:0:{}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:\"_multiwid
get\";i:1;}','yes'),(102,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;
}','yes'),(103,'cron','a:5:{i:1463151154;a:1:{s:24:\"akismet_scheduled_dele
te\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s
:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1463176127;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:\"interva
l\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2
478b24840a\";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:\"40cd750bba9
870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"arg
s\";a:0:{}s:8:\"interval\";i:43200;}}}i:1463194109;a:1:{s:30:\"wp_scheduled
_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:
8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}
}i:1463219370;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f
18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}
s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(106,'rewrite_rul
es','a:250:{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=$match
es[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:\"cate
gory/(.+?)/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=$m
atches[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/([^/]+)/e
mbed/?$\";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:\"ta
g/([^/]+)/?$\";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:\"ind
ex.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:\"v
c_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matc
hes[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\
"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachme
nt/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$
matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/
(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=
$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-
([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?atta
chment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45
:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/
]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"
vc_grid_item/([^/]+)/page/?([0-
9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";
s:48:\"vc_grid_item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";
s:37:\"vc_grid_item/([^/]+)(?:/([0-
9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:
29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1
]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attac
hment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|r
ss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]
\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"i
ndex.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]
+/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$mat
ches[1]&embed=true\";s:39:\"client-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:49:\"client-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:69:\"client-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"client-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:64:\"client-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
45:\"client-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:28:\"client-
item/([^/]+)/embed/?$\";s:39:\"index.php?client=$matches[1]&embed=true\";s:
32:\"client-
item/([^/]+)/trackback/?$\";s:33:\"index.php?client=$matches[1]&tb=1\";s:40
:\"client-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:46:\"index.php?client=$matches[1]&paged=$matches[2]\";s:47:\
"client-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:46:\"index.php?client=$matches[1]&cpage=$matches[2]\";s:36:\
"client-item/([^/]+)(?:/([0-
9]+))?/?$\";s:45:\"index.php?client=$matches[1]&page=$matches[2]\";s:28:\"c
lient-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"cl
ient-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:58:\"client-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:53:\"client-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:53:\"client-item/[^/]+/([^/]+)/comment-
page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
34:\"client-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:53:\"client-
types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?client-
types=$matches[1]&feed=$matches[2]\";s:48:\"client-
types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?client-
types=$matches[1]&feed=$matches[2]\";s:29:\"client-
types/([^/]+)/embed/?$\";s:45:\"index.php?client-
types=$matches[1]&embed=true\";s:41:\"client-types/([^/]+)/page/?([0-
9]{1,})/?$\";s:52:\"index.php?client-
types=$matches[1]&paged=$matches[2]\";s:23:\"client-
types/([^/]+)/?$\";s:34:\"index.php?client-
types=$matches[1]\";s:38:\"offer-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:48:\"offer-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:68:\"offer-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"offer-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:63:\"offer-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
44:\"offer-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:27:\"offer-
item/([^/]+)/embed/?$\";s:38:\"index.php?offer=$matches[1]&embed=true\";s:3
1:\"offer-
item/([^/]+)/trackback/?$\";s:32:\"index.php?offer=$matches[1]&tb=1\";s:39:
\"offer-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:45:\"index.php?offer=$matches[1]&paged=$matches[2]\";s:46:\"
offer-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:45:\"index.php?offer=$matches[1]&cpage=$matches[2]\";s:35:\"
offer-item/([^/]+)(?:/([0-
9]+))?/?$\";s:44:\"index.php?offer=$matches[1]&page=$matches[2]\";s:27:\"of
fer-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"of
fer-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:57:\"offer-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:52:\"offer-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:52:\"offer-item/[^/]+/([^/]+)/comment-
page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
33:\"offer-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:52:\"offer-
types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?offer-
types=$matches[1]&feed=$matches[2]\";s:47:\"offer-
types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?offer-
types=$matches[1]&feed=$matches[2]\";s:28:\"offer-
types/([^/]+)/embed/?$\";s:44:\"index.php?offer-
types=$matches[1]&embed=true\";s:40:\"offer-types/([^/]+)/page/?([0-
9]{1,})/?$\";s:51:\"index.php?offer-
types=$matches[1]&paged=$matches[2]\";s:22:\"offer-
types/([^/]+)/?$\";s:33:\"index.php?offer-
types=$matches[1]\";s:42:\"portfolio-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:52:\"portfolio-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:72:\"portfolio-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
48:\"portfolio-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:31:\"portfolio-
item/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\"
;s:35:\"portfolio-
item/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s
:43:\"portfolio-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:5
0:\"portfolio-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:3
9:\"portfolio-item/([^/]+)(?:/([0-
9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:31:
\"portfolio-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"po
rtfolio-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:61:\"portfolio-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-
item/[^/]+/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
37:\"portfolio-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:56:\"portfolio-
types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?portfolio
-types=$matches[1]&feed=$matches[2]\";s:51:\"portfolio-
types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?portfolio-
types=$matches[1]&feed=$matches[2]\";s:32:\"portfolio-
types/([^/]+)/embed/?$\";s:48:\"index.php?portfolio-
types=$matches[1]&embed=true\";s:44:\"portfolio-types/([^/]+)/page/?([0-
9]{1,})/?$\";s:55:\"index.php?portfolio-
types=$matches[1]&paged=$matches[2]\";s:26:\"portfolio-
types/([^/]+)/?$\";s:37:\"index.php?portfolio-
types=$matches[1]\";s:38:\"slide-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:48:\"slide-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:68:\"slide-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"slide-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:63:\"slide-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
44:\"slide-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:27:\"slide-
item/([^/]+)/embed/?$\";s:38:\"index.php?slide=$matches[1]&embed=true\";s:3
1:\"slide-
item/([^/]+)/trackback/?$\";s:32:\"index.php?slide=$matches[1]&tb=1\";s:39:
\"slide-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&paged=$matches[2]\";s:46:\"
slide-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&cpage=$matches[2]\";s:35:\"
slide-item/([^/]+)(?:/([0-
9]+))?/?$\";s:44:\"index.php?slide=$matches[1]&page=$matches[2]\";s:27:\"sl
ide-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"sl
ide-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:57:\"slide-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:52:\"slide-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:52:\"slide-item/[^/]+/([^/]+)/comment-
page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
33:\"slide-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:52:\"slide-
types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?slide-
types=$matches[1]&feed=$matches[2]\";s:47:\"slide-
types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?slide-
types=$matches[1]&feed=$matches[2]\";s:28:\"slide-
types/([^/]+)/embed/?$\";s:44:\"index.php?slide-
types=$matches[1]&embed=true\";s:40:\"slide-types/([^/]+)/page/?([0-
9]{1,})/?$\";s:51:\"index.php?slide-
types=$matches[1]&paged=$matches[2]\";s:22:\"slide-
types/([^/]+)/?$\";s:33:\"index.php?slide-
types=$matches[1]\";s:44:\"testimonial-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:54:\"testimonial-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:74:\"testimonial-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"testimonial-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:69:\"testimonial-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
50:\"testimonial-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:33:\"testimonial-
item/([^/]+)/embed/?$\";s:44:\"index.php?testimonial=$matches[1]&embed=true
\";s:37:\"testimonial-
item/([^/]+)/trackback/?$\";s:38:\"index.php?testimonial=$matches[1]&tb=1\"
;s:45:\"testimonial-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&paged=$matches[2]\";s
:52:\"testimonial-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&cpage=$matches[2]\";s
:41:\"testimonial-item/([^/]+)(?:/([0-
9]+))?/?$\";s:50:\"index.php?testimonial=$matches[1]&page=$matches[2]\";s:3
3:\"testimonial-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"te
stimonial-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:63:\"testimonial-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:58:\"testimonial-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:58:\"testimonial-
item/[^/]+/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
39:\"testimonial-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:58:\"testimonial-
types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?testimoni
al-types=$matches[1]&feed=$matches[2]\";s:53:\"testimonial-
types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?testimonial-
types=$matches[1]&feed=$matches[2]\";s:34:\"testimonial-
types/([^/]+)/embed/?$\";s:50:\"index.php?testimonial-
types=$matches[1]&embed=true\";s:46:\"testimonial-types/([^/]+)/page/?([0-
9]{1,})/?$\";s:57:\"index.php?testimonial-
types=$matches[1]&paged=$matches[2]\";s:28:\"testimonial-
types/([^/]+)/?$\";s:39:\"index.php?testimonial-
types=$matches[1]\";s:39:\"layout-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:49:\"layout-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:69:\"layout-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"layout-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:64:\"layout-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
45:\"layout-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:28:\"layout-
item/([^/]+)/embed/?$\";s:39:\"index.php?layout=$matches[1]&embed=true\";s:
32:\"layout-
item/([^/]+)/trackback/?$\";s:33:\"index.php?layout=$matches[1]&tb=1\";s:40
:\"layout-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:46:\"index.php?layout=$matches[1]&paged=$matches[2]\";s:47:\
"layout-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:46:\"index.php?layout=$matches[1]&cpage=$matches[2]\";s:36:\
"layout-item/([^/]+)(?:/([0-
9]+))?/?$\";s:45:\"index.php?layout=$matches[1]&page=$matches[2]\";s:28:\"l
ayout-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"la
yout-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:58:\"layout-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:53:\"layout-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:53:\"layout-item/[^/]+/([^/]+)/comment-
page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
34:\"layout-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:41:\"template-
item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\
";s:51:\"template-
item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$m
atches[1]&tb=1\";s:71:\"template-
item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"ind
ex.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"template-
item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.ph
p?attachment=$matches[1]&feed=$matches[2]\";s:66:\"template-
item/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
47:\"template-
item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:30:\"template-
item/([^/]+)/embed/?$\";s:41:\"index.php?template=$matches[1]&embed=true\";
s:34:\"template-
item/([^/]+)/trackback/?$\";s:35:\"index.php?template=$matches[1]&tb=1\";s:
42:\"template-item/([^/]+)/page/?([0-
9]{1,})/?$\";s:48:\"index.php?template=$matches[1]&paged=$matches[2]\";s:49
:\"template-item/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:48:\"index.php?template=$matches[1]&cpage=$matches[2]\";s:38
:\"template-item/([^/]+)(?:/([0-
9]+))?/?$\";s:47:\"index.php?template=$matches[1]&page=$matches[2]\";s:30:\
"template-
item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"te
mplate-
item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&t
b=1\";s:60:\"template-
item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?atta
chment=$matches[1]&feed=$matches[2]\";s:55:\"template-
item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachmen
t=$matches[1]&feed=$matches[2]\";s:55:\"template-
item/[^/]+/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
36:\"template-
item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed
=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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|r
ss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\
"index.php?&embed=true\";s:20:\"page/?([0-
9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-
9]{1,})/?$\";s:41:\"index.php?&page_id=2324&cpage=$matches[1]\";s:41:\"comm
ents/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:\"i
ndex.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/(.+)/(fee
d|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:\"sear
ch/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(f
eed|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:\"ind
ex.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/emb
ed/?$\";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]&mo
nthnum=$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=$ma
tches[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=$m
atches[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]&mo
nthnum=$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:58:\"[0-9]{4}/[0-
9]{1,2}/[0-
9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[
1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment
=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"
index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-
9]{1,2}/[0-
9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index
.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-
9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
64:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$ma
tches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-
9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$mat
ches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-
9]{4})/([0-9]{1,2})/([0-
9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=
$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-
9]{1,2})/([0-
9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$
matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matc
hes[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-
9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$match
es[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5
]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-
9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$ma
tches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-
9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$ma
tches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-
9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-
9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$mat
ches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\
"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1
]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?a
ttachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attach
ment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/([^/]+)/comment-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
53:\"[0-9]{4}/[0-9]{1,2}/[0-
9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&em
bed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-
9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$ma
tches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-
([0-
9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$
matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-
9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".
?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37
:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$mat
ches[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?attac
hment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/commen
t-page-([0-
9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:
33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$match
es[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$mat
ches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagenam
e=$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|r
df|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]\";}','ye
s'),(116,'_site_transient_timeout_browser_4f0993a6950c3817a9929207c89f556c'
,'1461836935','yes'),(117,'_site_transient_browser_4f0993a6950c3817a9929207
c89f556c','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:7:\"Firef
ox\";s:7:\"version\";s:4:\"45.0\";s:10:\"update_url\";s:23:\"http://www.fir
efox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/f
irefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/brows
ers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s
:8:\"insecure\";b:0;}','yes'),(136,'db_upgraded','','yes'),(139,'can_compre
ss_scripts','0','yes'),(140,'recently_activated','a:3:{s:57:\"multisite-
language-switcher/MultisiteLanguageSwitcher.php\";i:1461377533;s:43:\"list-
category-posts/list-category-
posts.php\";i:1461377357;s:21:\"wpglobus/wpglobus.php\";i:1461377345;}','ye
s'),(141,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(143,'wordpress_api_key','a6c59b7f5e16','yes'),(144,'akismet_strictness','0
','yes'),(145,'akismet_show_user_comments_approved','0','yes'),(149,'_site_
transient_timeout_wporg_theme_feature_list','1461244226','yes'),(150,'_site
_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"b
lack\";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'),(153,'theme_mods_twentysixteen','a:1:{s:1
6:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1461232757;s:4:\"data\";a:2:{s:1
9:\"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'),(154,'current_theme','Betheme
Child','yes'),(155,'theme_mods_betheme','a:2:{i:0;b:0;s:16:\"sidebars_widge
ts\";a:2:{s:4:\"time\";i:1461233450;s:4:\"data\";a:15:{s:19:\"wp_inactive_w
idgets\";a:0:{}s:13:\"footer-area-1\";a:6:{i:0;s:8:\"search-
2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-
2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-
2\";}s:13:\"footer-area-2\";N;s:13:\"footer-area-3\";N;s:13:\"footer-area-
4\";N;s:10:\"top-area-1\";N;s:10:\"top-area-2\";N;s:10:\"top-area-
3\";N;s:10:\"top-area-
4\";N;s:5:\"forum\";N;s:5:\"buddy\";N;s:6:\"events\";N;s:3:\"edd\";N;s:4:\"
shop\";N;s:22:\"blog-cat-
uncategorized\";N;}}}','yes'),(156,'theme_switched','','yes'),(157,'betheme
','a:362:{s:8:\"last_tab\";s:4:\"logo\";s:6:\"layout\";s:10:\"full-
width\";s:10:\"grid-width\";s:0:\"\";s:5:\"style\";s:0:\"\";s:12:\"button-
style\";s:0:\"\";s:17:\"image-frame-style\";s:0:\"\";s:18:\"image-frame-
border\";s:0:\"\";s:11:\"img-page-bg\";s:0:\"\";s:16:\"position-page-
bg\";s:22:\"no-repeat;center top;;\";s:11:\"favicon-
img\";s:66:\"http://139.59.234.208/wp-content/uploads/2016/04/favicon-
32x32.png\";s:16:\"apple-touch-icon\";s:71:\"http://139.59.234.208/wp-
content/uploads/2016/04/apple-icon-180x180.png\";s:8:\"logo-
img\";s:72:\"http://139.59.234.208/wp-content/uploads/2016/04/LOGO-STIKOM-
VERSI-2.jpg\";s:15:\"retina-logo-img\";s:73:\"http://139.59.234.208/wp-
content/uploads/2016/04/LOGO-STIKOM-VERSI-2x.jpg\";s:15:\"sticky-logo-
img\";s:0:\"\";s:22:\"sticky-retina-logo-img\";s:0:\"\";s:9:\"logo-
link\";a:1:{s:4:\"link\";s:4:\"link\";}s:9:\"logo-
text\";s:0:\"\";s:10:\"logo-width\";s:0:\"\";s:11:\"logo-
height\";s:0:\"\";s:21:\"logo-vertical-padding\";s:0:\"\";s:19:\"slider-
blog-timeout\";s:1:\"0\";s:22:\"slider-clients-
timeout\";s:1:\"0\";s:20:\"slider-offer-timeout\";s:1:\"0\";s:24:\"slider-
portfolio-timeout\";s:1:\"0\";s:19:\"slider-shop-
timeout\";s:1:\"0\";s:21:\"slider-slider-timeout\";s:1:\"0\";s:27:\"slider-
testimonials-timeout\";s:1:\"0\";s:20:\"layout-boxed-
padding\";s:0:\"\";s:18:\"builder-visibility\";s:0:\"\";s:13:\"display-
order\";s:1:\"0\";s:22:\"content-remove-padding\";s:1:\"0\";s:11:\"table-
hover\";s:0:\"\";s:23:\"math-animations-disable\";s:1:\"0\";s:15:\"builder-
storage\";s:0:\"\";s:16:\"slider-shortcode\";s:0:\"\";s:10:\"static-
css\";s:1:\"0\";s:12:\"table_prefix\";s:11:\"base_prefix\";s:8:\"hook-
top\";s:0:\"\";s:19:\"hook-content-before\";s:0:\"\";s:18:\"hook-content-
after\";s:0:\"\";s:11:\"hook-bottom\";s:0:\"\";s:12:\"header-
style\";s:7:\"classic\";s:17:\"minimalist-header\";s:1:\"1\";s:16:\"img-
subheader-bg\";s:0:\"\";s:24:\"img-subheader-
attachment\";s:0:\"\";s:13:\"sticky-header\";s:1:\"1\";s:19:\"sticky-
header-style\";s:5:\"white\";s:15:\"subheader-
style\";s:0:\"\";s:17:\"subheader-padding\";s:0:\"\";s:19:\"subheader-
title-tag\";s:2:\"h1\";s:15:\"subheader-image\";s:0:\"\";s:21:\"subheader-
transparent\";s:3:\"100\";s:18:\"top-bar-right-
hide\";s:1:\"0\";s:19:\"header-action-title\";s:0:\"\";s:18:\"header-
action-link\";s:0:\"\";s:13:\"header-search\";s:1:\"1\";s:11:\"header-
wpml\";s:0:\"\";s:11:\"sliding-top\";s:1:\"0\";s:16:\"sliding-top-
icon\";s:19:\"icon-down-open-mini\";s:13:\"header-
banner\";s:0:\"\";s:10:\"menu-style\";s:0:\"\";s:10:\"action-
bar\";s:1:\"0\";s:13:\"header-slogan\";s:0:\"\";s:12:\"header-
phone\";s:0:\"\";s:14:\"header-phone-2\";s:0:\"\";s:12:\"header-
email\";s:0:\"\";s:8:\"sidebars\";a:1:{i:0;s:4:\"Blog\";}s:13:\"sidebar-
width\";s:2:\"23\";s:13:\"sidebar-lines\";s:0:\"\";s:18:\"single-page-
layout\";s:0:\"\";s:19:\"single-page-sidebar\";s:0:\"\";s:20:\"single-page-
sidebar2\";s:0:\"\";s:13:\"single-layout\";s:0:\"\";s:14:\"single-
sidebar\";s:0:\"\";s:15:\"single-sidebar2\";s:0:\"\";s:23:\"single-
portfolio-layout\";s:0:\"\";s:24:\"single-portfolio-
sidebar\";s:0:\"\";s:25:\"single-portfolio-sidebar2\";s:0:\"\";s:13:\"prev-
next-nav\";s:1:\"1\";s:5:\"share\";s:1:\"1\";s:19:\"pagination-show-
all\";s:1:\"1\";s:4:\"love\";s:1:\"0\";s:13:\"related-
style\";s:0:\"\";s:13:\"title-heading\";s:1:\"1\";s:10:\"blog-
posts\";s:1:\"4\";s:11:\"blog-layout\";s:7:\"classic\";s:12:\"blog-
columns\";s:0:\"\";s:15:\"blog-full-width\";s:1:\"0\";s:9:\"blog-
page\";s:4:\"2309\";s:14:\"excerpt-length\";s:2:\"26\";s:16:\"exclude-
category\";s:11:\"job_vacancy\";s:12:\"blog-
filters\";s:1:\"1\";s:14:\"blog-load-more\";s:1:\"0\";s:9:\"blog-
meta\";s:1:\"1\";s:10:\"blog-title\";s:1:\"1\";s:16:\"blog-single-
zoom\";s:1:\"1\";s:11:\"blog-author\";s:1:\"1\";s:12:\"blog-
related\";s:1:\"1\";s:20:\"blog-related-columns\";s:0:\"\";s:13:\"blog-
comments\";s:1:\"1\";s:18:\"blog-single-layout\";s:0:\"\";s:16:\"blog-
single-menu\";s:1:\"0\";s:20:\"single-intro-
padding\";s:0:\"\";s:15:\"portfolio-posts\";s:1:\"8\";s:16:\"portfolio-
layout\";s:4:\"grid\";s:17:\"portfolio-columns\";s:0:\"\";s:20:\"portfolio-
full-width\";s:1:\"0\";s:14:\"portfolio-page\";s:0:\"\";s:17:\"portfolio-
orderby\";s:4:\"date\";s:15:\"portfolio-
order\";s:4:\"DESC\";s:18:\"portfolio-external\";s:0:\"\";s:21:\"portfolio-
hover-title\";s:1:\"0\";s:17:\"portfolio-
filters\";s:1:\"1\";s:19:\"portfolio-load-
more\";s:1:\"0\";s:17:\"portfolio-isotope\";s:1:\"1\";s:17:\"portfolio-
related\";s:1:\"1\";s:25:\"portfolio-related-
columns\";s:0:\"\";s:18:\"portfolio-comments\";s:1:\"0\";s:23:\"portfolio-
single-layout\";s:0:\"\";s:21:\"portfolio-single-
menu\";s:1:\"0\";s:14:\"portfolio-slug\";s:14:\"portfolio-
item\";s:13:\"portfolio-tax\";s:0:\"\";s:13:\"shop-
products\";s:2:\"12\";s:11:\"shop-layout\";s:4:\"grid\";s:14:\"shop-
catalogue\";s:1:\"0\";s:11:\"shop-images\";s:0:\"\";s:11:\"shop-
button\";s:1:\"0\";s:12:\"shop-excerpt\";s:1:\"0\";s:12:\"shop-
sidebar\";s:0:\"\";s:11:\"shop-slider\";s:0:\"\";s:19:\"shop-product-
images\";s:0:\"\";s:18:\"shop-product-style\";s:0:\"\";s:18:\"shop-product-
title\";s:0:\"\";s:12:\"shop-related\";s:1:\"1\";s:9:\"shop-
cart\";s:11:\"icon-basket\";s:29:\"featured-blog-portfolio-
width\";s:0:\"\";s:30:\"featured-blog-portfolio-
height\";s:0:\"\";s:28:\"featured-blog-portfolio-
crop\";s:4:\"crop\";s:21:\"featured-single-
width\";s:0:\"\";s:22:\"featured-single-height\";s:0:\"\";s:20:\"featured-
single-crop\";s:4:\"crop\";s:13:\"page-
comments\";s:1:\"0\";s:13:\"error404-icon\";s:17:\"icon-traffic-
cone\";s:13:\"error404-
page\";s:0:\"\";s:12:\"construction\";s:1:\"0\";s:18:\"construction-
title\";s:11:\"Coming Soon\";s:17:\"construction-
text\";s:0:\"\";s:17:\"construction-date\";s:19:\"12/30/2014
12:00:00\";s:19:\"construction-offset\";s:1:\"0\";s:20:\"construction-
contact\";s:0:\"\";s:17:\"construction-page\";s:0:\"\";s:13:\"footer-
layout\";s:0:\"\";s:12:\"footer-style\";s:0:\"\";s:14:\"footer-
padding\";s:0:\"\";s:13:\"footer-bg-img\";s:0:\"\";s:22:\"footer-bg-img-
position\";s:22:\"no-repeat;center top;;\";s:21:\"footer-call-to-
action\";s:0:\"\";s:11:\"footer-copy\";s:44:\" 2016 STIKOM PROSIA. All
Rights Reserved.\";s:11:\"footer-hide\";s:0:\"\";s:12:\"back-top-
top\";s:0:\"\";s:18:\"popup-contact-form\";s:0:\"\";s:23:\"popup-contact-
form-icon\";s:0:\"\";s:10:\"responsive\";s:1:\"1\";s:20:\"font-size-
responsive\";s:1:\"0\";s:15:\"responsive-zoom\";s:1:\"0\";s:19:\"mobile-
menu-initial\";s:0:\"\";s:17:\"responsive-
sticky\";s:1:\"0\";s:20:\"responsive-tr-header\";s:1:\"0\";s:25:\"header-
menu-mobile-sticky\";s:1:\"0\";s:16:\"header-menu-
text\";s:0:\"\";s:18:\"responsive-top-bar\";s:4:\"left\";s:19:\"responsive-
boxed2fw\";s:1:\"0\";s:8:\"no-hover\";s:0:\"\";s:13:\"no-section-
bg\";s:0:\"\";s:19:\"responsive-parallax\";s:1:\"0\";s:19:\"responsive-
logo-img\";s:0:\"\";s:26:\"responsive-retina-logo-
img\";s:0:\"\";s:16:\"google-analytics\";s:0:\"\";s:18:\"google-
remarketing\";s:0:\"\";s:7:\"mfn-seo\";s:1:\"1\";s:16:\"meta-
description\";s:27:\"Just another WordPress site\";s:13:\"meta-
keywords\";s:0:\"\";s:19:\"mfn-seo-schema-type\";s:1:\"0\";s:13:\"social-
target\";s:1:\"0\";s:12:\"social-skype\";s:0:\"\";s:15:\"social-
facebook\";s:1:\"#\";s:17:\"social-googleplus\";s:1:\"#\";s:14:\"social-
twitter\";s:1:\"#\";s:12:\"social-vimeo\";s:1:\"#\";s:14:\"social-
youtube\";s:1:\"#\";s:13:\"social-flickr\";s:1:\"#\";s:15:\"social-
linkedin\";s:0:\"\";s:16:\"social-pinterest\";s:1:\"#\";s:15:\"social-
dribbble\";s:0:\"\";s:16:\"social-instagram\";s:0:\"\";s:14:\"social-
behance\";s:0:\"\";s:13:\"social-tumblr\";s:0:\"\";s:16:\"social-
vkontakte\";s:0:\"\";s:13:\"social-viadeo\";s:0:\"\";s:11:\"social-
xing\";s:0:\"\";s:10:\"social-
rss\";s:1:\"0\";s:8:\"parallax\";s:11:\"translate3d\";s:11:\"nice-
scroll\";s:1:\"1\";s:17:\"nice-scroll-
speed\";s:2:\"40\";s:11:\"prettyphoto\";s:10:\"pp_default\";s:17:\"prettyph
oto-width\";s:0:\"\";s:18:\"prettyphoto-height\";s:0:\"\";s:18:\"sc-
gallery-disable\";s:1:\"0\";s:17:\"retina-js-
disable\";s:1:\"0\";s:10:\"plugin-rev\";s:0:\"\";s:12:\"plugin-
layer\";s:0:\"\";s:13:\"plugin-
visual\";s:0:\"\";s:4:\"skin\";s:6:\"custom\";s:9:\"color-
one\";s:7:\"#2991D6\";s:15:\"background-
html\";s:7:\"#FCFCFC\";s:15:\"background-
body\";s:7:\"#FCFCFC\";s:17:\"background-
header\";s:7:\"#687c62\";s:19:\"background-top-
left\";s:7:\"#ffffff\";s:21:\"background-top-
middle\";s:7:\"#e3e3e3\";s:20:\"background-top-
right\";s:7:\"#f5f5f5\";s:17:\"color-top-right-
a\";s:7:\"#444444\";s:17:\"background-
search\";s:7:\"#931919\";s:20:\"background-
subheader\";s:7:\"#73848b\";s:15:\"color-
subheader\";s:7:\"#ffffff\";s:12:\"color-menu-
a\";s:7:\"#554747\";s:19:\"color-menu-a-
active\";s:7:\"#931919\";s:24:\"background-menu-a-
active\";s:7:\"#931919\";s:18:\"background-
submenu\";s:7:\"#F2F2F2\";s:15:\"color-submenu-
a\";s:7:\"#5f5f5f\";s:21:\"color-submenu-a-
hover\";s:7:\"#2e2e2e\";s:25:\"color-overlay-menu-
button\";s:7:\"#2991d6\";s:23:\"background-overlay-
menu\";s:7:\"#2991d6\";s:25:\"background-overlay-menu-
a\";s:7:\"#ffffff\";s:32:\"background-overlay-menu-a-
active\";s:7:\"#B1DCFB\";s:17:\"border-menu-
plain\";s:7:\"#F2F2F2\";s:26:\"color-menu-responsive-
icon\";s:7:\"#2991d6\";s:21:\"background-action-
bar\";s:7:\"#2C2C2C\";s:11:\"color-theme\";s:7:\"#931919\";s:10:\"color-
text\";s:7:\"#626262\";s:7:\"color-a\";s:7:\"#931919\";s:13:\"color-a-
hover\";s:7:\"#780c0c\";s:16:\"color-fancy-
link\";s:7:\"#656B6F\";s:21:\"background-fancy-
link\";s:7:\"#931919\";s:22:\"color-fancy-link-
hover\";s:7:\"#931919\";s:27:\"background-fancy-link-
hover\";s:7:\"#780c0c\";s:10:\"color-note\";s:7:\"#a8a8a8\";s:10:\"color-
list\";s:7:\"#737E86\";s:20:\"background-
highlight\";s:7:\"#931919\";s:28:\"background-highlight-
section\";s:7:\"#931919\";s:8:\"color-
hr\";s:7:\"#931919\";s:17:\"background-
button\";s:7:\"#f7f7f7\";s:12:\"color-
button\";s:7:\"#747474\";s:18:\"color-footer-
theme\";s:7:\"#931919\";s:17:\"background-
footer\";s:7:\"#1d2528\";s:12:\"color-
footer\";s:7:\"#cccccc\";s:14:\"color-footer-
a\";s:7:\"#931919\";s:20:\"color-footer-a-
hover\";s:7:\"#780c0c\";s:20:\"color-footer-
heading\";s:7:\"#ffffff\";s:17:\"color-footer-
note\";s:7:\"#a8a8a8\";s:23:\"color-sliding-top-
theme\";s:7:\"#931919\";s:22:\"background-sliding-
top\";s:7:\"#1d2528\";s:17:\"color-sliding-
top\";s:7:\"#cccccc\";s:19:\"color-sliding-top-
a\";s:7:\"#931919\";s:25:\"color-sliding-top-a-
hover\";s:7:\"#780c0c\";s:25:\"color-sliding-top-
heading\";s:7:\"#ffffff\";s:22:\"color-sliding-top-
note\";s:7:\"#a8a8a8\";s:8:\"color-h1\";s:7:\"#444444\";s:8:\"color-
h2\";s:7:\"#444444\";s:8:\"color-h3\";s:7:\"#444444\";s:8:\"color-
h4\";s:7:\"#444444\";s:8:\"color-h5\";s:7:\"#444444\";s:8:\"color-
h6\";s:7:\"#444444\";s:15:\"color-tab-title\";s:7:\"#931919\";s:16:\"color-
blockquote\";s:7:\"#444444\";s:17:\"color-
contentlink\";s:7:\"#931919\";s:13:\"color-
counter\";s:7:\"#931919\";s:21:\"background-
getintouch\";s:7:\"#931919\";s:13:\"color-
iconbar\";s:7:\"#931919\";s:13:\"color-
iconbox\";s:7:\"#931919\";s:26:\"background-imageframe-
link\";s:7:\"#931919\";s:21:\"color-imageframe-
link\";s:7:\"#ffffff\";s:15:\"color-list-
icon\";s:7:\"#931919\";s:19:\"color-pricing-
price\";s:7:\"#931919\";s:27:\"background-pricing-
featured\";s:7:\"#931919\";s:22:\"background-
progressbar\";s:7:\"#931919\";s:22:\"color-quickfact-
number\";s:7:\"#931919\";s:27:\"background-slidingbox-
title\";s:7:\"#931919\";s:27:\"background-trailer-
subtitle\";s:7:\"#931919\";s:10:\"color-
form\";s:7:\"#626262\";s:15:\"background-
form\";s:7:\"#FFFFFF\";s:11:\"border-form\";s:7:\"#EBEBEB\";s:16:\"color-
form-focus\";s:7:\"#1982c2\";s:21:\"background-form-
focus\";s:7:\"#e9f5fc\";s:17:\"border-form-
focus\";s:7:\"#d5e5ee\";s:16:\"form-transparent\";s:0:\"\";s:12:\"font-
content\";s:6:\"Roboto\";s:9:\"font-menu\";s:6:\"Roboto\";s:10:\"font-
title\";s:9:\"Open Sans\";s:13:\"font-headings\";s:9:\"Open
Sans\";s:19:\"font-headings-small\";s:6:\"Roboto\";s:15:\"font-
blockquote\";s:9:\"Open Sans\";s:15:\"font-
decorative\";s:5:\"Arial\";s:11:\"font-
weight\";a:6:{i:100;s:3:\"100\";i:300;s:3:\"300\";i:400;s:3:\"400\";s:9:\"4
00italic\";s:9:\"400italic\";i:500;s:3:\"500\";i:700;s:3:\"700\";}s:11:\"fo
nt-subset\";s:0:\"\";s:17:\"font-size-content\";s:2:\"13\";s:14:\"font-
size-menu\";s:2:\"14\";s:15:\"font-size-title\";s:0:\"\";s:12:\"font-size-
h1\";s:2:\"25\";s:12:\"font-size-h2\";s:2:\"30\";s:12:\"font-size-
h3\";s:2:\"25\";s:12:\"font-size-h4\";s:2:\"21\";s:12:\"font-size-
h5\";s:2:\"15\";s:12:\"font-size-h6\";s:2:\"13\";s:22:\"font-size-single-
intro\";s:0:\"\";s:11:\"font-custom\";s:0:\"\";s:16:\"font-custom-
woff\";s:0:\"\";s:15:\"font-custom-ttf\";s:0:\"\";s:15:\"font-custom-
svg\";s:0:\"\";s:15:\"font-custom-eot\";s:0:\"\";s:12:\"font-
custom2\";s:0:\"\";s:17:\"font-custom2-woff\";s:0:\"\";s:16:\"font-custom2-
ttf\";s:0:\"\";s:16:\"font-custom2-svg\";s:0:\"\";s:16:\"font-custom2-
eot\";s:0:\"\";s:9:\"translate\";s:1:\"1\";s:28:\"translate-search-
placeholder\";s:17:\"Enter your search\";s:24:\"translate-search-
results\";s:18:\"results found for:\";s:14:\"translate-
home\";s:4:\"Home\";s:14:\"translate-prev\";s:9:\"Prev
page\";s:14:\"translate-next\";s:9:\"Next page\";s:19:\"translate-load-
more\";s:9:\"Load more\";s:17:\"translate-wpml-no\";s:39:\"No translations
available for this page\";s:16:\"translate-
before\";s:0:\"\";s:15:\"translate-after\";s:0:\"\";s:14:\"translate-
days\";s:4:\"days\";s:15:\"translate-
hours\";s:5:\"hours\";s:17:\"translate-
minutes\";s:7:\"minutes\";s:17:\"translate-
seconds\";s:7:\"seconds\";s:16:\"translate-filter\";s:9:\"Filter
by\";s:14:\"translate-tags\";s:4:\"Tags\";s:17:\"translate-
authors\";s:7:\"Authors\";s:13:\"translate-all\";s:8:\"Show
all\";s:18:\"translate-item-all\";s:0:\"\";s:19:\"translate-
published\";s:12:\"Published by\";s:12:\"translate-
at\";s:2:\"at\";s:20:\"translate-
categories\";s:10:\"Categories\";s:18:\"translate-readmore\";s:9:\"Read
more\";s:14:\"translate-like\";s:15:\"Do you like it?\";s:17:\"translate-
related\";s:13:\"Related posts\";s:16:\"translate-
client\";s:6:\"Client\";s:14:\"translate-
date\";s:4:\"Date\";s:17:\"translate-
website\";s:7:\"Website\";s:14:\"translate-view\";s:12:\"View
website\";s:14:\"translate-task\";s:4:\"Task\";s:19:\"translate-404-
title\";s:18:\"Ooops... Error 404\";s:22:\"translate-404-
subtitle\";s:62:\"We are sorry, but the page you are looking for does not
exist.\";s:18:\"translate-404-text\";s:46:\"Please check entered address
and try again or \";s:17:\"translate-404-btn\";s:14:\"go to
homepage\";s:22:\"translate-search-title\";s:0:\"\";s:25:\"translate-
search-subtitle\";s:0:\"\";s:10:\"custom-css\";s:398:\"#departments .ui-
tabs .ui-tabs-nav {\r\n text-align: center;\r\n}\r\n#departments .ui-
tabs .ui-tabs-nav li {\r\n display: inline-block;\r\n float:
none;\r\n}\r\n#departments .ui-tabs .ui-tabs-panel {\r\n overflow:
hidden;\r\n padding: 35px 20px;\r\n}\r\n#departments .ui-tabs .ui-tabs-
panel .column {\r\n margin-bottom: 25px;\r\n}\r\n#departments .ui-tabs
.ui-tabs-panel > .column {\r\n margin-bottom: 0;\r\n}\";s:9:\"custom-
js\";s:0:\"\";}','yes'),(159,'wpcf7','a:2:{s:7:\"version\";s:5:\"4.4.1\";s:
13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1461232789;s:7:\"version\";s:
5:\"4.4.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),
(160,'revslider-update-check-short','1463108643','yes'),(161,'revslider-
templates-check','1462934933','yes'),(162,'rs-templates-
new','','yes'),(163,'rs-
templates','a:2:{s:6:\"slider\";a:84:{i:0;a:19:{s:2:\"id\";s:1:\"1\";s:5:\"
title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-
carousel\";s:3:\"zip\";s:20:\"classic-
carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"
img\";s:27:\"classic-
carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.c
om/carousel-slider-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:14
1:\"<span class=\"ttm_content\">Our classic, full-width carousel example.
Drag, swipe or click to navigate!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:310:\"<span
class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;
s:4:\"date\";s:19:\"2016-02-22
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:19:{s:2:\"
id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic
Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicsli
der.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\"
;s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution
.themepunch.com/wordpress-slideshow-
gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:1
36:\" <span class=\"ttm_content\">A classic slideshow example with timer,
bullets and arrow navigation.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:19:{s:2:\"
id\";s:1:\"3\";s:5:\"title\";s:12:\"Content
Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zi
p\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:
\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepu
nch.com/wordpress-content-tabs-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:17
0:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text
animation effect. Navigate with vertical bullets and
thumbs.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:19:{s:2:\"
id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook
Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-
feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\
";s:24:\"facebook-
feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/w
ordpress-facebook-
feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"
width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\
"<span class=\"ttm_content\"> This slider is automatically populated by a
Facebook stream. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:439:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct
API information in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:1
4:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:19:{s:2:\"
id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";
s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff00
3c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"
http://revolution.themepunch.com/wordpress-one-page-slider-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\
"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183
:\" <span class=\"ttm_content\">A front-page slider that can be used as an
intro for your website. Navigate by using mouse-wheel scroll or
bullets.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:19:{s:2:\"
id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr
Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-
gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"i
mg\";s:25:\"flickr-
gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.co
m/wordpress-flickr-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173
:\" <span class=\"ttm_content\"> This slider is automatically populated by
a Flickr stream. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct
API information in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:1
4:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:19:{s:2:\"
id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zi
p\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s
:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution
.themepunch.com/one-page-wordpress-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:18
9:\"<span class=\"ttm_content\">A front-page slider that can be used as an
intro for your website. Navigate by using mouse-wheel scroll or the slider
menu.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:19:{s:2:\"
id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight
Carousel\";s:5:\"alias\";s:18:\"highlight-
carousel\";s:3:\"zip\";s:22:\"highlight-
carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"
img\";s:29:\"highlight-
carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.c
om/wordpress-swipe-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138
:\" <span class=\"ttm_content\">A swipe-controlled carousel with an
additional tab-based navigation.</span>\r\n<span
class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;
s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:19:{s:2:\"
id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight
Showcase\";s:5:\"alias\";s:18:\"highlight-
showcase\";s:3:\"zip\";s:22:\"highlight-
showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"
img\";s:29:\"highlight-
showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.c
om/wordpress-parallax-
slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s
:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s
:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow
timer and cool animations make this slider interesting!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:19:{s:2:\"
id\";s:2:\"10\";s:5:\"title\";s:10:\"Image
Hero\";s:5:\"alias\";s:10:\"image-
hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2a
dc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"previe
w\";s:54:\"http://revolution.themepunch.com/wordpress-hero-
image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\
"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121
:\"<span class=\"ttm_content\">A commonly used full-width image hero block
with texts.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:19:{s:2:\
"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram
Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-
gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"i
mg\";s:24:\"insta-
gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.co
m/wordpress-instagram-
gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:17
4:\"<span class=\"ttm_content\">This slider is automatically populated by a
Instagram stream. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:440:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct
API information in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:1
4:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:19:{s:2:\
"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant
Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanor
estaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:
3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"ht
tp://revolution.themepunch.com/wordpress-front-page-
template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:
5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:
181:\"<span class=\"ttm_content\">A front-page slider that can be used as
an intro for your website. Navigate by using mouse-wheel scroll or
bullets.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:19:{s:2:\
"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature
Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.
zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:2
2:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.theme
punch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s
:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s
:127:\" <span class=\"ttm_content\">A slightly stripped down version of the
main preview slider.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:19:{s:2:\
"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery
Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-
gallery-
two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\"
;s:28:\"media-gallery-
two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wo
rdpress-media-gallery-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:12
7:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5
and Youtube videos.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change media and titles.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:19:{s:2:\
"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel
Autoplay\";s:5:\"alias\";s:23:\"media-carousel-
autoplay\";s:3:\"zip\";s:27:\"media-carousel-
autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"
img\";s:34:\"media-carousel-
autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.c
om/wordpress-media-
gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:15
3:\"<span class=\"ttm_content\">A media carousel with \"autoplay\"
activated. Swipe or click tabs to navigate the slider.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change media and caption texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;
s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:19:{s:2:\
"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background
Video\";s:5:\"alias\";s:21:\"news-background-
video\";s:3:\"zip\";s:17:\"news-bg-
video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img
\";s:24:\"news-bg-
video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/
wordpress-content-
blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:14
3:\"<span class=\"ttm_content\">A hero block with HTML5 background video
that plays when entering the screen.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background video and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:19:{s:2:\
"id\";s:2:\"17\";s:5:\"title\";s:12:\"News
Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-
gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"i
mg\";s:23:\"news-
gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.co
m/wordpress-news-
rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:1
31:\"<span class=\"ttm_content\">A news gallery slideshow with tab
navigation. Great for any blog!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:19:{s:2:\
"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post
Based\";s:5:\"alias\";s:23:\"news-gallery-post-
based\";s:3:\"zip\";s:27:\"news-gallery-post-
based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img
\";s:34:\"news-gallery-post-
based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/
wordpress-post-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:12
5:\"<span class=\"ttm_content\"> This slider is automatically populated by
WordPress posts.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post
type you want to display in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\
"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:19:{s:2:\
"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-
hero\";s:3:\"zip\";s:13:\"news-
hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\
";s:20:\"news-
hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/w
ordpress-content-
blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:10
7:\"<span class=\"ttm_content\">A image hero block with ken burns
effect.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:19:{s:2:\
"id\";s:2:\"20\";s:5:\"title\";s:10:\"News
Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-
video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img
\";s:21:\"news-
video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/
wordpress-content-
blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:12
8:\"<span class=\"ttm_content\">A Vimeo background video hero block with
play / pause buttons.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the video and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:19:{s:2:\
"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter
Hero\";s:5:\"alias\";s:15:\"newsletter-
hero\";s:3:\"zip\";s:19:\"newsletter-
hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\
";s:26:\"newsletter-
hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/w
ordpress-newsletter-
signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:13
7:\"<span class=\"ttm_content\">This hero block uses a custom styled
Mailchimp newsletter signup field.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image, texts, and <a
href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-
newsletter-hero-template/\" target=\"_blank\">Mailchimp
code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:19:{s:2:\
"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not
Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.z
ip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21
:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepu
nch.com/wordpress-fullscreen-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:14
4:\"<span class=\"ttm_content\">A full-screen slider with a layer based
navigation and sleek content elements.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:19:{s:2:\
"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"ph
otography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b20725
47afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7
:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:19
4:\"<span class=\"ttm_content\">A front-page slider that can be used as an
intro for your website. Navigate by using mouse-wheel scroll or the layer-
based menu.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:19:{s:2:\
"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography
Carousel\";s:5:\"alias\";s:20:\"photography-
carousel\";s:3:\"zip\";s:24:\"photography-
carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"
img\";s:31:\"photography-
carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.c
om/wordpress-photo-
gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:1
96:\"<span class=\"ttm_content\">A front-page carousel that can be used as
an intro for your website. Navigate by using mouse-wheel scroll or the
layer-based menu.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;
s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:19:{s:2:\
"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form
Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-
form-
hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\
";s:27:\"search-form-
hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/w
ordpress-search-form-
hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"
width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:
\"<span class=\"ttm_content\">This hero block uses a custom styled input
field to show search results on a WordPress site.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:346:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image, texts, and search field
code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:19:{s:2:\
"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase
Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showc
asecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3
:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http:/
/revolution.themepunch.com/wordpress-cover-flow-
gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:12
9:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and
scales slider items.</span>\r\n<span
class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:310:\"<span
class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;
s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:19:{s:2:\
"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports
Hero\";s:5:\"alias\";s:11:\"sports-
hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a3
62d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"prev
iew\";s:54:\"http://revolution.themepunch.com/wordpress-image-
hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"
width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:
\"<span class=\"ttm_content\">An sports themed image hero block with
buttons.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:19:{s:2:\
"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter
Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-
feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\
";s:23:\"twitter-
feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/w
ordpress-twitter-
feed/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"
width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\
"<span class=\"ttm_content\"> This slider is automatically populated by a
Twitter stream. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct
API information in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:1
4:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:19:{s:2:\
"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo
Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-
gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"i
mg\";s:24:\"vimeo-
gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.co
m/wordpress-vimeo-
gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:1
70:\"<span class=\"ttm_content\">This slider is automatically populated by
a Vimeo stream. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:436:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API
information in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:1
4:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:19:{s:2:\
"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo
Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s
:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vim
eohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com
/wordpress-hero-
vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\
"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116
:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero
block.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background video and
texts.<br/><br/></span>\r\nScreencast for <a
href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\"
target=\"_blank\">mobile video</a>
considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:19:{s:2:\
"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product
Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-
product-
dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\
";s:27:\"web-product-
dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/w
ordpress-frontpage-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:19
4:\"<span class=\"ttm_content\">A front-page slider that can be used as an
intro for your website. Navigate by using mouse-wheel scroll or the layer-
based menu.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:19:{s:2:\
"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark
Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-
product-dark-
hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\
";s:32:\"web-product-dark-
hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/w
ordpress-header-
image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\
"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162
:\"<span class=\"ttm_content\">A modern hero block with three common
devices. The screens of each device can be changed easily!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:19:{s:2:\
"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light
Hero\";s:5:\"alias\";s:22:\"web-product-light-
hero\";s:3:\"zip\";s:26:\"web-product-light-
hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\
";s:33:\"web-product-light-
hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/h
ero-image-
wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s
:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s
:162:\"<span class=\"ttm_content\">A modern hero block with three common
devices. The screens of each device can be changed easily!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the image and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:19:{s:2:\
"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product
Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproduc
tlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"im
g\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revol
ution.themepunch.com/wordpress-cover-
page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"
width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:
\"<span class=\"ttm_content\">A front-page slider that can be used as an
intro for your website. Navigate by using mouse-wheel scroll or the layer-
based menu.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions
for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\"
target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:
4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:19:{s:2:\
"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube
Gallery\";s:5:\"alias\";s:15:\"youtube-
gallery\";s:3:\"zip\";s:19:\"youtube-
gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"i
mg\";s:26:\"youtube-
gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.co
m/wordpress-youtube-
gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5
:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:1
73:\"<span class=\"ttm_content\"> This slider is automatically populated by
a YouTube stream. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct
API information in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:1
4:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:19:{s:2:\
"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube
Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zi
p\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:
\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepu
nch.com/wordpress-youtube-
header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:10
4:\"<span class=\"ttm_content\">A YouTube video background hero
block.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:630:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background video and
texts.<br/><br/></span>\r\nScreencast for <a
href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\"
target=\"_blank\">mobile video</a>
considerations.</a>\r\n<br/><br/>\r\nLearn how to <a
href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-
template/\" target=\"_blank\">enable sound for the background video</a><br
/><br />\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:15:\"Revolution
Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:
\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:19:{s:2:\
"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll
Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-
effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"im
g\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revoluti
on.themepunch.com/big-bold-fullscreen-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:13
4:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll
effect and big, bold text.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>For further configuration options please
view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-
for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the
slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:19:{s:2:\
"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content
Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-
zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\
";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.
themepunch.com/content-zoom-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:24
3:\"<span class=\"ttm_content\">A very unique full-width slider that uses
<a href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their
potential.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:19:{s:2:\
"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food
Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-
carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"
img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://
revolution.themepunch.com/food-carousel-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:26
7:\"<span class=\"ttm_content\">A fancy carousel with detail content on
each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used
to show and hide layers.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"ca
rousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:19:{s:2:\
"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating
Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-
words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img
\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revoluti
on.themepunch.com/rotating-words-
hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"
width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:
\"<span class=\"ttm_content\">A full-screen hero block with unique animated
text and blur effects.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:518:\"<span
class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to
change the background media and texts.<br/>For further configuration
options please view the <a href=\"https://www.themepunch.com/faq/custom-
css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom
CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:19:{s:2:\
"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static
Captions\";s:5:\"alias\";s:22:\"travel-static-
captions\";s:3:\"zip\";s:26:\"travel-static-
captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"
img\";s:33:\"travel-static-
captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.c
om/travel-
slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s
:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s
:148:\"<span class=\"ttm_content\">A slideshow example with static captions
layers above a rotating image background.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:19:{s:2:\
"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\
";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f67
46725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:
\"http://revolution.themepunch.com/fullscreen-wordpress-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:23
2:\"<span class=\"ttm_content\">A full-screen slider that uses <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their
potential.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:19:{s:2:\
"id\";s:2:\"43\";s:5:\"title\";s:15:\"True
Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-
button\";s:3:\"zip\";s:21:\"fullscreen-
button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"im
g\";s:28:\"fullscreen-
button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com
/wordpress-sidebar-
slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5
:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:2
46:\"<span class=\"ttm_content\">A slider with a full-screen button that
uses <a href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their
potential.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:323:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change the background images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:19:{s:2:\
"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative
Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativ
efreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"
img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://rev
olution.themepunch.com/wordpress-touch-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"
width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:
\"<span class=\"ttm_content\">A full-screen slider with a unique vertical
navigation and 3D-parallax effects.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:316:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images, videos and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:19:{s:2:\
"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax
Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxsce
ne.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";
s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.
themepunch.com/wordpress-3d-
parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:32
8:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-
controlled effects. Smart image arrangement creates a convincing 3D effect.
Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-
doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer
Actions\"</a>.</span>\r\n</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:19:{s:2:\
"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow
Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingo
verlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"i
mg\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revo
lution.themepunch.com/responsive-wordpress-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"
width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:
\"<span class=\"ttm_content\">A 3D-parallax effect full-screen
slider.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:443:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\nScreencast for <a
href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\"
target=\"_blank\">mobile video</a>
considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:19:{s:2:\
"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web
Product\";s:5:\"alias\";s:25:\"web-product-light-hero-
3d\";s:3:\"zip\";s:29:\"web-product-light-hero-
3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";
s:36:\"web-product-light-hero-
3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wor
dpress-3d-
scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"w
idth\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\
"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a
convincing depth-effect and animated clouds.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:19:{s:2:\
"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce
Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"ui
d\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/sli
de1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommer
ce-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:17
3:\"<span class=\"ttm_content\">This slider is automatically populated by
WooCommerce posts. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the
products you want to show in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"sl
ider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\
"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:19:{s:2:\
"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce
Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocomme
rcesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"
img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://re
volution.themepunch.com/woocommerce-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"
width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\
" <span class=\"ttm_content\">This slider is automatically populated by
WooCommerce posts. Just one slide is needed to show a whole
feed!</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the
products you want to show in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"sl
ider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\
"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:19:{s:2:\
"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant
Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zi
p\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:
\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepun
ch.com/restaurant-hero-
header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:27
5:\"<span class=\"ttm_content\">A full-screen hero block slider that shows
different background layers on button hover using <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer
Actions\"</a>.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\nScreencast for <a
href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\"
target=\"_blank\">mobile video</a>
considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:19:{s:2:\
"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website
Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-
intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img
\";s:23:\"agency-
intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/
agency-website-hero-
header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:30
2:\" <span class=\"ttm_content\">A full-screen hero block slider with ken
burns effect and video modal on button click. <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used
to achieve this effect.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:19:{s:2:\
"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team
Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3
:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourte
am/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thu
mbnail-hover-slider-revolution-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:
\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:30
3:\"<span class=\"ttm_content\">A team slider that changes slides and
displays additional information on thumbnail hover. It uses <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve
this effect.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:691:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\nLearn how to <a
href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-
template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:19:{s:2:\
"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team
Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-
team-
carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"
img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://rev
olution.themepunch.com/thumbnail-hover-carousel-slider-revolution-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:
\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:30
6:\" <span class=\"ttm_content\">A team carousel that changes slides and
displays additional information on thumbnail hover. It uses <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve
this effect.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:693:\"<span
class=\"ttm_content\">This is a \"Default\" content carousel. Edit the
slides to change images and texts.<br/>It might be helpful to use the
\"hide/show layer\" feature to efficiently edit all content.<br/>Some
content is in <a href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\nLearn how to <a
href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-
template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"ca
rousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:19:{s:2:\
"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube
Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryout
ube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\"
;s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution
.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:
\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:29
3:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K
videos as an example. <a href=\"https://www.themepunch.com/revslider-
doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>
are used to breathe life into navigation elements.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:532:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change videos and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all
content.<br/><br/></span>\r\nScreencast for <a
href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\"
target=\"_blank\">mobile video</a>
considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:19:{s:2:\
"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website
Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agen
cywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\"
;s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\
"http://revolution.themepunch.com/fullscreen-hero-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:24
5:\" <span class=\"ttm_content\">A very unique full-screen slider that uses
<a href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their
potential.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:543:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:19:{s:2:\
"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming
Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\
";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"
comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch
.com/coming-soon-wordpress-under-construction-
site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"
width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:
\"<span class=\"ttm_content\">A full-screen slider that can be used as a
\"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-
doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>
are used to achieve various interaction possibilities.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:661:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>For further configuration options please
view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-
for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the
slider settings.<br/><br/></span>\r\nInstructions for <a
href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-
template/\" target=\"_blank\">how to change the date.</a><br /><br
/>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:19:{s:2:\
"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow
Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";
s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"sn
owscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.co
m/christmas-snow-
scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\
"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141
:\"<span class=\"ttm_content\">A slider with multiple christmas themed
slides and a neat snow fall effect.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>For further configuration options please
view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-
for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the
slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:19:{s:2:\
"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band
Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:
3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rock
band/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/r
ock-band-music-theme-slider-revolution-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:14
0:\" <span class=\"ttm_content\">A rock band themed hero block slider with
an embedded SoundCloud element.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background video and
texts.<br/><br/></span>\r\nScreencast for <a
href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\"
target=\"_blank\">mobile video</a>
considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout
our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:19:{s:2:\
"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing
Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleekland
ingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"i
mg\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://rev
olution.themepunch.com/landing-page-free-wordpress-
template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:
5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:
191:\"<span class=\"ttm_content\">A full-screen slider that can be used as
an App-Landing-Page. The object layers and custom animations create a
unique effect.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22
13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:19:{s:2:\
"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing
Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingp
age.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\"
;s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolutio
n.themepunch.com/app-landing-page-free-
template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:
5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:
263:\"<span class=\"ttm_content\">A full-screen hero block that can be used
as an app landing page. The detail view is build using <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>It might be helpful to use the \"hide/show
layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:19:{s:2:\
"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk
Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";
s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"de
skscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.co
m/hero-desk-
scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\
"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135
:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal
effect when scrolling down.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span
class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit
the slide to change the background image and
texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"he
ro\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:19:{s:2:\
"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News
Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannew
sslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"i
mg\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revo
lution.themepunch.com/wordpress-news-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:13
2:\"<span class=\"ttm_content\">A slideshow example with clean content and
thumbnail navigation.</span>\r\n<span
class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Just edit the
slides to change images and texts.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:19:{s:2:\
"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image
Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegalle
ry.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";
s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.t
hemepunch.com/wordpress-photo-gallery-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:
\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:23
9:\"<span class=\"ttm_content\">A photo gallery suitable to display your
images using <a href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\">\"Layer Actions\"</a> to their
potential.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:19:{s:2:\
"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP
Gallery\";s:5:\"alias\";s:19:\"standard-wp-
gallery\";s:3:\"zip\";s:23:\"standard-wp-
gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"i
mg\";s:30:\"standard-wp-
gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.co
m/wordpress-photo-gallery-
plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:
\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:14
3:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP
Gallery\" add-on to display images.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:441:\"<span
class=\"ttm_content\">Please follow the setup guide on the \"Standard WP
Gallery\" add-on page.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"sl
ider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"
revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP
Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-
photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:19:{s:2:\
"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post
Based\";s:5:\"alias\";s:21:\"clean-news-post-
based\";s:3:\"zip\";s:25:\"clean-news-post-
based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img
\";s:32:\"clean-news-post-
based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/
wordpress-news-
slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:
\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:12
5:\"<span class=\"ttm_content\"> This slider is automatically populated by
WordPress posts.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span
class=\"ttm_content\">The content source is set to <a
href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\"
target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post
type you want to display in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"sl
ider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\
"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:19:{s:2:\
"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive
Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:
\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec522584
5e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"previe
w\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-
animation-free-
addon/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\
"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269
:\"<span class=\"ttm_content\">This is the example slider from the
Whiteboard add-on preview.<br/><a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain
effects.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:572:\"<span
class=\"ttm_content\">This slider template requires the <a
href=\"https://www.themepunch.com/revslider-doc/add-on-whiteboard/\"
target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to
change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-
addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard
AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-
whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:19:{s:2:\
"id\";s:2:\"68\";s:5:\"title\";s:22:\"Innovation Sticky
Menu\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\
";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"
innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunc
h.com/best-wordpress-slider-plugin-
2016/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:
\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:28
2:\"<span class=\"ttm_content\">A full-screen slider with a sticky layer
menu and an elegant fade-out parallax effect. <a
href=\"https://www.themepunch.com/revslider-doc/layer-
settings/#layeractions\">\"Layer Actions\"</a> are used for links on
layers.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:516:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images, videos and texts.<br/>For further configuration options
please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-
javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a>
section in the slider settings.<br/><br/></span>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:21:{s:2:\
"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block -
Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-
menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-
menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\
";s:35:\"dark-fullsite-block-
menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/
dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:68;a:21:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content
Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-
1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-
1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s
:32:\"dark-fullsite-block-
1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dar
k-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:69;a:21:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content
Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-
about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-
about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img
\";s:38:\"dark-fullsite-block-2-
about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com
/dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:70;a:21:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content
Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-
services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-
services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"
img\";s:41:\"dark-fullsite-block-3-
services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.
com/dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:71;a:21:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content
Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-
products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-
products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"
img\";s:41:\"dark-fullsite-block-4-
products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.
com/dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s
:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:72;a:21:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content
Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-
testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-
testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:
3:\"img\";s:45:\"dark-fullsite-block-5-
testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepu
nch.com/dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:73;a:21:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content
Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-
callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-
callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"i
mg\";s:40:\"dark-fullsite-block-6-
callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.c
om/dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:74;a:21:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content
Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-
footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-
footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"im
g\";s:39:\"dark-fullsite-block-7-
footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.co
m/dark-wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:13:\"Fullsite
Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b
:1;}i:75;a:21:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content
Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-
menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-
menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\
";s:30:\"fullsite-block-
menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/
wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:76;a:21:{s:2:\"id\";s:2:\"78\";s
:5:\"title\";s:26:\"Light Content Block -
Hero\";s:5:\"alias\";s:15:\"fullsite-
block1\";s:3:\"zip\";s:25:\"packs/fullsite-
block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"im
g\";s:26:\"fullsite-
block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.co
m/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:77;a:21:{s:2:\"id\";s:2:\"79\";s
:5:\"title\";s:27:\"Light Content Block -
About\";s:5:\"alias\";s:22:\"fullsite-block-2-
about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-
about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img
\";s:33:\"fullsite-block-2-
about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com
/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:78;a:21:{s:2:\"id\";s:2:\"80\";s
:5:\"title\";s:30:\"Light Content Block -
Services\";s:5:\"alias\";s:25:\"fullsite-block-3-
services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-
services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"
img\";s:36:\"fullsite-block-3-
services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.
com/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:79;a:21:{s:2:\"id\";s:2:\"81\";s
:5:\"title\";s:30:\"Light Content Block -
Products\";s:5:\"alias\";s:25:\"fullsite-block-4-
products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-
products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"
img\";s:36:\"fullsite-block-4-
products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.
com/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:80;a:21:{s:2:\"id\";s:2:\"82\";s
:5:\"title\";s:34:\"Light Content Block -
Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-
testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-
testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:
3:\"img\";s:40:\"fullsite-block-5-
testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepu
nch.com/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:81;a:21:{s:2:\"id\";s:2:\"83\";s
:5:\"title\";s:29:\"Light Content Block -
Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-
callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-
callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"i
mg\";s:35:\"fullsite-block-6-
callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.c
om/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:82;a:21:{s:2:\"id\";s:2:\"84\";s
:5:\"title\";s:28:\"Light Content Block -
Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-
footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-
footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"im
g\";s:34:\"fullsite-block-7-
footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.co
m/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\
"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157
:\"<span class=\"ttm_content\">You can use this slider as a module on your
website or install it as part of a slider pack.</span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span
class=\"ttm_content\">If you want to setup the full website example as seen
in the preview, please follow the <a
href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\"
target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span
class=\"ttm_content\">Checkout our <a
href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic Slider
Revolution
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:
\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"
installed\";b:0;s:10:\"new_slider\";b:1;}i:83;a:20:{s:2:\"id\";s:2:\"85\";s
:5:\"title\";s:12:\"Tech
Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal
.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:
22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.the
mepunch.com/wordpress-parallax-
theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5
:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:1
44:\"<span class=\"ttm_content\">A full-screen slider with a unique layout
and a sleek fade-out scroll effect. </span>\r\n<span
class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span
class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides
to change images and texts.<br/>Some content is in <a
href=\"https://www.themepunch.com/revslider-doc/second-
steps/#staticlayers\" target=\"_blank\">\"Static / Global
Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our
<a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-
documentation/\" target=\"_blank\">Documentation</a> for basic
help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"sl
ider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00
00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider
\";b:1;}}s:6:\"slides\";a:84:{s:16:\"classic-
carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:27:\"classic-
carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:27:\"classic-
carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:27:\"classic-
carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:27:\"classic-
carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
5\";s:3:\"img\";s:27:\"classic-
carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";
s:7:\"Slide
1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s
:7:\"Slide
2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s
:7:\"Slide
3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s
:7:\"Slide
4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s
:7:\"Slide
5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:
3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7
:\"Slide
2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7
:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-
feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"facebook-
feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"S
lide
2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"S
lide
3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"S
lide
4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"S
lide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-
gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:25:\"flickr-
gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-
carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:29:\"highlight-
carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:29:\"highlight-
carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:29:\"highlight-
carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-
showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:29:\"highlight-
showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:29:\"highlight-
showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:29:\"highlight-
showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-
hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-
gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"insta-
gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"tit
le\";s:7:\"Slide
1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"tit
le\";s:7:\"Slide
2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"tit
le\";s:7:\"Slide
3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"tit
le\";s:7:\"Slide
4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"tit
le\";s:7:\"Slide
5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeatur
e\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7
:\"Slide
2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7
:\"Slide
3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7
:\"Slide
4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7
:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-
gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:28:\"media-gallery-
two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:28:\"media-gallery-
two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:28:\"media-gallery-
two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:28:\"media-gallery-
two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-
carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:34:\"media-carousel-
autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:34:\"media-carousel-
autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:34:\"media-carousel-
autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:34:\"media-carousel-
autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-
background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-
gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:23:\"news-
gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:23:\"news-
gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:23:\"news-
gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-
post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-
hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-
hero/slide1.jpg\";}}s:10:\"news-
video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-
hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:26:\"newsletter-
hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"S
lide
1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:
\"Slide
2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:
\"Slide
3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:
\"Slide
4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:
\"Slide
5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:
{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7
:\"Slide
2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7
:\"Slide
3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7
:\"Slide
4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7
:\"Slide
5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7
:\"Slide
6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7
:\"Slide
7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7
:\"Slide
8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7
:\"Slide
9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8
:\"Slide
10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-
carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:31:\"photography-
carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:31:\"photography-
carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:31:\"photography-
carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:31:\"photography-
carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
5\";s:3:\"img\";s:31:\"photography-
carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide
6\";s:3:\"img\";s:31:\"photography-
carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide
7\";s:3:\"img\";s:31:\"photography-
carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide
8\";s:3:\"img\";s:31:\"photography-
carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide
9\";s:3:\"img\";s:31:\"photography-
carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide
10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-
form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:27:\"search-form-
hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s
:7:\"Slide
1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\
";s:7:\"Slide
2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\
";s:7:\"Slide
3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\
";s:7:\"Slide
4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\
";s:7:\"Slide
5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\
";s:7:\"Slide
6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\
";s:7:\"Slide
7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\
";s:7:\"Slide
8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\
";s:7:\"Slide
9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-
hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-
feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-
gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"vimeo-
gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"
Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-
dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-
product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:27:\"web-product-
dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:27:\"web-product-
dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-
dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-
product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:33:\"web-product-light-
hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:
7:\"Slide
1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\"
;s:7:\"Slide
2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\"
;s:7:\"Slide
3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\"
;s:7:\"Slide
4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-
gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:26:\"youtube-
gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7
:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-
effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:
7:\"Slide
2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:
7:\"Slide
3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-
zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7
:\"Slide
2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7
:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-
carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:
7:\"Slide
2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:
7:\"Slide
3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:
7:\"Slide
4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:
7:\"Slide
5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:
7:\"Slide
6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:
7:\"Slide
7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-
words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-
captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:33:\"travel-static-
captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:33:\"travel-static-
captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:33:\"travel-static-
captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:33:\"travel-static-
captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"S
lide
1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"S
lide
2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"S
lide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-
button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:28:\"fullscreen-
button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:28:\"fullscreen-
button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:28:\"fullscreen-
button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:28:\"fullscreen-
button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
5\";s:3:\"img\";s:28:\"fullscreen-
button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";
s:7:\"Slide
1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\"
;s:7:\"Slide
2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\"
;s:7:\"Slide
3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\
";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\
";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\"
;s:7:\"Slide
2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\"
;s:7:\"Slide
3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-
light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:36:\"web-product-light-hero-
3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:
{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";
a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-
intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:23:\"agency-
intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slid
e
1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"S
lide
2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"S
lide
3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"S
lide
4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"S
lide
5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"S
lide
6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"S
lide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-
carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\"
;s:7:\"Slide
2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\"
;s:7:\"Slide
3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\"
;s:7:\"Slide
4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\"
;s:7:\"Slide
5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\"
;s:7:\"Slide
6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\"
;s:7:\"Slide
7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\
";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s
:7:\"Slide
2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s
:7:\"Slide
3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsitehea
der\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"tit
le\";s:7:\"Slide
2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"tit
le\";s:7:\"Slide
3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon
\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:
\"Slide
2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:
\"Slide
3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0
;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\
"Slide
2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\
"Slide
3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a
:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:
3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\
";s:7:\"Slide
2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\
";s:7:\"Slide
3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpag
e\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:
{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:
5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\"
;s:7:\"Slide
2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\"
;s:7:\"Slide
3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\"
;s:7:\"Slide
4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\"
;s:7:\"Slide
5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\"
;a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:
7:\"Slide
2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:
7:\"Slide
3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:
7:\"Slide
4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:
7:\"Slide
5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:
7:\"Slide
6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:
7:\"Slide
7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:
7:\"Slide
8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-
gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-
news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:32:\"clean-news-post-
based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"tit
le\";s:7:\"Slide
1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"t
itle\";s:7:\"Slide
2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"t
itle\";s:7:\"Slide
3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"t
itle\";s:7:\"Slide
4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"t
itle\";s:7:\"Slide
5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"t
itle\";s:7:\"Slide
6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"t
itle\";s:7:\"Slide
7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"t
itle\";s:7:\"Slide
8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovati
on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:
\"Slide
2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:
\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-
fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-
fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-
fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-
about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-
about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-
services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-
services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-
services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-
products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-
products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-
products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-
products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-
products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-
products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-
testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-
testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-
callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-
callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-
footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-
footer/slide1.jpg\";}}s:19:\"fullsite-block-
menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-
block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-
block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:33:\"fullsite-block-2-
about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:33:\"fullsite-block-2-
about/slide2.jpg\";}}s:25:\"fullsite-block-3-
services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:36:\"fullsite-block-3-
services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:36:\"fullsite-block-3-
services/slide2.jpg\";}}s:25:\"fullsite-block-4-
products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:36:\"fullsite-block-4-
products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide
2\";s:3:\"img\";s:36:\"fullsite-block-4-
products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide
3\";s:3:\"img\";s:36:\"fullsite-block-4-
products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide
4\";s:3:\"img\";s:36:\"fullsite-block-4-
products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide
5\";s:3:\"img\";s:36:\"fullsite-block-4-
products/slide5.jpg\";}}s:29:\"fullsite-block-5-
testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:40:\"fullsite-block-5-
testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-
callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:35:\"fullsite-block-6-
callout/slide1.jpg\";}}s:23:\"fullsite-block-7-
footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide
1\";s:3:\"img\";s:34:\"fullsite-block-7-
footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:
\"Slide
1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7
:\"Slide
2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7
:\"Slide
3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}}}','yes'),(164,'revslide
r_checktables','1','yes'),(165,'revslider_table_version','1.0.6','yes'),(16
6,'revslider-global-settings','a:0:{}','yes'),(167,'ls-plugin-
version','5.6.2','yes'),(168,'ls-db-version','5.0.0','yes'),(169,'ls-
installed','1','yes'),(170,'ls-google-
fonts','a:4:{i:0;a:2:{s:5:\"param\";s:28:\"Lato:100,300,regular,700,900\";s
:5:\"admin\";b:0;}i:1;a:2:{s:5:\"param\";s:13:\"Open+Sans:300\";s:5:\"admin
\";b:0;}i:2;a:2:{s:5:\"param\";s:20:\"Indie+Flower:regular\";s:5:\"admin\";
b:0;}i:3;a:2:{s:5:\"param\";s:22:\"Oswald:300,regular,700\";s:5:\"admin\";b
:0;}}','yes'),(171,'ls-date-
installed','1461232885','yes'),(175,'revslider_update_version','5.1.1','yes
'),(176,'widget_layerslider_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes
'),(177,'widget_rev-slider-
widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(178,'vc_version','4.11.2
.1','yes'),(179,'duplicate_post_copyexcerpt','1','yes'),(180,'duplicate_pos
t_copyattachments','0','yes'),(181,'duplicate_post_copychildren','0','yes')
,(182,'duplicate_post_copystatus','0','yes'),(183,'duplicate_post_taxonomie
s_blacklist','a:0:{}','yes'),(184,'duplicate_post_show_row','1','yes'),(185
,'duplicate_post_show_adminbar','1','yes'),(186,'duplicate_post_show_submit
box','1','yes'),(187,'duplicate_post_version','2.6','yes'),(188,'revslider-
valid-
notice','false','yes'),(189,'layerslider_update_info','O:8:\"stdClass\":2:{
s:15:\"_latest_version\";s:5:\"5.6.8\";s:7:\"checked\";i:1463133271;}','yes
'),(191,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_ch
ecked\";i:1463133280;s:7:\"checked\";a:3:{s:13:\"betheme-
child\";s:3:\"1.6\";s:7:\"betheme\";s:4:\"12.7\";s:13:\"twentysixteen\";s:3
:\"1.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(192
,'theme_mods_betheme-
child','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:5:{s:9:\"main-
menu\";i:6;s:14:\"secondary-menu\";i:0;s:9:\"lang-menu\";i:0;s:11:\"social-
menu\";i:0;s:18:\"social-menu-bottom\";i:0;}}','yes'),(198,'ls-latest-
version','5.6.8','yes'),(200,'WP_HPUW','a:3:{s:3:\"ver\";s:3:\"1.0\";s:13:\
"notifications\";i:1;s:7:\"updates\";a:10:{i:0;s:19:\"akismet/akismet.php\"
;i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:33:\"duplicate-
post/duplicate-post.php\";i:3;s:59:\"force-regenerate-thumbnails/force-
regenerate-thumbnails.php\";i:4;s:9:\"hello.php\";i:5;s:51:\"hide-core-
update-notice/hide-core-update-
notice.php\";i:6;s:27:\"LayerSlider/layerslider.php\";i:7;s:23:\"revslider/
revslider.php\";i:8;s:45:\"hide-plugin-updates-
notifications/wphdpuw.php\";i:9;s:27:\"js_composer/js_composer.php\";}}','y
es'),(203,'client-types_children','a:0:{}','yes'),(204,'offer-
types_children','a:0:{}','yes'),(205,'portfolio-
types_children','a:0:{}','yes'),(206,'slide-
types_children','a:0:{}','yes'),(207,'testimonial-
types_children','a:0:{}','yes'),(208,'_transient_timeout_mfn-opts-
saved','1461756100','no'),(209,'_transient_mfn-opts-
saved','1','no'),(210,'widget_widget_mfn_recent_posts','a:2:{i:2;a:3:{s:5:\
"title\";s:12:\"Latest
posts\";s:5:\"count\";i:2;s:8:\"category\";s:0:\"\";}s:12:\"_multiwidget\";
i:1;}','yes'),(212,'revslider-static-css','.tp-caption a {\n-webkit-
transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-
transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-
out;\n}','yes'),(220,'_site_transient_timeout_browser_bc112cfb64c6aea307437
5d7f8337bbf','1461893222','yes'),(221,'_site_transient_browser_bc112cfb64c6
aea3074375d7f8337bbf','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\"
;s:6:\"Chrome\";s:7:\"version\";s:13:\"49.0.2623.112\";s:10:\"update_url\";
s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordp
ress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://w
ordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18
\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(239,'nav_menu_option
s','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(242,'widget_widget_mfn_f
lickr','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(243,'widget_wid
get_mfn_login','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(244,'wi
dget_widget_mfn_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(
245,'widget_widget_mfn_recent_comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget
\";i:1;}','yes'),(246,'widget_widget_mfn_tag_cloud','a:2:{i:1;a:0:{}s:12:\"
_multiwidget\";i:1;}','yes'),(248,'_site_transient_timeout_available_transl
ations','1461313662','yes'),(249,'_site_transient_available_translations','
a:79:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"4.5
\";s:7:\"updated\";s:19:\"2016-04-10
1
5:55:55\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"
;"\s:7:\"package\";s:59:\"https://downloads.wordpress.org/translatio
n/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:19:\"2
016-04-13 14:44:00\";s:12:\"english_name\";s:15:\"Moroccan
Arabic\";s:11:\"native_name\";s:31:\"
;"\s:7:\"package\";s:60:\"https://downloads.wordpress.org/translati
on/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:19:\"2
016-04-12
22:48:01\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";
s:16:\"Azrbaycan
dili\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/c
ore/4.5/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"str
ings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"languag
e\";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/translat
ion/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:3:\"4.5\";s:7:\"updated\";
s:19:\"2016-04-12
14:55:51\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:1
8:\"\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/tran
slation/core/4.5/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\
";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"\";}}s:5:\"bn_BD
\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"
updated\";s:19:\"2016-02-08
13:17:04\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:
\"\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translat
ion/core/4.4.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:3:\"4.5\";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:62:\"https://downloads.wordpress.org/translat
ion/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:19:\"
2016-04-11
06:38:51\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\
"Catal\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translatio
n/core/4.5/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:\"l
anguage\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.2\";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/translati
on/core/4.4.2/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:\"
etina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translatio
n/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:\"Pokraovat\";}}s:2:\"cy\";a:8:{
s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:1
9:\"2016-04-11
14:21:06\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"C
ymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation
/core/4.5/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"s
trings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"la
nguage\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2
016-04-11
15:42:12\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"
Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/
core/4.5/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&#230;t\";}}s:14:\"de_CH_infor
mal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"4
.5\";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:71:\"https://downloads.wordpress.org/translation/co
re/4.5/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_DE\";a:8:{s:8:\"language\
";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-
21
22:34:42\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"
Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translatio
n/core/4.5/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1
:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_CH\";a:8:{s:8:\"language\
";s:5:\"de_CH\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-
12 19:26:41\";s:12:\"english_name\";s:20:\"German
(Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch
(Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translat
ion/core/4.5/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a
:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:12:\"de_DE_formal\";a:8:{s:8:\
"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated
\";s:19:\"2016-04-21 22:37:39\";s:12:\"english_name\";s:15:\"German
(Formal)\";s:11:\"native_name\";s:13:\"Deutsch
(Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/
core/4.5/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\
";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"languag
e\";s:2:\"el\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-
13
21:14:17\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"
\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translati
on/core/4.5/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_AU\";a:8:{s:8
:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:1
9:\"2016-04-13 06:26:11\";s:12:\"english_name\";s:19:\"English
(Australia)\";s:11:\"native_name\";s:19:\"English
(Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/transl
ation/core/4.5/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";
i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s
:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"4.5\
";s:7:\"updated\";s:19:\"2016-04-13
06:26:54\";s:12:\"english_name\";s:21:\"English (New
Zealand)\";s:11:\"native_name\";s:21:\"English (New
Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.5\";s
:7:\"updated\";s:19:\"2016-04-13
12:51:07\";s:12:\"english_name\";s:12:\"English
(UK)\";s:11:\"native_name\";s:12:\"English
(UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/c
ore/4.5/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3
:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en
_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.4.2\";s:7
:\"updated\";s:19:\"2015-12-15
11:52:35\";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/translatio
n/core/4.4.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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"4.5\";
s:7:\"updated\";s:19:\"2016-04-10
05:23:57\";s:12:\"english_name\";s:16:\"English
(Canada)\";s:11:\"native_name\";s:16:\"English
(Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3
;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:
\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"4.5\";s:7:\"u
pdated\";s:19:\"2016-04-11
10:58:49\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9
:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/trans
lation/core/4.5/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:\"Darigi\";}}s:5:\"es_MX\";a:8:{s
:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s
:19:\"2016-04-12 21:06:55\";s:12:\"english_name\";s:16:\"Spanish
(Mexico)\";s:11:\"native_name\";s:19:\"Espaol de
Mxico\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation
/core/4.5/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_CL\";a:8:{s:
8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:
19:\"2016-04-13 01:09:28\";s:12:\"english_name\";s:15:\"Spanish
(Chile)\";s:11:\"native_name\";s:17:\"Espaol de
Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/
core/4.5/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_GT\";a:8:{s:8
:\"language\";s:5:\"es_GT\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:1
9:\"2016-04-13 12:43:00\";s:12:\"english_name\";s:19:\"Spanish
(Guatemala)\";s:11:\"native_name\";s:21:\"Espaol de
Guatemala\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translat
ion/core/4.5/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_ES\";a:8:
{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\"
;s:19:\"2016-04-13 08:02:56\";s:12:\"english_name\";s:15:\"Spanish
(Spain)\";s:11:\"native_name\";s:8:\"Espaol\";s:7:\"package\";s:62:\"https
://downloads.wordpress.org/translation/core/4.5/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.
4.2\";s:7:\"updated\";s:19:\"2016-01-13
06:14:13\";s:12:\"english_name\";s:19:\"Spanish
(Venezuela)\";s:11:\"native_name\";s:21:\"Espaol de
Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translat
ion/core/4.4.2/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: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:\"Espaol de
Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translati
on/core/4.3-
RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strin
gs\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"lan
guage\";s:5:\"es_AR\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"20
16-04-19 21:32:12\";s:12:\"english_name\";s:19:\"Spanish
(Argentina)\";s:11:\"native_name\";s:21:\"Espaol de
Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translat
ion/core/4.5/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:3:\"4.5\";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:\"Espaol de
Per\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/c
ore/4.5/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:2:\"et\";a:8:{s:8:\"l
anguage\";s:2:\"et\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"201
6-04-12
11:11:25\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:
\"Eesti\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translatio
n/core/4.5/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:\"Jtka\";}}s:2:\"eu\";a:8:{s:8:\"langu
age\";s:2:\"eu\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2016-
04-13
07:34:31\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"
Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translatio
n/core/4.5/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.4.2\";s:7:\"updated\";s:1
9:\"2016-01-31
19:24:20\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:
\";"\s:7:\"package\";s:64:\"https://downloads.wordpress.org/translatio
n/core/4.4.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:3:\"4.5\";s:7:\"updated\";s:19:\"2
016-04-10
18:44:50\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\
"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation
/core/4.5/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"s
trings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"lan
guage\";s:5:\"fr_BE\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"20
16-04-11 07:33:47\";s:12:\"english_name\";s:16:\"French
(Belgium)\";s:11:\"native_name\";s:21:\"Franais de
Belgique\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/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:3:\"4.5\";s:7:\"updated\";
s:19:\"2016-04-21 13:31:45\";s:12:\"english_name\";s:15:\"French
(France)\";s:11:\"native_name\";s:9:\"Franais\";s:7:\"package\";s:62:\"htt
ps://downloads.wordpress.org/translation/core/4.5/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:3:\"
4.5\";s:7:\"updated\";s:19:\"2016-04-11
14:59:03\";s:12:\"english_name\";s:15:\"French
(Canada)\";s:11:\"native_name\";s:19:\"Franais du
Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation
/core/4.5/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.3\";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:\"Gidhlig\";s:7:\"package\";s:61:\"https
://downloads.wordpress.org/translation/core/4.3.3/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:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-13
01:36:32\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:
\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/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/cor
e/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:\"h
e_IL\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-16
1
3:14:11\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"

;"\s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/
core/4.5/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{
s:8:\"continue\";s:12:\"}};"\s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:
\"hi_IN\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-13
05:38:21\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"
\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:19:\"20
16-04-11
11:36:25\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:
\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/transla
tion/core/4.5/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.4.2\";s:7:\"updated\";s
:19:\"2016-02-03
14:37:42\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6
:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translat
ion/core/4.4.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";
}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovbb\";}}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/transla
tion/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.4.2\";s:7:\"updat
ed\";s:19:\"2015-12-21
16:17:50\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s
:16:\"Bahasa
Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translat
ion/core/4.4.2/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:3:\"4.5\";s:7:\"updated
\";s:19:\"2016-04-11
00:36:03\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9
:\"slenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/transl
ation/core/4.5/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:3:\"4.5\";s:7:\"updated\";s
:19:\"2016-04-13
07:56:36\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\
"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translat
ion/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:19:\
"2016-04-13
07:25:35\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:
\"
\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/
4.5/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"co
ntinue\";s:9:\"
\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:
\"4.5\";s:7:\"updated\";s:19:\"2016-04-11
09:29:35\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21
:\"\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/transl
ation/core/4.5/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:3:\"4.5\";s:7:\"update
d\";s:19:\"2016-04-11
13:18:25\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"
\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/
core/4.5/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:\"la
nguage\";s:5:\"lt_LT\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"2
016-04-10
06:34:16\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s
:15:\"Lietuvi
kalba\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/
core/4.5/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:\"Tsti\";}}s:5:\"ms_MY\";a:8:{s:8:\"l
anguage\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:
\"2016-01-28
05:41:39\";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.4.2/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.10\";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:\"ht
tps://downloads.wordpress.org/translation/core/4.1.10/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:3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-13
12:35:50\";s:12:\"english_name\";s:19:\"Norwegian
(Bokml)\";s:11:\"native_name\";s:13:\"Norsk
bokml\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation
/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:1
9:\"2016-04-21
14:00:55\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"
Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/transla
tion/core/4.5/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_forma
l\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.4.2
\";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/translat
ion/core/4.4.2/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_N
O\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:3:\"4.5\";s:7:\"u
pdated\";s:19:\"2016-04-11
07:36:04\";s:12:\"english_name\";s:19:\"Norwegian
(Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk
nynorsk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translatio
n/core/4.5/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.4.2\";s:7:\"updated\";s:19:\"2016-02-08
16:21:37\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\
"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.4.2/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.4.2\";s:7:\"updated\
";s:19:\"2016-03-24
15:31:29\";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.4.2/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.10\";s:7:\"updated\";s:1
9:\"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/c
ore/4.1.10/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"
strings\";a:1:{s:8:\"continue\";s:8:\"}};"\s:5:\"pt_BR\";a:8:{s:8:\"lan
guage\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"20
16-04-15 14:13:00\";s:12:\"english_name\";s:19:\"Portuguese
(Brazil)\";s:11:\"native_name\";s:20:\"Portugus do
Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation
/core/4.5/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:3:\"4.5\";s:7:\"updated\";s:
19:\"2016-04-20 22:33:43\";s:12:\"english_name\";s:21:\"Portuguese
(Portugal)\";s:11:\"native_name\";s:10:\"Portugus\";s:7:\"package\";s:62:\
"https://downloads.wordpress.org/translation/core/4.5/pt_PT.zip\";s:3:\"iso
\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continu
ar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:
3:\"4.5\";s:7:\"updated\";s:19:\"2016-04-12
14:49:03\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:
\"Romn\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/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:3:\"4.5\";s:7:\"updated\";s
:19:\"2016-04-13
18:04:14\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:
\"\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translat
ion/core/4.5/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:3:\"4.5\";s:7:\"updated
\";s:19:\"2016-04-13
07:35:55\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\
"Slovenina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/transl
ation/core/4.5/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:\"Pokraova\";}}s:5:\"sl_SI\";
a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"upd
ated\";s:19:\"2015-11-26
00:00:18\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:1
3:\"Slovenina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/tr
anslation/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:10:\"Nadaljujte\";}}s:2:\"sq
\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"4.5\";s:7:\"updat
ed\";s:19:\"2016-04-12
10:47:53\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:
\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translatio
n/core/4.5/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:\"l
anguage\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"4.5\";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:62:\"https://downloads.wordpress.org/translation/
core/4.5/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:3:\"4.5\";s:7:\"updated\";s:19
:\"2016-04-12
18:15:27\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\
"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translati
on/core/4.5/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:\"Fortstt\";}}s:2:\"th\";a:8:{s:8:
\"language\";s:2:\"th\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:19:\"
2016-04-17
17:33:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"
\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core
/4.5/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"string
s\";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/translati
on/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:3:\"4.5\";s:7:\"updated\"
;s:19:\"2016-04-21
01:31:12\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\
"Trke\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translatio
n/core/4.5/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:6:\"4.1.10\";s:7:\"updated\";s:
19:\"2015-03-26
16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"
Uyurq\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translatio
n/core/4.1.10/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:3:\"4.5\";s:7:\"updated\";
s:19:\"2016-04-14
23:32:23\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:2
0:\"\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/tra
nslation/core/4.5/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:\"Ting
Vit\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/c
ore/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"s
trings\";a:1:{s:8:\"continue\";s:12:\"Tip
tc\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s
:3:\"4.5\";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:62:\"https://downloads.wordpress.org/translation/core/
4.5/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"stri
ngs\";a:1:{s:8:\"continue\";s:6:\"
\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:
\"4.5\";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:62:\"https://downloads.wordpress.org/translation/core/
4.5/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"stri
ngs\";a:1:{s:8:\"continue\";s:6:\"
\";}}}','yes'),(250,'WPLANG','','yes'),(261,'numberposts','10','yes'),(262,
'widget_listcategorypostswidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(269,'_site_transient_timeout_browser_7410fa8650dec5fe7447978231d12676','14
61927606','yes'),(270,'_site_transient_browser_7410fa8650dec5fe7447978231d1
2676','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";
s:7:\"version\";s:12:\"50.0.2661.86\";s:10:\"update_url\";s:28:\"http://www
.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/b
rowsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/imag
es/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\
";b:0;s:8:\"insecure\";b:0;}','yes'),(271,'_transient_timeout_settings_erro
rs','1461755130','no'),(272,'_transient_settings_errors','a:1:{i:0;a:4:{s:7
:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"m
essage\";s:15:\"Settings
saved.\";s:4:\"type\";s:7:\"updated\";}}','no'),(274,'category_children','a
:0:{}','yes'),(300,'wpglobus_option_language_names','a:20:{s:2:\"en\";s:7:\
"English\";s:2:\"ru\";s:14:\"\";s:2:\"de\";s:7:\"Deutsch\";s:2:\"zh\
";s:6:\"
\";s:2:\"fi\";s:5:\"Suomi\";s:2:\"fr\";s:9:\"Franais\";s:2:\"nl\";s:10:\"N
ederlands\";s:2:\"sv\";s:7:\"Svenska\";s:2:\"it\";s:8:\"Italiano\";s:2:\"ro
\";s:8:\"Romn\";s:2:\"hu\";s:6:\"Magyar\";s:2:\"ja\";s:9:\"
\";s:2:\"es\";s:8:\"Espaol\";s:2:\"vi\";s:14:\"Ting
Vit\";s:2:\"ar\";s:14:\";"\s:2:\"pt\";s:10:\"Portugus\";s:2:\"br\"
;s:20:\"Portugus do
Brazil\";s:2:\"pl\";s:6:\"Polski\";s:2:\"gl\";s:6:\"Galego\";s:2:\"id\";s:6
:\"Bahasa\";}','yes'),(301,'wpglobus_option_en_language_names','a:20:{s:2:\
"en\";s:7:\"English\";s:2:\"ru\";s:7:\"Russian\";s:2:\"de\";s:6:\"German\";
s:2:\"zh\";s:7:\"Chinese\";s:2:\"fi\";s:7:\"Finnish\";s:2:\"fr\";s:6:\"Fren
ch\";s:2:\"nl\";s:5:\"Dutch\";s:2:\"sv\";s:7:\"Swedish\";s:2:\"it\";s:7:\"I
talian\";s:2:\"ro\";s:8:\"Romanian\";s:2:\"hu\";s:9:\"Hungarian\";s:2:\"ja\
";s:8:\"Japanese\";s:2:\"es\";s:7:\"Spanish\";s:2:\"vi\";s:10:\"Vietnamese\
";s:2:\"ar\";s:6:\"Arabic\";s:2:\"pt\";s:10:\"Portuguese\";s:2:\"br\";s:17:
\"Portuguese
Brazil\";s:2:\"pl\";s:6:\"Polish\";s:2:\"gl\";s:8:\"Galician\";s:2:\"id\";s
:6:\"Bahasa\";}','yes'),(302,'wpglobus_option_locale','a:20:{s:2:\"en\";s:5
:\"en_US\";s:2:\"ru\";s:5:\"ru_RU\";s:2:\"de\";s:5:\"de_DE\";s:2:\"zh\";s:5
:\"zh_CN\";s:2:\"fi\";s:2:\"fi\";s:2:\"fr\";s:5:\"fr_FR\";s:2:\"nl\";s:5:\"
nl_NL\";s:2:\"sv\";s:5:\"sv_SE\";s:2:\"it\";s:5:\"it_IT\";s:2:\"ro\";s:5:\"
ro_RO\";s:2:\"hu\";s:5:\"hu_HU\";s:2:\"ja\";s:2:\"ja\";s:2:\"es\";s:5:\"es_
ES\";s:2:\"vi\";s:2:\"vi\";s:2:\"ar\";s:2:\"ar\";s:2:\"pt\";s:5:\"pt_PT\";s
:2:\"br\";s:5:\"pt_BR\";s:2:\"pl\";s:5:\"pl_PL\";s:2:\"gl\";s:5:\"gl_ES\";s
:2:\"id\";s:5:\"id_ID\";}','yes'),(303,'wpglobus_option_flags','a:20:{s:2:\
"en\";s:6:\"us.png\";s:2:\"ru\";s:6:\"ru.png\";s:2:\"de\";s:6:\"de.png\";s:
2:\"zh\";s:6:\"cn.png\";s:2:\"fi\";s:6:\"fi.png\";s:2:\"fr\";s:6:\"fr.png\"
;s:2:\"nl\";s:6:\"nl.png\";s:2:\"sv\";s:6:\"se.png\";s:2:\"it\";s:6:\"it.pn
g\";s:2:\"ro\";s:6:\"ro.png\";s:2:\"hu\";s:6:\"hu.png\";s:2:\"ja\";s:6:\"jp
.png\";s:2:\"es\";s:6:\"es.png\";s:2:\"vi\";s:6:\"vn.png\";s:2:\"ar\";s:8:\
"arle.png\";s:2:\"pt\";s:6:\"pt.png\";s:2:\"br\";s:6:\"br.png\";s:2:\"pl\";
s:6:\"pl.png\";s:2:\"gl\";s:10:\"galego.png\";s:2:\"id\";s:6:\"id.png\";}',
'yes'),(304,'wpglobus_option_versioning','a:1:{s:15:\"current_version\";s:5
:\"1.5.0\";}','yes'),(307,'widget_wpglobus','a:1:{s:12:\"_multiwidget\";i:1
;}','yes'),(308,'redux_version_upgraded_from','3.5.8.1','yes'),(309,'_trans
ient_timeout__redux_activation_redirect','1461377375','no'),(310,'_transien
t__redux_activation_redirect','1','no'),(312,'wpglobus_option','a:8:{s:8:\"
last_tab\";s:0:\"\";s:17:\"enabled_languages\";a:2:{s:2:\"en\";s:1:\"1\";s:
2:\"id\";s:6:\"Bahasa\";}s:14:\"more_languages\";s:0:\"\";s:14:\"show_flag_
name\";s:4:\"code\";s:12:\"use_nav_menu\";s:0:\"\";s:22:\"selector_wp_list_
pages\";a:1:{s:13:\"show_selector\";s:0:\"\";}s:10:\"css_editor\";s:36:\"
\";s:9:\"post_type\";a:10:{s:4:\"post\";s:1:\"1\";s:4:\"page\";s:1:\"1\";s:
12:\"vc_grid_item\";s:1:\"1\";s:6:\"client\";s:1:\"1\";s:5:\"offer\";s:1:\"
1\";s:9:\"portfolio\";s:1:\"1\";s:5:\"slide\";s:1:\"1\";s:11:\"testimonial\
";s:1:\"1\";s:6:\"layout\";s:1:\"1\";s:8:\"template\";s:1:\"1\";}}','yes'),
(313,'wpglobus_option-
transients','a:3:{s:14:\"changed_values\";a:1:{s:12:\"use_nav_menu\";s:9:\"
main-
menu\";}s:9:\"last_save\";i:1461377321;s:13:\"last_compiler\";i:1461377321;
}','yes'),(314,'_transient_timeout_select2-
css_style_cdn_is_up','1461463535','no'),(315,'_transient_select2-
css_style_cdn_is_up','1','no'),(316,'_transient_timeout_select2-
js_script_cdn_is_up','1461463535','no'),(317,'_transient_select2-
js_script_cdn_is_up','1','no'),(324,'widget_surstudio-translator-
revolution-
dropdown','a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(326,'transla
tor-revolution-dropdown-
main','a:1:{s:6:\"verify\";a:1:{s:5:\"value\";a:4:{s:5:\"email\";s:14:\"ari
ni@rubyh.co\";s:18:\"item_purchase_code\";s:36:\"fb45f8e7-5886-4271-93b1-
8527bbfda580\";s:17:\"verification_code\";s:32:\"e445c23addff78e86716c0fb64
f851f1\";s:11:\"support_pin\";s:32:\"a2c84375e5b58817f077d6809152854c\";}}}
','yes'),(327,'translator-revolution-dropdown-
settings','a:6:{s:7:\"api_key\";a:1:{s:5:\"value\";s:36:\"fb45f8e7-5886-
4271-93b1-
8527bbfda580\";}s:4:\"from\";a:1:{s:5:\"value\";s:2:\"id\";}s:9:\"languages
\";a:1:{s:5:\"value\";a:2:{i:0;s:2:\"id\";i:1;s:2:\"en\";}}s:15:\"location_
widget\";a:1:{s:5:\"value\";s:5:\"false\";}s:15:\"location_custom\";a:1:{s:
5:\"value\";s:14:\"#search_button\";}s:27:\"custom_location_insert_mode\";a
:1:{s:5:\"value\";s:5:\"after\";}}','yes'),(328,'translator-revolution-
dropdown-cache-
validate','true','yes'),(332,'gadash_options','{\"ga_dash_clientid\":\"\",\
"ga_dash_clientsecret\":\"\",\"ga_dash_access_front\":[\"administrator\"],\
"ga_dash_access_back\":[\"administrator\"],\"ga_dash_tableid_jail\":\"\",\"
ga_dash_style\":\"#1e73be\",\"switch_profile\":0,\"ga_dash_cachetime\":3600
,\"ga_dash_tracking\":1,\"ga_dash_tracking_type\":\"universal\",\"ga_dash_d
efault_ua\":\"\",\"ga_dash_anonim\":0,\"ga_dash_userapi\":\"1\",\"ga_event_
tracking\":0,\"ga_event_downloads\":\"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|
rar*\",\"ga_track_exclude\":[],\"ga_target_geomap\":\"\",\"ga_realtime_page
s\":10,\"ga_dash_token\":\"\",\"ga_dash_profile_list\":[],\"ga_enhanced_lin
ks\":0,\"ga_dash_remarketing\":0,\"ga_dash_network\":0,\"ga_dash_adsense\":
0,\"ga_speed_samplerate\":1,\"ga_event_bouncerate\":0,\"ga_crossdomain_trac
king\":0,\"ga_crossdomain_list\":\"\",\"ga_author_dimindex\":0,\"ga_categor
y_dimindex\":0,\"ga_tag_dimindex\":0,\"ga_user_dimindex\":0,\"ga_pubyear_di
mindex\":0,\"ga_aff_tracking\":0,\"ga_event_affiliates\":\"\\/out\\/\",\"au
tomatic_updates_minorversion\":0,\"backend_item_reports\":1,\"frontend_item
_reports\":0,\"dashboard_widget\":1,\"api_backoff\":0,\"ga_cookiedomain\":\
"\",\"ga_cookiename\":\"\",\"ga_cookieexpires\":\"\",\"ga_dash_excludesa\":
0,\"ga_hash_tracking\":0,\"ga_dash_hidden\":\"Y\"}','yes'),(333,'gadwp_vers
ion','4.9.3.1','yes'),(334,'gadwp_got_updated','1','yes'),(335,'widget_gadw
p-frontwidget-
report','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(359,'revslider-
connection','1','yes'),(410,'auto_core_update_notified','a:4:{s:4:\"type\";
s:7:\"success\";s:5:\"email\";s:13:\"aris@rubyh.co\";s:7:\"version\";s:5:\"
4.5.2\";s:9:\"timestamp\";i:1462574756;}','yes'),(417,'revslider-latest-
version','5.2.5.1','yes'),(418,'revslider-stable-
version','4.2','yes'),(419,'revslider-
notices','a:3:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.0.9\";s:4:\"
text\";s:230:\"<a href=\"http://revolution.themepunch.com/direct-customer-
benefits/\" target=\"_blank\"><img
src=\"http://updates.themepunch.tools/banners/updatenow51_banner.jpg\"
style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1 is out\"
></a>\";s:4:\"code\";s:9:\"TPRS51-
01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;
s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.
1.4\";s:4:\"text\";s:242:\"<a
href=\"http://revolution.themepunch.com/direct-customer-
benefits/?ref=515b\" target=\"_blank\"><img
src=\"http://updates.themepunch.tools/banners/updatenow_banner515.jpg\"
style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1.5 is out\"
></a>\";s:4:\"code\";s:10:\"TPRS515-
01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;
s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.
1.6\";s:4:\"text\";s:240:\"<a
href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=52b\"
target=\"_blank\"><img
src=\"http://updates.themepunch.tools/banners/updatenow_banner52.jpg\"
style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1.5 is out\"
></a>\";s:4:\"code\";s:10:\"TPRS515-
01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;
s:10:\"additional\";a:0:{}}}','yes'),(420,'revslider-
dashboard','O:8:\"stdClass\":1:{s:11:\"test-
handle\";O:8:\"stdClass\":5:{s:12:\"version_from\";s:5:\"5.0.0\";s:10:\"ver
sion_to\";s:5:\"5.0.0\";s:5:\"order\";i:5;s:7:\"content\";s:181:\"<div
class=\"rs-dash-widget\"><div class=\"rs-dash-title-wrap\"><div class=\"rs-
dash-title\">your version is: {{current_version}}</div></div><div
class=\"rs-dash-widget-
inner\"></div></div>\";s:4:\"code\";s:0:\"\";}}','yes'),(421,'revslider-
addons','O:8:\"stdClass\":4:{s:26:\"revslider-whiteboard-
addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:26:\"revslider-whiteboard-
addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9
\";s:5:\"title\";s:107:\"<img style=\"margin-top:6px;\"
src=\"http://updates.themepunch.tools/addons/images/whiteboard_small_logo.p
ng\">\";s:6:\"line_1\";s:31:\"Create Hand-Drawn
Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable &
engaging\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:70:\"http:
//updates.themepunch.tools/addons/images/whiteboard_widget_bg.jpg\";s:6:\"b
utton\";s:11:\"How to use?\";}s:22:\"revslider-backup-
addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:22:\"revslider-backup-
addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9
\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make
Backups\";s:6:\"line_2\";s:25:\"Revisions for your
safety\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\
"button\";s:11:\"How to use?\";}s:23:\"revslider-gallery-
addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:23:\"revslider-gallery-
addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9
\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:6:\"line_1\";s:31:\"Replace
the Standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your
choice\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\
"button\";s:9:\"Configure\";}s:25:\"revslider-rel-posts-
addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:25:\"revslider-rel-posts-
addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9
.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related
Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post
content\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:
\"button\";s:9:\"Configure\";}}','yes'),(438,'_site_transient_timeout_brows
er_4a365ff8788d6c1fed0f877284f4c743','1462360638','yes'),(439,'_site_transi
ent_browser_4a365ff8788d6c1fed0f877284f4c743','a:9:{s:8:\"platform\";s:5:\"
Linux\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"50.0.2661.75\";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'),(4
40,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1461
766782','yes'),(441,'_site_transient_poptags_40cd750bba9870f18aada2478b2484
0a','a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:
6:\"widget\";s:5:\"count\";s:4:\"5800\";}s:4:\"post\";a:3:{s:4:\"name\";s:4
:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3598\";}s:6:\"plugi
n\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"coun
t\";s:4:\"3560\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\
";s:5:\"admin\";s:5:\"count\";s:4:\"3071\";}s:5:\"posts\";a:3:{s:4:\"name\"
;s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2756\";}s:9:\
"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortco
de\";s:5:\"count\";s:4:\"2287\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"si
debar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2191\";}s:6:\"goog
le\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"cou
nt\";s:4:\"2062\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"
slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2009\";}s:4:\"page\";a:3:{s:4:\"
name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1981\";}s
:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";
s:5:\"count\";s:4:\"1967\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"commen
ts\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1922\";}s:5:\"image\
";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";
s:4:\"1843\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slu
g\";s:8:\"facebook\";s:5:\"count\";s:4:\"1654\";}s:11:\"woocommerce\";a:3:{
s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"c
ount\";s:4:\"1572\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\"
;s:3:\"seo\";s:5:\"count\";s:4:\"1549\";}s:9:\"wordpress\";a:3:{s:4:\"name\
";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1523
\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"soci
al\";s:5:\"count\";s:4:\"1351\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"ga
llery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1292\";}s:5:\"link
s\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\
";s:4:\"1276\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";
s:5:\"email\";s:5:\"count\";s:4:\"1194\";}s:7:\"widgets\";a:3:{s:4:\"name\"
;s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1091\";}s
:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5
:\"count\";s:4:\"1056\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:
4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1002\";}s:5:\"media\";a:3:{s:
4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"965
\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:
\"ecommerce\";s:5:\"count\";s:3:\"949\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:
\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"909\";}s:5:\"video\";a
:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3
:\"901\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"aj
ax\";s:5:\"count\";s:3:\"900\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"con
tent\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"887\";}s:5:\"login\
";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";
s:3:\"882\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:
\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"828\";}s:10:\"responsive\"
;a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5
:\"count\";s:3:\"806\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddyp
ress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"786\";}s:8:\"se
curity\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s
:5:\"count\";s:3:\"758\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4
:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"753\";}s:10:\"e-
commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-
commerce\";s:5:\"count\";s:3:\"748\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"
feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"741\";}s:7:\"youtube\"
;a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count
\";s:3:\"741\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:
4:\"spam\";s:5:\"count\";s:3:\"740\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\
"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"733\";}s:4:\"link\"
;a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3
:\"731\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";
s:8:\"category\";s:5:\"count\";s:3:\"693\";}s:6:\"photos\";a:3:{s:4:\"name\
";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"686\";}s:9
:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analy
tics\";s:5:\"count\";s:3:\"678\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"emb
ed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"675\";}s:3:\"css\";a:3:
{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"670\
";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:
5:\"count\";s:3:\"666\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:
4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"649\";}s:6:\"slider\";a:3:{s:
4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"6
40\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:
9:\"slideshow\";s:5:\"count\";s:3:\"638\";}s:6:\"custom\";a:3:{s:4:\"name\"
;s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"632\";}s:5:
\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"
count\";s:3:\"610\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"
slug\";s:6:\"button\";s:5:\"count\";s:3:\"602\";}s:7:\"comment\";a:3:{s:4:\
"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"59
4\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme
\";s:5:\"count\";s:3:\"589\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s
:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"588\";}s:4:\"tags\";a:3:{s:4:\
"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"585\";}s
:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"das
hboard\";s:5:\"count\";s:3:\"585\";}s:10:\"categories\";a:3:{s:4:\"name\";s
:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"574
\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobi
le\";s:5:\"count\";s:3:\"566\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:
\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"558\";}
s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"co
unt\";s:3:\"553\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\"
;s:4:\"user\";s:5:\"count\";s:3:\"544\";}s:6:\"editor\";a:3:{s:4:\"name\";s
:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"540\";}s:5:\"
users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"co
unt\";s:3:\"528\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\"
;s:4:\"list\";s:5:\"count\";s:3:\"524\";}s:7:\"picture\";a:3:{s:4:\"name\";
s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"513\";}s:7
:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\"
;s:5:\"count\";s:3:\"510\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affil
iate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"509\";}s:6:\"simp
le\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"cou
nt\";s:3:\"496\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4
:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"496\";}s:12:\"social-
media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-
media\";s:5:\"count\";s:3:\"494\";}s:12:\"contact-
form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-
form\";s:5:\"count\";s:3:\"486\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"c
ontact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"469\";}s:8:\"pict
ures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5
:\"count\";s:3:\"457\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"s
lug\";s:4:\"shop\";s:5:\"count\";s:3:\"453\";}s:3:\"api\";a:3:{s:4:\"name\"
;s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"439\";}s:3:\"url\
";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:
\"439\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"sl
ug\";s:10:\"navigation\";s:5:\"count\";s:3:\"437\";}s:9:\"marketing\";a:3:{
s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\"
;s:3:\"437\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:
\"html\";s:5:\"count\";s:3:\"436\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"f
lash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"423\";}s:4:\"meta\";a
:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\
"418\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slu
g\";s:10:\"newsletter\";s:5:\"count\";s:3:\"415\";}s:6:\"events\";a:3:{s:4:
\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"414
\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"
calendar\";s:5:\"count\";s:3:\"410\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:
8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"407\";}s:4
:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"co
unt\";s:3:\"405\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s
:3:\"tag\";s:5:\"count\";s:3:\"405\";}s:11:\"advertising\";a:3:{s:4:\"name\
";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:
\"399\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"sl
ug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"396\";}s:9:\"thumbnail\";a:3:{
s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\"
;s:3:\"392\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\
";s:7:\"sharing\";s:5:\"count\";s:3:\"388\";}s:6:\"upload\";a:3:{s:4:\"name
\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"388\";}s:
6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s
:5:\"count\";s:3:\"388\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"no
tification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"388\";}
s:4:\"text\";a:3:{s:4:\"name\";s:4:\"text\";s:4:\"slug\";s:4:\"text\";s:5:\
"count\";s:3:\"388\";}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slu
g\";s:4:\"code\";s:5:\"count\";s:3:\"386\";}s:8:\"lightbox\";a:3:{s:4:\"nam
e\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"384\
";}}','yes'),(465,'_site_transient_timeout_browser_417e1e24fa1f00dc5b43465a
bbe2bbda','1462431543','yes'),(466,'_site_transient_browser_417e1e24fa1f00d
c5b43465abbe2bbda','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:
\"Chrome\";s:7:\"version\";s:13:\"49.0.2623.112\";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://wordpr
ess.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:
7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(468,'_site_transient_time
out_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','1462433211','yes'),(469,'_si
te_transient_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','a:9:{s:8:\"platform
\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet
Explorer\";s:7:\"version\";s:2:\"11\";s:10:\"update_url\";s:51:\"http://www
.microsoft.com/windows/internet-
explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/i
e.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/i
e.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:0;s:8:\"insecu
re\";b:0;}','yes'),(546,'_site_transient_timeout_browser_28214ab198646fbf06
eba3c39b9c5e15','1462594408','yes'),(547,'_site_transient_browser_28214ab19
8646fbf06eba3c39b9c5e15','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\
";s:6:\"Chrome\";s:7:\"version\";s:13:\"49.0.2623.112\";s:10:\"update_url\"
;s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.word
press.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:\"1
8\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(587,'_site_transien
t_timeout_browser_6d10a357034eb5c7a65cea735b565aff','1462754269','yes'),(58
8,'_site_transient_browser_6d10a357034eb5c7a65cea735b565aff','a:9:{s:8:\"pl
atform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\
"45.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\
";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_sr
c_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"c
urrent_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','ye
s'),(712,'_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:\"downlo
ad\";s:59:\"https://downloads.wordpress.org/release/wordpress-
4.5.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":
5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-
4.5.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/rele
ase/wordpress-4.5.2-no-
content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/r
elease/wordpress-4.5.2-new-
bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5
:\"4.5.2\";s:7:\"version\";s:5:\"4.5.2\";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:1463133269;s:15:\"ver
sion_checked\";s:5:\"4.5.2\";s:12:\"translations\";a:0:{}}','yes'),(763,'_s
ite_transient_timeout_browser_868fe583ddbbdb165d5e05e1ff7b8ef1','1463539745
','yes'),(764,'_site_transient_browser_868fe583ddbbdb165d5e05e1ff7b8ef1','a
:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"ve
rsion\";s:12:\"50.0.2661.94\";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/brows
ers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:
8:\"insecure\";b:0;}','yes'),(805,'_transient_timeout_plugin_slugs','146312
5304','no'),(806,'_transient_plugin_slugs','a:14:{i:0;s:19:\"akismet/akisme
t.php\";i:1;s:36:\"contact-form-7/wp-contact-form-
7.php\";i:2;s:33:\"duplicate-post/duplicate-post.php\";i:3;s:59:\"force-
regenerate-thumbnails/force-regenerate-thumbnails.php\";i:4;s:43:\"google-
analytics-dashboard-for-
wp/gadwp.php\";i:5;s:9:\"hello.php\";i:6;s:51:\"hide-core-update-
notice/hide-core-update-
notice.php\";i:7;s:27:\"LayerSlider/layerslider.php\";i:8;s:23:\"playerzbr/
playerzbr.php\";i:9;s:23:\"revslider/revslider.php\";i:10;s:78:\"wp-
translator-revolution-dropdown/surstudio-translator-revolution-
dropdown.php\";i:11;s:27:\"js_composer/js_composer.php\";i:12;s:45:\"hide-
plugin-updates-notifications/wphdpuw.php\";i:13;s:25:\"zopim-live-
chat/zopim.php\";}','no'),(809,'_site_transient_timeout_browser_0556f062a9c
5e5cf244de1ef1c3cc993','1463644722','yes'),(810,'_site_transient_browser_05
56f062a9c5e5cf244de1ef1c3cc993','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:
4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"7.0.4\";s:10:\"update_url\"
;s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.word
press.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://
wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5
\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(825,'_site_transient
_timeout_browser_ba15455fccb9905222bc9a1407aad9eb','1463713454','yes'),(826
,'_site_transient_browser_ba15455fccb9905222bc9a1407aad9eb','a:9:{s:8:\"pla
tform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"
50.0.2661.94\";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'),(827,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7c
a','1463151908','no'),(828,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7c
a','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"d
ata\";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:\"x
ml_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
"\";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:\"WordPres
s
News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_bas
e\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:1
1:\"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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:
{s:4:\"data\";s:31:\"Fri, 06 May 2016 19:22:48
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_explic
it\";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-alpha-
37424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"d
ata\";s:36:\"\n \n \n \n \n
: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_e
xplicit\";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_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_exp
licit\";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:\"dat
a\";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:\"\";}}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
[&#8230;]\";s: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/elem
ents/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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/mod
ules/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 cordinate 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:\"xm
l_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";
s:36:\"\n \n \n \n \n
: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_e
xplicit\";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_exp
licit\";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:\"dat
a\";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:\"desc
ription\";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
[&#8230;]\";s: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/elem
ents/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_ba
se_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:213
4:\"<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&amp;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:2;a:6:{s:4:\"data\";s:36:\"\n \n \n
"\";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:\"WordPres
s 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_exp
licit\";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:\"dat
a\";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:\"desc
ription\";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 youre writing or building your
site. Editing Improvements Inline Linking Stay focused on your writing with
a less distracting interface that keeps you in
[&#8230;]\";s: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/elem
ents/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:27078:
\"<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 youre 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&#038;ssl=1\" alt=\"illustration-
short-inlinelinks\"
srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-
short-inlinelinks.png?w=1000&amp;ssl=1 1000w,
https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-
inlinelinks.png?resize=300%2C120&amp;ssl=1 300w,
https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-
inlinelinks.png?resize=768%2C307&amp;ssl=1 768w\" sizes=\"(max-width:
1000px) 100vw, 1000px\" 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&#038;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 theyre even more
useful, with horizontal lines and <code>&lt;code&gt;</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&#038;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&amp;ssl=1 1000w,
https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-
responsive-preview.png?resize=300%2C120&amp;ssl=1 300w,
https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-
responsive-preview.png?resize=768%2C307&amp;ssl=1 768w\" sizes=\"(max-
width: 1000px) 100vw, 1000px\" 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&#038;ssl=1\"
srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-
short-customlogo-whitespace.png?w=1000&amp;ssl=1 1000w,
https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-
customlogo-whitespace.png?resize=300%2C132&amp;ssl=1 300w,
https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-
customlogo-whitespace.png?resize=768%2C338&amp;ssl=1 768w\" sizes=\"(max-
width: 1000px) 100vw, 1000px\" 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/\">Its 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
&amp;s=180&amp;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</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</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</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\">Liam Dempsey</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&#246;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&#248;
Johnsg&#229;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\">scottbrowncons
ulting</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&#252;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&#246;</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>&nbsp;</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_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:
\"\n \n \n \n \n
icit\";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_expli
cit\";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_expl
icit\";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_exp
licit\";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_b
ase_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:\"descr
iption\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"The second release candidate
for WordPress 4.5 is now available. We&#8217;ve made 91 changes since the
first release candidate. RC means we think were done, but with millions of
users and thousands of plugins and themes, its possible weve missed
something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need
your help
[&#8230;]\";s: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/elem
ents/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&#8217;ve made <a
href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mo
de=stop_on_copy&amp;rev=37171&amp;stop_rev=37078&amp;limit=120&amp;verbose=
on\">91 changes</a> since the first release candidate. RC means we think
were done, but with millions of users and thousands of plugins and themes,
its possible weve 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 havent tested 4.5 yet, now is the
time!</p>\n<p><strong>Think you&#8217;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&#8217;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 whats 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&#8217;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&#8217;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:4;a:6:{s:4:\"da
ta\";s:33:\"\n \n \n \n \n
g\";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_expli
cit\";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_expl
icit\";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_exp
licit\";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:\"a
ttribs\";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 projects 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
[&#8230;]\";s: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/elem
ents/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/co
ntent/\";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 projects </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 &#8211; 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&#8217;s important that users have the option to choose a variant during
some of our sessions. And if you&#8217;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:\"\";}}}}}i:5;a:6:{s:4:\"data\
";s:39:\"\n \n \n \n \n
icit\";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:31:\"WordPress 4.5 Release
Candidate\";s: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:67:\"https://wordpress.org/news/2016/03/wordpress-4-5-release-
candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{
s:4:\"data\";s:31:\"Thu, 24 Mar 2016 03:50:27
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_b
ase_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=4165\";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:\"descr
iption\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"The release candidate for
WordPress 4.5 is now available. We&#8217;ve made 49 changes since releasing
Beta 4 a week ago. RC means we think were done, but with millions of users
and thousands of plugins and themes, its possible weve missed something.
We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help
[&#8230;]\";s: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/elem
ents/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:2251:\
"<p>The release candidate for WordPress 4.5 is now
available.</p>\n<p>We&#8217;ve made <a
href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mo
de=stop_on_copy&amp;rev=37077&amp;stop_rev=37026&amp;limit=120&amp;verbose=
on\">49 changes</a> since releasing Beta 4 a week ago. RC means we think
were done, but with millions of users and thousands of plugins and themes,
its possible weve 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 havent tested 4.5 yet, now is the
time!</p>\n<p><strong>Think you&#8217;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&#8217;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-RC1.zip\">download the release
candidate here</a> (zip).</p>\n<p>For more information about whats 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&#8217;s
<em>Tested up to</em> version in the readme to 4.5 before next week. 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>Be sure to <a
href=\"https://make.wordpress.org/core/\">follow along the core development
blog</a>, where we&#8217;ll continue to post <a
href=\"https://make.wordpress.org/core/tag/dev-notes+4-5/\">notes for
developers</a> for 4.5.</p>\n<p><em>Free as in Freedom</em><br />\n<em>It
is WordPress 4.5</em><br />\n<em>Also free as in
beer</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xm
l_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";
s:42:\"\n \n \n \n \n
ml_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.5 Beta
4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explici
t\";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/03/wordpress-4-5-beta-
4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:31:\"Thu, 17 Mar 2016 04:30:25
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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_b
ase_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"b
eta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";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=4155\";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.5 Beta 4 is now available!
This software is still in development, so we dont 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.5, try the WordPress Beta Tester plugin
(youll want bleeding edge nightlies). Or you can
[&#8230;]\";s: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/elem
ents/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:3392:\
"<p>WordPress 4.5 Beta 4 is now available!</p>\n<p>This software is still
in development, so we dont 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.5, try the <a href=\"https://wordpress.org/plugins/wordpress-
beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> plugin (youll
want bleeding edge nightlies). Or you can <a
href=\"https://wordpress.org/wordpress-4.5-beta4.zip\"
target=\"_blank\">download the beta here</a> (zip).</p>\n<p>For more
information on what&#8217;s new in 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>, and <a
href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\">Beta
3</a> blog posts, along with <a
href=\"https://make.wordpress.org/core/tag/4-5+dev-notes/\">in-depth field
guides on make/core</a>. This is the final <a
href=\"https://make.wordpress.org/core/version-4-5-project-
schedule/\">planned beta</a> of WordPress 4.5, with a release candidate
scheduled for next week.</p>\n<p>Some of the changes in Beta 4
include:</p>\n<ul>\n<li>Add support for oEmbed <strong>moments and
timelines from Twitter</strong> (<a
href=\"https://core.trac.wordpress.org/ticket/36197\">#36197</a>).</li>\n<l
i>More changes to better support <strong>HHVM with
Imagick</strong>.<strong> </strong>Please test with HHVM setups and
resizing/rotating images (<a
href=\"https://core.trac.wordpress.org/ticket/35973\">#35973</a>).</li>\n<l
i>Tightened up the <strong>Inline Link</strong> feature (<a
href=\"https://core.trac.wordpress.org/ticket/33301\">#33301</a>, <a
href=\"https://core.trac.wordpress.org/ticket/30468\">#30468</a>).</li>\n<l
i>Support <code>&lt;hr&gt;</code> <strong>editor shortcut</strong> with 3
or more dashes (<code>---</code>); no spaces. To give more time to study
the best shortcuts for users, text patterns for bold and italic have been
removed and won&#8217;t ship with for 4.5 (<a
href=\"https://core.trac.wordpress.org/ticket/33300\">#33300</a>).</li>\n<l
i>Fixes for <strong>SSL with Responsive Images</strong>. Please test with
SSL, especially on sites with mixed http/https setups (<a
href=\"https://core.trac.wordpress.org/ticket/34945\">#34945</a>).</li>\n<l
i>Allow rewrite rules to work in nested <strong>WordPress installations on
IIS</strong> (<a
href=\"https://core.trac.wordpress.org/ticket/35558\">#35558</a>).</li>\n<l
i><strong>Various bug fixes</strong>. We&#8217;ve made <a
href=\"https://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=st
op_on_copy&amp;rev=37025&amp;stop_rev=36932&amp;limit=200&amp;verbose=on\">
almost 100 changes</a> during the last week.</li>\n</ul>\n<p><strong>If you
think youve found a bug</strong>, you can post to the <a
href=\"https://wordpress.org/support/forum/alphabeta\"
target=\"_blank\">Alpha/Beta area</a> in the support forums. Wed love to
hear from you! If youre comfortable writing a reproducible bug report, <a
href=\"https://make.wordpress.org/core/reports/\" target=\"_blank\">file
one on the WordPress Trac</a>. There, you can also find <a
href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">a
list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p
class=\"p1\"><em>Llegamos al fin</em><br />\n<em>del tiempo pa&#8217;
beta</em><br />\n<em>Prubalo
Ahora!</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:7;a:6:{s:4:\"data\
";s:42:\"\n \n \n \n \n
ml_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.5 Beta
3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explici
t\";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/03/wordpress-4-5-beta-
3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:31:\"Thu, 10 Mar 2016 06:59:26
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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_b
ase_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"b
eta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";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=4128\";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.5 Beta 3 is now available!
This software is still in development, so we dont 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.5, try the WordPress Beta Tester plugin
(youll want bleeding edge nightlies). Or you can
[&#8230;]\";s: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/elem
ents/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:3631:\
"<p>WordPress 4.5 Beta 3 is now available!</p>\n<p>This software is still
in development<strong>,</strong> so we dont 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.5, try the <a
href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"
target=\"_blank\">WordPress Beta Tester</a> plugin (youll want bleeding
edge nightlies). Or you can <a href=\"https://wordpress.org/wordpress-4.5-
beta3.zip\" target=\"_blank\">download the beta here</a> (zip).</p>\n<p>For
more information on what&#8217;s new in 4.5, check out the <a
href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta
1</a> and <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-
2/\">Beta 2</a> blog posts, along with <a
href=\"https://make.wordpress.org/core/tag/4-5+dev-notes/\">in-depth field
guides on make/core</a>. Some of the fixes in Beta 3
include:</p>\n<ul>\n<li>Many <strong>Theme Logo Support</strong> (<a
href=\"https://core.trac.wordpress.org/ticket/33755\">#33755</a>) fixes,
including support for bundled Twenty Fifteen (<a
href=\"https://core.trac.wordpress.org/ticket/35944\">#35944</a>).</li>\n<l
i>Add <strong>Responsive Preview</strong> to theme install previewer (<a
href=\"https://core.trac.wordpress.org/ticket/36017\">#36017</a>).</li>\n<l
i>Support <strong>Imagick in HHVM</strong> (<a
href=\"https://core.trac.wordpress.org/ticket/35973\">#35973</a>).</li>\n<l
i><strong>Whitelist IPTC, XMP, and EXIF profiles</strong> from
<code>strip_meta()</code> to maintain authorship, copyright, license, and
image orientation (<a
href=\"https://core.trac.wordpress.org/ticket/28634\">#28634</a>).</li>\n<l
i>Support <strong>Windows shares/DFS roots</strong> in
<code>wp_normalize_path()</code> (<a
href=\"https://core.trac.wordpress.org/ticket/35996\">#35996</a>).</li>\n<l
i><span class=\"s1\">New installs default to <strong>generating secret keys
and salts locally</strong> instead of relying on the <span
class=\"s2\">WordPress.org</span> API. Please test installing WP in
situations where it cant connect to the internet <span class=\"s1\">(like
on a ?, , or ?) </span></span><span class=\"s1\">(<a
href=\"https://core.trac.wordpress.org/ticket/35290\">#35290</a>).</span></
li>\n<li>OPTIONS requests to REST API should <strong>return Allow
header</strong> (<a
href=\"https://core.trac.wordpress.org/ticket/35975\">#35975</a>).</li>\n<l
i>Upgrade twemoji.js to version 2 (<a
href=\"https://core.trac.wordpress.org/ticket/36059\">#36059</a>) and add
extra IE11 compatibility (<a
href=\"https://core.trac.wordpress.org/ticket/35977\">#35977</a>) for
<strong>Emoji</strong>.</li>\n<li><strong>Various bug fixes</strong>.
We&#8217;ve made <a
href=\"https://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=st
op_on_copy&amp;rev=36931&amp;stop_rev=36814&amp;limit=200&amp;verbose=on\">
more than 100 changes</a> during the last week.</li>\n</ul>\n<p><strong>If
you think youve found a bug</strong>, you can post to the <a
href=\"https://wordpress.org/support/forum/alphabeta\"
target=\"_blank\">Alpha/Beta area</a> in the support forums. Wed love to
hear from you! If youre comfortable writing a reproducible bug report, <a
href=\"https://make.wordpress.org/core/reports/\" target=\"_blank\">file
one on the WordPress Trac</a>. There, you can also find <a
href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">a
list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p
class=\"p1\"><em><span class=\"s1\">Beta one, two, three<br
/>\n</span><span class=\"s1\">so many bugs have been fixed<br
/>\n</span><span class=\"s2\">Closer now; four,
five.</span></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:8;a:6:{s:4:\
"data\";s:39:\"\n \n \n \n \n
e_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.5 Beta
2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explici
t\";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/03/wordpress-4-5-beta-
2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:31:\"Thu, 03 Mar 2016 04:55:35
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_b
ase_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=4116\";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:\"descr
iption\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.5 Beta 2 is now
available! This software is still in development, so we dont 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.5, try the WordPress Beta Tester
plugin (youll want bleeding edge nightlies). Or you can
[&#8230;]\";s: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/elem
ents/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:2370:\
"<p>WordPress 4.5 Beta 2 is now available!</p>\n<p>This software is still
in development<strong>,</strong> so we dont 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.5, try the <a
href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"
target=\"_blank\">WordPress Beta Tester</a> plugin (youll want bleeding
edge nightlies). Or you can <a href=\"https://wordpress.org/wordpress-4.5-
beta2.zip\" target=\"_blank\">download the beta here</a> (zip).</p>\n<p>For
more information on what&#8217;s new in 4.5, check out the <a
href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1
blog post</a>. Some of the fixes in Beta 2 include:</p>\n<ul>\n<li>Added <a
href=\"https://core.trac.wordpress.org/ticket/33300\">Horizontal Rule (HR)
editing shortcut</a> and <a
href=\"https://core.trac.wordpress.org/ticket/28612\">dismissible
&#8220;Paste as Text&#8221;
notice</a> in <strong>TinyMCE</strong>.</li>\n<li><strong>Selective
Refresh</strong> support is <a
href=\"https://core.trac.wordpress.org/changeset/36797\">enabled for core
themes titles and taglines</a>, which allows shift-click to focus on
controls and PHP filters to apply in the preview.</li>\n<li>Resolved a
fatal error on <strong>image upload</strong> when ImageMagick could not
complete stripping meta during resize (<a
href=\"https://core.trac.wordpress.org/ticket/33642\">#33642</a>).</li>\n<l
i><strong>Various bug fixes</strong>. We&#8217;ve made <a
href=\"https://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=st
op_on_copy&amp;rev=36813&amp;stop_rev=36701&amp;limit=200&amp;verbose=on\">
just over 100 changes</a> in the last week.</li>\n</ul>\n<p><strong>If you
think youve found a bug</strong>, you can post to the <a
href=\"https://wordpress.org/support/forum/alphabeta\"
target=\"_blank\">Alpha/Beta area</a> in the support forums. Wed love to
hear from you! If youre comfortable writing a reproducible bug report, <a
href=\"https://make.wordpress.org/core/reports/\" target=\"_blank\">file
one on the WordPress Trac</a>. There, you can also find <a
href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">a
list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p><em>It&#8217;s peer
pressure time</em><br />\n<em>Testing: all cool kids do it</em><br
/>\n<em>Help find ALL the
bugs!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\"
;s:33:\"\n \n \n \n \n
g\";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:\"Contributor Weekend: One-Hour
Video\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:70:\"https://wordpress.org/news/2016/02/contributor-weekend-one-
hour-
video/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:
\"data\";s:31:\"Fri, 26 Feb 2016 19:36:30
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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=4112\";s:7:\"a
ttribs\";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:349:\"It&#8217;s time for
our second global contributor weekend, and this time we&#8217;re focusing
on the video team. For this month&#8217;s challenge, in honor of it being
our second month, you have two options for how you can participate! The
challenge for this month overall is to work with at least one hour worth of
WordCamp video, which
[&#8230;]\";s: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/elem
ents/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Jen\";s: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/conten
t/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2590:\"<p>It&#8217;s
time for our second global contributor weekend, and this time we&#8217;re
focusing on the <a
href=\"https://make.wordpress.org/tv\">video team</a>. For this
month&#8217;s challenge, in honor of it being our second month, you have
two options for how you can participate! The challenge for this month
overall is to work with at least one hour worth of WordCamp video, which
you can do by either creating subtitles or editing the video file in
preparation for upload to <a
href=\"http://WordPress.tv\">WordPress.tv</a>.</p>\n<p>One of the great
things about contributing to the video team is that you get to learn so
much, since all the work basically involves watching WordCamp presentation
videos. Subtitling is a doubly important need, as it is needed to make all
those WordCamp videos accessible to people who are deaf or hard of hearing
and can&#8217;t listen to the audio track, as well as making it possible
for the videos to be consumed (in some cases after subtitle translation) by
people who speak different languages.</p>\n<p>The challenge will last from
Saturday, February 27, 2016 through Sunday, February 28, 2016, and the
results will be reviewed afterward by members of the video team. If you
enjoy the challenge, the video team would be very excited to welcome you
into their ranks! Interested? <a href=\"https://wp.me/P6onIa-
28D\">Here&#8217;s how to participate</a>.</p>\n<h3>What About Last
Month?</h3>\n<p>In January, the inaugural contributor weekend was focused
on the support forums. That challenge had 73 participants, including 10
people who provided 20 or more correct answers to open support threads,
thereby winning the challenge. Congratulations to Harris Anastasiadis,
Ahmad Awais, Takis Bouyouris, Phil Erb, Eric Gunawan, Jackie McBride, Diana
Nichols, Kostas Nicolacopoulos, Juhi Saxena, and Sarah Semark! To them and
to everyone else who participated, thank you <strong>so much</strong> for
your efforts. Every answer helps, and over the course of this contributor
weekend, these amazing volunteers responded to <strong>800 support
threads</strong>. The support forums queue of requests with no replies went
from 28 pages to 7 pages &#8212; that was an incredible success, of which
every participant was a part!</p>\n<p>So head on over to see how to <a
href=\"https://wp.me/P6onIa-28D\">get involved with the one-hour video
challenge</a> this weekend, and help us make next month&#8217;s post just
as impressive! <img
src=\"https://s.w.org/images/core/emoji/72x72/1f642.png\" alt=\"?\"
class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\"
/></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/20
05/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attri
bs\";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, 13 May 2016
03:05:07 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:\"Fri, 06 May 2016 19:22:48
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
250\";}s:5:\"build\";s:14:\"20160421094446\";}','no'),(829,'_transient_time
out_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1463151908','no'),(830,'_tr
ansient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1463108708','no'),(831,
'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1463151910','no
'),(832,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"chil
d\";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:\"xm
l_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_b
ase\";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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"d
ata\";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:\"WordPre
ss 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:\"
9:\"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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:28:\"http://wptavern.com/?p=54780\";s:7:\"attribs\";a:0:{}s:8:\"xml_b
ase\";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_expl
icit\";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&#8217;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&#8217;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>&#8220;As more and more developers, teams, and
organizations seek out the advantages of microservices, theyll need more
repositories to support this new code structure,&#8221; Sijbrandij said.
&#8220;Basically, the more microservices you have the more repositories
youll need. That is why it is not surprising that GitHub has announced
free private repositories.&#8221;</p>\n<p>Sijbrandij referenced several
examples where GitHub&#8217;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&#8217;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&#8217;s still a small fraction
of our AWS bill) but it will force us to look at other alternatives.
Github&#8217;s code review tools are already pretty mediocre compared to
other tools like gerrit, and we&#8217;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&#8217;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&#8217;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:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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 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: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> &#8211; <a
href=\"https://creativecommons.org/licenses/by-
sa/2.0/\">(license)</a>\n<p>It&#8217;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&#8217;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&#8217;s
attention. The tags include:</p>\n<ul>\n<li><strong>Modlook</strong>
&#8211; This tag notifies moderators that a particular thread needs their
attention. If you think a review is spam, don&#8217;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> &#8211; 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> &#8211; Add the
wrongplugin tag to the review if you believe it&#8217;s for a different
plugin. The team can move the review to the appropriate
place.</li>\n<li><strong>Pluginmod</strong> &#8211; Add this tag to a
review if you need an administrator&#8217;s attention. This usually results
in the team performing a full review of your plugin. If it&#8217;s
determined that it breaks any of <a
href=\"https://wordpress.org/plugins/about/guidelines/\">the
guidelines</a>, it will be removed until they&#8217;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&#8217;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:\"x
ml_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_exp
licit\";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: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_bas
e_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:\"attrib
s\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xm
l_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://w
ptavern.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&#8217;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&#8217;d like to see
WordCamps adopt. We close out the show with Marcus&#8217; 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&#8217;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&#8217;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:\"x
ml_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_exp
licit\";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: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_bas
e_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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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&#8217;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&#8217;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 &#8220;land
rush.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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_exp
licit\";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:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n
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_e
xplicit\";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:\"xm
l_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/automa
ttic-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_e
xplicit\";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>&#8220;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,&#8221;
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
&#8220;stay stealth while in the bidding process,&#8221; 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&#8217;t finalized the price but Armstrong said it will be &#8220;in
the standard range for new top-level domains with some premium pricing for
higher-value names.&#8221;</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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_e
xplicit\";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:\"xm
l_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/critic
al-vulnerabilities-found-in-phpstorm-immediate-update-
advised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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 IDEs 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&#8217;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
&#8216;Check for Updates&#8217; 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:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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&#8217;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>&mdash;
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&#8217;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 &gt;100 devs. We have 2 private
repos for internal projects. $900+ vs $25 really!?</p>\n<p>&mdash; Joo
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>&mdash; 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&#8217;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&#8217;s largely the principal of increasing a
customer&#8217;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 &#8220;Otto&#8221; Wood <a
href=\"http://www.twitlonger.com/show/n_1solviv\"
target=\"_blank\">contends</a> that GitHub&#8217;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 &#8220;private&#8221; 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&#8217;re collaborating with a small group of like 5
people, then coordination is not really a big deal that I&#8217;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&#8217;re
falling prey to vendor lock-in once again. You&#8217;re used to it, you
like it, you&#8217;re afraid of change, pay up. Simple. </p>\n<p>The
advantage of open source software is the freedom to say &#8220;up
yours&#8221; 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>&mdash; 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 &#8220;social coding&#8221;
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>&mdash; 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&#8217;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 dont worryyou 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&#8217;re currently not enforcing a timeline to move,
rest assured that you&#8217;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&#8217;s largest
customers may cause a mass exodus to the company&#8217;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:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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_bas
e_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/aff
inity-a-free-wordpress-wedding-theme-from-
automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_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&#8217;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&#8217;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&#8217;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&#8217; 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&#8217; 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&#8217;s multi-panel approach offers flexibility for many different
types of uses. If you&#8217;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&#8217;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:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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 &amp; 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&#8217;t. The team needs
as much data as possible to provide a clearer picture of WordPress&#8217;
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:\"x
ml_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_exp
licit\";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: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_bas
e_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_bas
e_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/wha
t-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&#821
7;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&#8217;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>&mdash; 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>&mdash; 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>&mdash; 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&#8217;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>&mdash; 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>&mdash; 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&#8217;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&#8217;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&#8217;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:\"x
ml_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_exp
licit\";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: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_bas
e_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_bas
e_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/aut
omattic-is-protecting-its-woo-woothemes-and-woocommerce-
trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_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&#8217;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>Im 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 doesnt include &#8216;Woo&#8217; 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&#8217;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>&#8220;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,&#8221;
Daniel, who is part of the GPL Kit team told the Tavern.</p>\n<p>Daniel
says that when he started WooGPL there wasn&#8217;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%2C8
14\" alt=\"Examples of When You Do and Don\'t Need Permission\"
/></a>Examples of When You Do and Don&#8217;t Need Permission\n<p>If
you&#8217;re in doubt, you can email Automattic&#8217;s trademark team <a
href=\"mailto:trademarks@automattic.com\">trademarks @ automattic.com</a>
to receive clarification.</p>\n<h2>Woo&#8217;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&#8217;t receive a response from WooRockets, John Gamour of WooAssist
provided the Tavern with the following statement:</p>\n<blockquote><p>No,
we haven&#8217;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&#8217;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&#8217;s important to know as soon as possible if
you&#8217;re infringing a company&#8217;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&#8217;re not violating any guidelines. Owners
can also take a proactive step and contact Automattic&#8217;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:\"x
ml_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_exp
licit\";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: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_bas
e_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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"d
ata\";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/woocomm
erce-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_ex
plicit\";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
&#8220;best sellers&#8221; section to the homepage and adds compatibility
with the upcoming WooCommerce 2.6s 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&#8217;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&#8217;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 &#8220;provide greater depth
and cohesion.&#8221; Other notable design changes
include:</p>\n<ul>\n<li>Borders have been largely removed so that pages
dont 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.5s 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&#8217;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:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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_expli
cit\";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>&#8220;Because WordPress is awesome, but the_loop
isn&#8217;t.&#8221;</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>&#8220;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),&#8221; Timber creator Jared Novack said. &#8220;I
went to WordCamp Providence to learn more about state-of-the-art WordPress
ways. I remember thinking: &#8216;This is great, but I really miss the
cleanliness of Handlebars &#8212; I wish someone would make something like
that for WordPress.&#8217; That&#8217;s when I realized, I was that
someone.&#8221;</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&#8217;s <a
href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig
project</a>.</p>\n<p>&#8220;The syntax felt so natural I almost
didn&#8217;t need to read the docs (don&#8217;t worry, I did),&#8221; he
said. &#8220;I realized what I needed was a way to marry Twig and
WordPress, and thus: Timber was born.&#8221;</p>\n<p>At that time
Novack&#8217;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&#8217;s
first test case.</p>\n<p>&#8220;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,&#8221; Novack said. &#8220;I
converted it into a plugin that could be employed on existing themes which
is the form it takes today.&#8221;</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&#8217;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>&#8220;The big news is
that 1.0 represents a maturing of the platform developers can use Timber
and Twig with confidence that theyre building on top of a stable and
universal platform,&#8221; Novack said.</p>\n<p>This release sheds years of
deprecated functions and methods dating back to the project&#8217;s early
days in 2013. Novack said that technical and documentation debt were the
biggest hurdles in getting to 1.0.</p>\n<p>&#8220;In hindsight its so easy
to build stuff, but so hard to build a complete system,&#8221; he said.
&#8220;When Timber started it was just for me and the documentation could
just live in my head. Id add and improve stuff and then live with some of
the quirks.&#8221;</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>&#8220;Backwards
compatibility was also a major challenge,&#8221; Novack said. &#8220;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.&#8221;</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>&#8220;The key
learning for me is that the ultimate &#8216;killer feature&#8217; is
stability and predictability,&#8221; Novack said. &#8220;When everything is
organized cleanly and developers can use the things that they would
intuitively expect thats success.&#8221;</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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_exp
licit\";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_e
xplicit\";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_bas
e_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_e
xplicit\";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:2375:\"<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 &#8212; the
CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>Security
&#8212; in WordPress core, distributed plugins and themes, and in our
custom code &#8212; is a constant battle. Its 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<!--[if lt IE
9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a
href=\"https://audio.simplecast.com/37301.mp3\">https://audio.simplecast.co
m/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 &amp; 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
Internets 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_exp
licit\";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: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_bas
e_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_bas
e_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_b
ase\";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_ba
se_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&#8217;ve been in Houston more recently, which means driving a lot,
I&#8217;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_b
ase_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_exp
licit\";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:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n
0;a:5:{s:4:\"data\";s:98:\"WPTavern: VersionPress 3.0 Adds New Search
Feature, Bulk Undo, and Commit Tracking per
Environment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_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=54530\";s: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:106:\"http://wptavern.com/v
ersionpress-3-0-adds-new-search-feature-bulk-undo-and-commit-tracking-per-
environment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0
;a:5:{s:4:\"data\";s:3843:\"<p><a
href=\"https://blog.versionpress.net/2016/04/versionpress-3-0-released/\"
target=\"_blank\">VersionPress 3.0</a>, released this week, is the first
version since the plugin <a href=\"http://wptavern.com/versionpress-
transitions-into-a-free-open-source-project\" target=\"_blank\">became a
free, open source project</a>. Creators Borek Bernard and Jan Vorek, who
originally attempted to crowdfund the project and then <a
href=\"http://wptavern.com/versionpress-raises-400k-in-seed-funding\"
target=\"_blank\">raised $400,000 in seed funding</a>, <a
href=\"http://wptavern.com/versionpress-transitions-into-a-free-open-
source-project\" target=\"_blank\">announced</a> last month that they are
transitioning to a public development model.</p>\n<p>The team&#8217;s goal
with this release was to polish up the experience of using VersionPress in
the default WordPress installation while adding more useful features.
However, it is not yet ready for use in production, according to
Bernard.</p>\n<p>&#8220;Were still keeping VersionPress in the <a
href=\"http://docs.versionpress.net/en/getting-started/about-eap\"
target=\"_blank\">early access period</a>, because of the third party
plugins integration story but on simpler sites, VersionPress already
shines,&#8221; he said.</p>\n<p>One of the most notable new features in
VersionPress 3.0 is the plugin&#8217;s ability to track commits with the
environment where they were created. Users can view changes in the admin
and easily see if they were pushed to the staging or production
environment.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/commit-tracking-in-environment.gif\"><img
src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/commit-
tracking-in-environment.gif?resize=725%2C347\" alt=\"commit-tracking-in-
environment\" class=\"aligncenter size-full wp-image-54599\"
/></a></p>\n<p>Version 3.0 also adds searching capabilities for filtering
commits by author, date, commit message, and WordPress action. This release
also includes a new bulk undo feature for commits and many improvements to
the core versioning engine.</p>\n<h3>VersionPress 4.0 to Focus on Support
for 3rd Party Plugins</h3>\n<p>One of the reasons the VersionPress team
decided to go with a public development model was to mitigate the
plugin&#8217;s conflicts with third-party themes and plugins. This was only
possible if the opened up the codebase for contribution from other
developers.</p>\n<p>&#8220;While we had most of the WordPress core covered
pretty well, there was still this huge ecosystem of WordPress plugins and
themes that could cause trouble to VersionPress in million different
ways,&#8221; Borek said. &#8220;In the long run, the project had to turn
into OSS should it be successful, and, fortunately, we met investors who
understood this and supported our vision.&#8221;</p>\n<p>Borek and the team
plan to focus on adding support for complex third party plugins in version
4.0, tentatively scheduled for mid-2016. One commenter on the post
mentioned that a lack of WooCommerce support is a major thing holding him
back from using VersionPress on projects. Borek confirmed that WooCommerce
is high on their list of plugins they want to support.</p>\n<p>&#8220;Our
goal remains the same: to take all the incredibly powerful functionality of
Git and package it so that every WordPress user can use it,&#8221; Borek
said.</p>\n<p>Since most site owners interested in this plugin are not
running vanilla installations of WordPress, support for third party plugins
will be a major leap forward for the project with the potential to greatly
expand its user base. Check out VersionPress&#8217; <a
href=\"http://docs.versionpress.net/en/release-notes/roadmap\"
target=\"_blank\">roadmap</a> to follow along with its progress and see
what&#8217;s next.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 22:04:53
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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: WordPress 4.5.2
Patches Two Security
Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xm
l_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=54594\";s: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:\"http://wptavern.co
m/wordpress-4-5-2-patches-two-security-
vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xm
l_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:
{i:0;a:5:{s:4:\"data\";s:1441:\"<p>The WordPress core team has <a
href=\"https://wordpress.org/news/2016/05/wordpress-4-5-2/\">released
WordPress 4.5.2</a> which patches two security vulnerabilities in WordPress
versions 4.5.1 and below. The first is a <a
href=\"http://www.benhayak.com/2015/06/same-origin-method-execution-
some.html\">SOME vulnerability</a> (Same-Origin Method Execution) in
Plupload, the third-party library WordPress uses for uploading files. The
second is a reflected cross-site-scripting vulnerability in
MediaElement.js, the third-party library used for media
players.</p>\n<p>Auto updates are rolling out to sites but if you
don&#8217;t want to wait, browse to Dashboard &gt; Updates and click the
Update Now button. Mario Heiderich, Masato Kinugawa, and Filedescriptor of
<a href=\"https://cure53.de/\">Cure53</a> are credited with <a
href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-
vulnerabilities/\">responsibly disclosing</a> the
vulnerabilities.</p>\n<p>In addition to the release, the core team has <a
href=\"https://make.wordpress.org/core/2016/05/06/imagemagick-
vulnerability-information/\">published a post</a> concerning the <a
href=\"https://imagetragick.com/\">multiple vulnerabilities</a> discovered
in ImageMagick, a popular image processing script used on thousands of
webhosting servers. The post describes how WordPress is affected and what
the team is doing to mitigate issues.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 20:01:26
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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: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_bas
e_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:97:\"WPTavern: Laravel Releases
Valet, a Minimalist Development Environment with Support 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:4:\"guid\";a:1:{i:0;a:5:{s:4:
\"data\";s:28:\"http://wptavern.com/?p=54580\";s: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:106:\"http://wptavern.com/lar
avel-releases-valet-a-minimalist-development-environment-with-support-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:11:\"description\";a:1:{i:0;a
:5:{s:4:\"data\";s:3404:\"<a href=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/05/valet-parking.jpg\"><img
src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/valet-
parking.jpg?resize=900%2C520\" alt=\"photo credit: Valet Parking, Las
Vegas, NV - (license)\" class=\"size-full wp-image-54589\" /></a>photo
credit: <a
href=\"http://www.flickr.com/photos/55151301@N00/175606346\">Valet Parking,
Las Vegas, NV</a> &#8211; <a
href=\"https://creativecommons.org/licenses/by-
nd/2.0/\">(license)</a>\n<p><a href=\"https://laravel.com/\"
target=\"_blank\">Laravel</a>, the open source MVC PHP framework created
for application development, has just released <a
href=\"https://laravel.com/docs/5.2/valet\" target=\"_blank\">Valet</a>, a
minimalist development environment for Mac. It uses just 7mb of RAM,
because it doesn&#8217;t include Vagrant, Apache, Nginx, or a /etc/hosts
file. Here&#8217;s how it works:</p>\n<blockquote><p>Laravel Valet
configures your Mac to always run PHP&#8217;s built-in web server in the
background when your machine starts. Then, using DnsMasq, Valet proxies all
requests on the *.dev domain to point to sites installed on your local
machine.\n</p></blockquote>\n<p>Valet supports Laravel, Lumen, Statamic,
Craft, Jigsaw, and even has a driver for WordPress. It&#8217;s handy if you
just need a simple, fast development environment without virtualization.
Developers can also share sites publicly via local tunnels. It&#8217;s as
easy as navigating to the site&#8217;s directory in the terminal and
running the <code>valet share</code> command, which generates a publicly
accessible URL.</p>\n<p><a href=\"https://wppusher.com/\"
target=\"_blank\">WP Pusher</a> founder Peter Suhm, who is active in both
the Laravel and WordPress communities, wrote a <a
href=\"http://blog.wppusher.com/a-minimalist-development-environment-for-
wordpress-with-laravel-valet/\" target=\"_blank\">tutorial</a> for setting
up Valet for WordPress development.</p>\n<p>&#8220;For larger apps, I
generally prefer my development environment to be very similar to
production,&#8221; Suhm said. &#8220;Vagrant and Docker are great for that.
Valet is great for all those quick and dirty WordPress installations you
need, just to test something or quickly work on an idea. If you dont need
anything else besides PHP 7 and a database, Valet is a great
setup.&#8221;</p>\n<p>Since it doesn&#8217;t require a ton of dependencies,
Valet is quick to set up and doesn&#8217;t require any configuration.
Developers don&#8217;t even need to make Valet aware that their app is
WordPress &#8211; you can simply drop WordPress core files into a folder on
your machine and then access the site in your browser.</p>\n<p>If
you&#8217;re looking for a new lightweight development environment or just
a quick way to do some PHP 7 testing for WordPress plugins, Valet may fit
nicely into your workflow. You can install it using <a
href=\"http://brew.sh/\" target=\"_blank\">Homebrew</a>. View the <a
href=\"https://laravel.com/docs/5.2/valet#installation\"
target=\"_blank\">docs</a> for installation and site setup or follow along
with Suhm&#8217;s <a href=\"http://blog.wppusher.com/a-minimalist-
development-environment-for-wordpress-with-laravel-valet/\"
target=\"_blank\">tutorial</a>.</p>\n<p>To see a quick demo of Valet in
action, check out the two-minute introduction video created by Adam
Wathan:</p>\n<div class=\"embed-wrap\"></div>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 18:44:40
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:79:\"WPTavern: WordPress 4.6 to
Drop Open Sans in the Admin in Favor of System
Fonts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:28:\"http://wptavern.com/?p=54507\";s: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/wordpres
s-4-6-to-drop-open-sans-in-the-admin-in-favor-of-system-
fonts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{
s:4:\"data\";s:2130:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/system-fonts-firefox-osx.png\"><img
src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/system-
fonts-firefox-osx.png?resize=1025%2C450\" alt=\"system-fonts-firefox-osx\"
class=\"aligncenter size-full wp-image-54575\" /></a></p>\n<p>WordPress 4.6
will bid farewell to Open Sans in the admin in favor of using system fonts.
Open Sans, which loads from Google Fonts as an external resource, has been
in use in the admin since 2013.</p>\n<p>&#8220;At the time of introduction
in 3.8, there were not good system fonts common to all platforms at the
time,&#8221; WordPress lead developer <a href=\"http://helenhousandi.com/\"
target=\"_blank\">Helen Hou-Sand</a> said in her <a
href=\"https://core.trac.wordpress.org/changeset/37361\"
target=\"_blank\">commit</a> message. &#8220;In the years since, Windows,
Android, OS X, iOS, Firefox OS, and various flavors of Linux have all
gotten their own (good) system UI fonts.&#8221;</p>\n<p>Now that the admin
doesn&#8217;t have to load fonts from Google, it should feel faster and
will provide a better experience for developers who are working
offline.</p>\n<p>Dropping Open Sans originated as part of the <a
href=\"https://make.wordpress.org/core/features/font-natively/\"
target=\"_blank\">Font Natively</a> feature project led by WordPress
designer <a href=\"https://mattmiklic.com/\" target=\"_blank\">Matt
Miklic</a>, Mark Uraine, and Helen Hou-Sand. The project page provides
screenshots for the WP admin with Open Sans in Firefox on OSX vs the admin
with system fonts, but the team noted that they are in need of more
screenshots from different environments.</p>\n<p>Anytime that WordPress can
shed a third-party dependency while improving the experience in the admin
is a win for everyone. The commit comes early in the release cycle in order
to get more people testing for misalignments and any other issues. Feel
free to report any bugs you experience with the change, as work is still
ongoing on the <a href=\"https://core.trac.wordpress.org/ticket/36753\"
target=\"_blank\">ticket</a>.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 05 May 2016 20:50:27
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:68:\"WPTavern: Ninja Forms
Update Patches Critical Security
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=54556\";s: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:78:\"http://wptavern.com/
ninja-forms-update-patches-critical-security-
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:4325:\"<p><a
href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2015/03/NinjaFormsFeaturedImage.png\"><img
class=\"aligncenter size-full wp-image-40019\"
src=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2015/03/NinjaFormsFeaturedImage.png?resize=840%2C273\"
alt=\"Ninja Forms Featured Image\" /></a><a
href=\"https://wordpress.org/plugins/ninja-forms/\">Ninja Forms</a>, a
popular plugin active on more than 500K websites, released an update 48
hours ago that addresses a critical security vulnerability. Wordfence <a
href=\"https://www.wordfence.com/blog/2016/05/ninja-forms-shell-upload-
vulnerability-high-risk/\">is reporting</a> that Ninja Forms versions
2.9.36 to 2.9.42 contain multiple security vulnerabilities.</p>\n<p>One of
the vulnerabilities allows an attacker to upload and execute code remotely
on WordPress sites. The only information needed to exploit the
vulnerability is the URL of the target site that&#8217;s using a form
powered by an affected version of Ninja Forms.</p>\n<p>Kevin Stover, CTO of
Ninja Forms, explains to the Tavern how they discovered the
vulnerabilities:</p>\n<blockquote><p>About two weeks ago, we were contacted
by a security researcher, James Golovich, regarding a file upload issue
within Ninja Forms. He demonstrated that it was possible to upload an
arbitrary file using some test code that hadnt been removed during our
build process.</p>\n<p>We realised that the test code had accidentally been
utilised in other areas of the plugin, and we immediately began working on
a fix. While the issue was being patched, we reached out to the devs at the
<a href=\"http://wordpress.org/\" target=\"_blank\"
rel=\"noreferrer\">WordPress.org</a> repo and began the processes of
preparing for auto updating users of the affected versions.</p>\n<p>Once
the patch had been tested, we pushed version 2.9.43 and .1 versions of
2.9.36 &#8211; 2.9.42. Shortly after, <a href=\"http://wordpress.org/\"
target=\"_blank\" rel=\"noreferrer\">WordPress.org</a> began pushing out
automatic updates.</p></blockquote>\n<p>As to why there wasn&#8217;t a post
published immediately on the official <a
href=\"https://ninjaforms.com/blog/\">Ninja Forms blog</a> announcing the
update, &#8220;We didnt want to go public with the vulnerability until our
users had time to update, both to the newest version and the .1
versions,&#8221; Stover said.</p>\n<p>&#8220;James Golovich&#8217;s
responsible disclosure gave us time to fix the issue and for our users to
update to safe versions before disclosing the vulnerability on his
site,&#8221; he said. The company has since <a
href=\"https://ninjaforms.com/important-security-update-always-hurt-ones-
love/\">published a blog post </a>concerning the update.</p>\n<p>Working
with the WordPress security team, automatic updates started rolling out on
Tuesday, May 3rd. If automatic plugin updates are disabled, you&#8217;re
highly encouraged to update manually to 2.9.45 as soon as possible. The
Ninja Forms team is also working with a number of large webhosts to ensure
as many sites as possible are updated.</p>\n<p>Wordfence is not detecting
wide-spread exploitation but this could change in the next few days as
details of the exploit emerge.</p>\n<p>When it comes to security
vulnerabilities, the ability to upload and execute code remotely is about
as severe as it gets. Golovich is credited with <a
href=\"http://www.pritect.net/blog/ninja-forms-2-9-42-critical-security-
vulnerabilities\">responsibly disclosing</a> the vulnerability to the Ninja
Forms team. He also provides technical details of each vulnerability, most
of which are in the Ninja Forms 3.0 code base.</p>\n<p>According to
Golovich, the most vulnerable code is a proof of
concept:</p>\n<blockquote><p>The following vulnerable code was, according
to Kyle Johnson of the WP Ninjas team &#8216;not a live feature of Ninja
Forms, but was more of a proof of concept for a future free feature.&#8217;
Unfortunately, even proof of concept code that is accessible is still
vulnerable to attack. This is the most critical vulnerability here because
it potentially allows an attacker to execute arbitrary php code on a
site.</p></blockquote>\n<p>Users should update as soon as possible as
it&#8217;s only a matter of time before tools are created that can easily
take advantage of the exploit.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 05 May 2016 20:46:19
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_bas
e_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:65:\"WPTavern: WordPress.org
Support Forums Adds Accessibility
Section\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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=54472\";s:7:\"attribs\";a:0:{}s:8:\"xm
l_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/wordpr
ess-org-support-forums-adds-accessibility-
section\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5
:{s:4:\"data\";s:3619:\"<p>Earlier this year, the WordPress project made a
huge move by <a href=\"http://wptavern.com/wordpress-adopts-accessibility-
coding-standards-for-all-new-and-updated-code\">adopting accessibility
coding standards</a> for new and updated code. If you&#8217;re struggling
to meet <a href=\"https://www.w3.org/WAI/intro/wcag\">WCAG 2.0
guidelines</a> in your WordPress projects and need help, check out the new
<a href=\"https://wordpress.org/support/forum/accessibility\">Accessibility
section</a> in the WordPress.org support forums.</p>\n<a
href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/WPAccessibilitySupport.png\"><img class=\"size-full
wp-image-54551\" src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/WPAccessibilitySupport.png?resize=1025%2C487\"
alt=\"WordPress Accessibility Support\" /></a>WordPress Accessibility
Support\n<p>Amanda Rush, who helps WordPress developers make their themes
and plugins accessible, says the forum is the result of a conversation with
a support team member at WordCamp Atlanta.</p>\n<p>&#8220;I <span
class=\"message_body\">mentioned that part of what makes the job difficult
when it comes to making WordPress accessible is stopping during our work to
answer occasional questions.<br />\n</span></p>\n<p>&#8220;Most of the time
the answer is not a quick one, because in the case of screen reader users,
you have to first find out how well they can use their tech, how familiar
they are with WordPress itself, and if neither of those chances are high,
you spend time giving them a crash course in either one or both, and then
answer their question,&#8221; <span class=\"message_body\">Rush said.
</span></p>\n<p>Most of the people on the <a
href=\"https://make.wordpress.org/accessibility/\">WordPress Accessibility
team</a> are volunteers with full-time jobs which limits their ability to
provide one-on-one support. Many of the support queries come through email
or direct messages to individuals on the team. The forum enables everyone
to participate in the support process.</p>\n<p>&#8220;If people ask their
questions publicly, I or others not necessarily on the Accessibility Team
can answer, and the answers are then public,&#8221; Rush
said.</p>\n<p>&#8220;We have a pattern library on GitHub, which we all
contribute to when we have time. But there are all kinds of solutions being
passed around on Twitter and spread across other people&#8217;s GitHub
accounts. So if someone asks a question like that, we can either point to
something in specific cases, which is most of them, there&#8217;s probably
already a specific solution that someone&#8217;s built, and we can link to
that,&#8221; Rush told the Tavern.</p>\n<p>The accessibility support forum
also comes with a side benefit, &#8220;W<span class=\"message_body\">e
don&#8217;t have to say no all the time when people ask for support, or
what looks like all the time to some people. Everyone can help each other
</span><span class=\"message_body\">out and Google has a public
resource,&#8221; Rush said.<br />\n</span></p>\n<p>The support forum comes
at a time where accessibility is an increasingly important part of web
development. For example, the European Union <a
href=\"http://europa.eu/rapid/press-release_IP-16-1654_en.htm\">recently
agreed to new rules</a> that will make public sector websites and apps more
accessible.</p>\n<p>If you have any questions related to accessibility, you
can post them on the forum. If you have experience and knowledge in the
accessibility field, consider answering questions as it&#8217;s a great way
to contribute to the WordPress project.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 05 May 2016 20:13:11
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_bas
e_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:110:\"WPTavern: Font Awesome
CDN Now in Beta, Loads Icons Asynchronously with Automatic Accessibility
Best
Practices\";s: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=54509\";s: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:119:\"http://wptavern.com/fon
t-awesome-cdn-now-in-beta-loads-icons-asynchronously-with-automatic-
accessibility-best-
practices\";s: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:2903:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/05/font-awesome.png\"><img
src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/font-
awesome.png?resize=1025%2C326\" alt=\"font-awesome\" class=\"aligncenter
size-full wp-image-54532\" /></a></p>\n<p><a
href=\"https://fortawesome.github.io/Font-Awesome/\" target=\"_blank\">Font
Awesome</a>, the open source vector icon collection used by more than 300
plugins on WordPress.org and many free and commercial themes, <a
href=\"https://articles.fortawesome.com/announcing-font-awesome-cdn-
81773e0b301f#.egol888o7\" target=\"_blank\">announced the beta release of
its new CDN</a>. Developers can now add a single line of code to bring the
icons and CSS toolkit into their projects.</p>\n<p>The icon files and CSS
are hosted by <a href=\"https://www.maxcdn.com/\"
target=\"_blank\">MaxCDN</a>, which serves a cached version that loads
quickly on websites that use Font Awesome. The CDN uses <a
href=\"https://github.com/typekit/webfontloader\" target=\"_blank\">Web
Font Loader</a>, which was co-developed by Google and Typekit, to load the
icons asynchronously. This also gives developers <a
href=\"https://github.com/typekit/webfontloader#events\"
target=\"_blank\">CSS and JavaScript events</a> to hook into on
loading.</p>\n<p><a href=\"http://wptavern.com/font-awesome-4-6-0-adds-new-
accessibility-icons-category\" target=\"_blank\">FontAwesome 4.6 added a
new accessibility icon category</a> and the new CDN helps to automate
outputting the correct markup. If the icon you&#8217;re using has semantic
meaning, including an accurate title attribute with the inline icon will
trigger Font Awesome&#8217;s JS to do the rest.</p>\n<p>Font Awesome
requires an email address from those want to use the CDN so it can issue a
unique embed code for each. Developers also have the option to register a
Font Awesome CDN account to keep track of sites and apps where they are
using the icons, and manage multiple embed codes. Once logged in, you can
enable or disable auto-accessibility, asynchronous icon loading, easy
updates to newer Font Awesome versions, and CSS or JS embed.</p>\n<p><a
href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/font-
awesome-account.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/05/font-awesome-account.png?resize=1025%2C865\"
alt=\"font-awesome-account\" class=\"aligncenter size-full wp-image-54543\"
/></a></p>\n<p>One of the most convenient reasons to use the CDN is to
simplify updates. WordPress plugin and theme developers do not have to bump
versions or push any code to use the latest version. Font Awesome version
changes can be triggered on an individual basis for each embed code in a
developer&#8217;s account dashboard. Check out the instructions at <a
href=\"https://cdn.fontawesome.com/\"
target=\"_blank\">cdn.fontawesome.com</a> to get your project hooked
up.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 05 May 2016 18:09:31
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";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=3352\";s:7:\"attribs\";a:0:{}s:8:\"x
ml_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.co
m/2016/05/05/wordpress-for-android-version-5-
3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4
:\"data\";s:3203:\"<p>Hello WordPress users! <a
href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\
" target=\"_blank\">Version 5.3 of the WordPress for Android app</a> is now
available in the Google Play Store.</p>\n<h1>Account Settings and App
Settings</h1>\n<p>We split the old Account Settings into two distinct
screens: Account Settings for everything related to your account, and App
Settings for everything specific to the App, like the interface language,
PIN lock, and Analytics opt-out.</p>\n<p><img class=\"alignnone size-full
wp-image-3354\" src=\"https://apps.files.wordpress.com/2016/04/screenshot-
2016-04-04_15-43-50-172.png?w=640\" alt=\"screenshot-2016-04-
04_15.43.50.172\" /></p>\n<h1>Delete WordPress.com site</h1>\n<p>With 5.3,
you can now export your content (posts, pages, and settings) by email and
delete your WordPress.com site from the app.</p>\n<p><img class=\"alignnone
size-full wp-image-3356\"
src=\"https://apps.files.wordpress.com/2016/04/screenshot-2016-04-04_15-45-
34-504.png?w=640\" alt=\"screenshot-2016-04-04_15.45.34.504\"
/></p>\n<h1>Other Changes</h1>\n<p>Version 5.3 also comes with a few
other enhancements:</p>\n<ul>\n<li>New styling of the action bar in the
Reader.</li>\n<li>If you made changes to a post, you&#8217;ll see a
confirmation blink on <strong>Blog Posts</strong> when returning to the
<strong>My site</strong> screen.</li>\n<li>Better styling of the Post and
Page Preview screen.</li>\n<li>An updated support tool reduces
crashes.</li>\n</ul>\n\n<a
href=\"https://apps.wordpress.com/2016/05/05/wordpress-for-android-version-
5-3/screenshot-2016-04-04_15-59-35-639/\"><img width=\"84\" height=\"150\"
src=\"https://apps.files.wordpress.com/2016/04/screenshot-2016-04-04_15-59-
35-639.png?w=84&h=150\" class=\"attachment-thumbnail size-thumbnail\"
alt=\"screenshot-2016-04-04_15.59.35.639\" /></a>\n<a
href=\"https://apps.wordpress.com/2016/05/05/wordpress-for-android-version-
5-3/screenshot-2016-04-04_16-01-41-971/\"><img width=\"84\" height=\"150\"
src=\"https://apps.files.wordpress.com/2016/04/screenshot-2016-04-04_16-01-
41-971.png?w=84&h=150\" class=\"attachment-thumbnail size-thumbnail\"
alt=\"screenshot-2016-04-04_16.01.41.971\" /></a>\n\n<p>We&#8217;re working
hard on new features for the next version &#8212; you can track our
development progress for the next release by visiting <a
href=\"https://github.com/wordpress-mobile/WordPress-
Android/milestones/5.4\">our 5.4 milestone on GitHub</a>.</p>\n<h1>Thank
you</h1>\n<p>Thanks to our contributors: <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/rishabh7m\">@rishabh7m</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&pos
t=3352&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\"
/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:31:\"Thu, 05 May 2016 08:57:23
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n
a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WPWeekly Episode 233 Recap of
WordCamp Chicago
2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:44:\"http://wptavern.com?p=54518&preview_id=54518\";s:7:\"attribs\";a
:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lan
g\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wptave
rn.com/wpweekly-episode-233-recap-of-wordcamp-chicago-
2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s
:4:\"data\";s:2903:\"<p>On this episode of WordPress Weekly, I describe my
experience attending WordCamp Chicago 2016 this past weekend. Marcus Couch
and I then discuss the news of the week including a new tool that helps
WordCamp organizers create customized name badges.</p>\n<p>We also have a
lengthy discussion on the freemium business model and how it&#8217;s
affecting users of themes and plugins downloaded from the official
directories. Last but not least, we talk about WooCommerce Connect, a new
SaaS tool from Automattic that has a tight relationship with
Jetpack.</p>\n<h2>Stories Discussed:</h2>\n<p><a
href=\"http://wptavern.com/wordcamp-organizers-get-new-tool-for-creating-
personalized-wordcamp-badges\">WordCamp Organizers Get New Tool for
Creating Personalized WordCamp Badges</a><br />\n<a
href=\"http://wptavern.com/wordpress-is-now-100-translated-into-
marathi\">WordPress is Now 100% Translated Into Marathi</a><br />\n<a
href=\"http://wptavern.com/templatic-hacked-files-and-databases-
compromised\">Templatic Hacked, Files and Databases Compromised</a><br
/>\n<a href=\"http://wptavern.com/wordpress-theme-review-team-votes-on-new-
guidelines-to-ban-obtrusive-upselling\">WordPress Theme Review Team Votes
on New Guidelines to Ban Obtrusive Upselling</a><br />\n<a
href=\"http://wptavern.com/automattic-introduces-woocommerce-connect-
hosted-components-for-e-commerce\">Automattic Introduces WooCommerce
Connect, Hosted Components for E-Commerce</a></p>\n<h2>Plugins Picked By
Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/rss-feed-
canceller/\">RSS Feed Canceller </a>provides more control over your RSS
feed. You can turn it on or off per post and control whether or not a post
is excluded from the feed.</p>\n<p><a
href=\"https://wordpress.org/plugins/tld-woocommerce-downloadable-product-
update-emails/\">TLD WooCommerce Downloadable Product Update Emails</a> is
a simple plugin that notifies customers who purchased a downloadable
product via email that there&#8217;s an update available.</p>\n<p><a
href=\"https://wordpress.org/plugins/inline-click-to-tweet/\">Inline Click
To Tweet</a> allows authors to highlight text from within the visual editor
and make it tweetable by clicking within the post or
page.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong>
Wednesday, May 11th 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 #233:</strong><br
/>\n</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 05 May 2016 08:46:25
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_bas
e_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: WordCamp Chicago
2016 Was a Deep Dish of
Fun\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";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=54453\";s:7:\"attribs\";a:0:{}s:8:\"xml_ba
se\";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/wordcamp-
chicago-2016-was-a-deep-dish-of-
fun\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:
4:\"data\";s:5547:\"<p><a
href=\"https://2016.chicago.wordcamp.org/\">WordCamp Chicago 2016</a> was
held at University Center in the heart of Chicago, IL, where more than 300
attendees spent the weekend learning about WordPress. The event was
organized by Ryan Erwin and a <a
href=\"https://2016.chicago.wordcamp.org/organizers/\">team of volunteers.
</a></p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/JJJWCChicago2016.jpg\"><img class=\"size-full wp-
image-54500\" src=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/JJJWCChicago2016.jpg?resize=1024%2C768\" alt=\"John
James Jacoby talking about bbPress and BuddyPress\" /></a>John James Jacoby
talking about bbPress and BuddyPress\n<p>Tracks were split up into three
separate rooms limiting the amount of background noise during sessions.
Giving attendees a schedule is handled differently at most camps. Some
provide a paper schedule while others put it on the back of the name
badge.</p>\n<p>At WordCamp Chicago, schedule boards were displayed outside
each room that corresponded with a track number. This made it easier for
attendees to determine if they wanted to stay in the room for the next
session.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/WCChicago2016Schedule.jpg\"><img class=\"size-full
wp-image-54501\" src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/WCChicago2016Schedule.jpg?resize=1024%2C1365\"
alt=\"Schedule Board Outside The Room Hosting Track 1\" /></a>Schedule
Board Outside The Room Hosting Track 1\n<p>WordCamps are a great way to
stress test a venue&#8217;s network but the WiFi at WordCamp Chicago was
flawless. I didn&#8217;t experience any issues and it remained fast
throughout the event. I didn&#8217;t stick around for lunch as there are
plenty of lunch options available within walking distance of the
venue.</p>\n<h2>The After Party</h2>\n<p>Most WordCamps host an after party
at a restaurant, bar, or other establishment away from the venue. WordCamp
Chicago&#8217;s after party was held at the venue. It included, non-
alcoholic and alcoholic drinks, food, and card games on each table. It was
fun mingling and networking with people without having to compete with
blaring music or a loud atmosphere.</p>\n<a
href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/WCChicago2016AfterParty.jpg\"><img class=\"size-
full wp-image-54503\" src=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/WCChicago2016AfterParty.jpg?resize=1024%2C768\"
alt=\"WordCamp Chicago 2016 After Party\" /></a>WordCamp Chicago 2016 After
Party\n<p>Out of all the sessions I attended, my favorite is <a
href=\"https://2016.chicago.wordcamp.org/session/disastrous-deals-to-
profitable-projects-comparing-my-best-and-worst-client-experiences/\">by
Kyle Maurer,</a> who shared experiences and advice from <a
href=\"http://realbigmarketing.com/\">building client websites</a> over the
years.</p>\n<p>One of the biggest pieces of advice he shared is to build
direct relationships with clients. No one is going to fight your battles as
much as you and third-parties are unlikely to stick their neck out.
Managing direct relationships leads to trust, referrals, and being rehired
to do additional work.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/KyleMaurerSlideWCChicago2016.jpg\"><img
class=\"size-full wp-image-54504\" src=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/05/KyleMaurerSlideWCChicago2016.jpg?resize=1024%2C768\
" alt=\"A Slide from Kyle Maurer\'s Presentation\" /></a>A Slide from Kyle
Maurer&#8217;s Presentation\n<p>His session contains a lot of great
information and I highly encourage you to watch it when it&#8217;s
published on WordPress.tv.</p>\n<h2>WordCamps Offer a Lot of Value For The
Price</h2>\n<p>Throughout the event, I spoke to a number of people and
noted the following. Many attendees said they received more value than
expected paying $40 a ticket. Some have spent hundreds of dollars on
conference tickets and didn&#8217;t enjoy themselves or come away with
nearly as much information.</p>\n<p>I discovered a number of attendees are
part of one or more WordPress meetup groups. According to Meetup.com, there
are at least <a
href=\"http://www.meetup.com/find/?allMeetups=false&keywords=Chicago+WordPr
ess&radius=25&userFreeform=chicago+I&mcId=c60601&change=yes&sort=recommende
d&eventFilter=mysugg\">four WordPress groups </a>with hundreds of members
spread throughout the Chicago area. It&#8217;s a strong indication that the
WordPress community in Chicago is thriving and supportive of each
other.</p>\n<h2>WordCamp Chicago in 2017</h2>\n<p>It was a pleasure
attending WordCamp Chicago and making new friends. I especially enjoyed
speaking to WordPress Weekly listeners and getting their feedback. Also for
those wondering, I satisfied my craving for deep-dish pizza via <a
href=\"http://www.loumalnatis.com/arizona-phoenix\">Lou
Malnati&#8217;s</a>. The pizza tastes better than I remembered. If
you&#8217;re ever in the Chicago area, you have to try Lou Malnati&#8217;s
pizza.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/TheLou.jpg\"><img class=\"size-full wp-image-
54505\" src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/TheLou.jpg?resize=1024%2C768\" alt=\"The Lou!\"
/></a>The Lou!\n<p>Everyone involved with WordCamp Chicago 2016 did a great
job. If you didn&#8217;t get a chance to attend this year, don&#8217;t
worry. After taking a break for a few weeks, the organizing team plans to
begin organizing WordCamp Chicago 2017.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 05 May 2016 03:00:06
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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: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_bas
e_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:85:\"WPTavern: Automattic
Introduces WooCommerce Connect, Hosted Components for E-
Commerce\";s: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=54476\";s:7:\"attribs\";a:0:{}s:8:\"x
ml_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/autom
attic-introduces-woocommerce-connect-hosted-components-for-e-
commerce\";s: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:5426:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/woocommerce-logo.png\"><img
src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/woocommerce-
logo.png?resize=1025%2C466\" alt=\"woocommerce-logo\" class=\"aligncenter
size-full wp-image-54492\" /></a></p>\n<p><a
href=\"https://www.woothemes.com/woocommerce/\"
target=\"_blank\">WooCommerce</a> is the current leader in e-commerce
software, capturing <a href=\"https://wappalyzer.com/categories/ecommerce\"
target=\"_blank\">31% of the market</a>, thanks to its relatively user-
friendly interface and connection to WordPress. However, setting up a
WooCommerce site, or any e-commerce site for that matter, is not for the
faint of heart, no matter how user-friendly the software. It requires
knowledge of hosting, PCI compliance, payment gateways, SSL certificates,
shipping methods, tax, and more.</p>\n<p>When <a
href=\"http://wptavern.com/automattic-acquires-woocommerce\"
target=\"_blank\">Automattic acquired WooCommerce</a> last May, the company
accepted the challenge to make it as easy to create stores online as
WordPress.com has done for websites.</p>\n<p>I believe that the web needs
an open, independent and easy-to-use commerce platform that you can run
yourself on your own website, Matt Mullenweg said in his <a
href=\"https://www.youtube.com/watch?v=xJOfTB8-daA\"
target=\"_blank\">video</a> announcement of the
acquisition.</p>\n<p>Automattic has been working to simplify selling with
WooCommerce and today the company announced <a
href=\"https://www.woothemes.com/2016/05/woocommerce-connect-
announcement/\" target=\"_blank\">WooCommerce Connect</a>, the secret
project that Mullenweg <a
href=\"https://twitter.com/WooConf/status/717725650916741120\"
target=\"_blank\">hinted</a> at during WooConf.</p>\n<p>WC Connect is
WooCommerce&#8217;s new Automattic-hosted SaaS architecture that was
created to offer store features in a more user-friendly way. It is built on
the WP REST API and offers a simplified Calypso-style interface for
configuring options.</p>\n<p>The first service offered via the alpha
version of WC Connect is real-time USPS shipping rates for US-based stores.
It eliminates the need for a USPS API key as well as a subscription key
from WooCommerce. One of the advantages for the user is that there are
fewer software updates to install for extensions, as all the code is
maintained on Automattic&#8217;s servers.</p>\n<p><a
href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/usps-wc-
connect.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/usps-wc-connect.png?resize=650%2C362\" alt=\"usps-
wc-connect\" class=\"aligncenter size-full wp-image-54493\"
/></a></p>\n<h3>What&#8217;s Next for WooCommerce Connect?</h3>\n<p>If the
testing goes well, WooCommerce plans to roll Connect into the
plugin&#8217;s core to make it easier to serve more hosted e-commerce
components. The team is also working on expanding shipping options for the
beta.</p>\n<p>&#8220;In the near future we hope to integrate with further
shipping services, most likely Canada Post next,&#8221; said WooThemes co-
founder <a href=\"https://twitter.com/mark_forrester\"
target=\"_blank\">Mark Forrester</a>. &#8220;Shipping and payment options
seem the logical place for us to start.&#8221;</p>\n<p>Forrester confirmed
that while the USPS shipping method is free, WooThemes is exploring
monetizing other service offerings in the future. If WC Connect has a
successful beta period, the team will consider using the same model for
offering payment gateways in the future.</p>\n<p>&#8220;Setting up payments
for your store should be simple and behind the scenes,&#8221; Forrester
said. &#8220;We believe we can offer better options for our customers
working closely with payment partners and using connected
services.&#8221;</p>\n<p>Forrester said that the team hopes WC Connect can
be baked into WooCommerce core soon, but they will make the decision based
on user feedback from the alpha/beta period.</p>\n<p>Those who create
WooCommerce extensions and depend on its ecosystem may be wondering whether
the SaaS model will overtake the plugin entirely. Last May, during his
WooCommerce Q&amp;A, Matt Mullenweg <a
href=\"https://ma.tt/2015/05/woomattic/#comment-583541\"
target=\"_blank\">confirmed</a> that Automattic is not moving towards a
100% SaaS model.</p>\n<p>&#8220;If or when we do SAAS, the plugin isnt
going away, itll continue as it has,&#8221; Mullenweg
said.</p>\n<p>WooCommerce is not being rolled into Jetpack, as many
suspected when Automattic acquired the product. However, WC Connect does
require users to connect to WordPress.com via Jetpack.</p>\n<p>&#8220;We
feel it makes sense to leverage the code/infrastructure of one of the most
powerful WordPress connected services,&#8221; Forrester said.</p>\n<p>The
team is aiming to make WC Connect a simpler way to connect services to
online stores without users having to leave their WooCommerce dashboards.
Many store owners would rather pay for hosted software they don&#8217;t
have to update as opposed to self-hosted extensions that require regular
maintenance.</p>\n<p>If the strategy of offering hosted e-commmerce
components succeeds at making store management easier for non-developers,
Automattic will be able to profit from offering compelling commercial WC
Connect services, such as payment gateways, and expand WooCommerce&#8217;s
global reach.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 04 May 2016 22:20:21
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:80:\"WPTavern: New Super Emoji
Plus+ Plugin Adds an Elegant Emoji Picker to
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=54422\";s: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/new-
super-emoji-plus-plugin-adds-an-elegant-emoji-picker-to-
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:3082:\"<p>Last week when Beyonc released her new
Lemonade album, <a href=\"http://www.wired.com/2016/04/beyonce-lemonade-
lemon-emoji/\" target=\"_blank\">lemon and bee emoji usage spiked on
Twitter</a>. According to Twitter&#8217;s stats, during the month of April
there were more than 2 million tweets that included at least one lemon
emoji, 62% of which happened since the album release. The bee emoji,
representing the Beyhive of Beyonc fans, also found its way into 1.8
million tweets during April.</p>\n<p>There&#8217;s no denying that emoji
permeate our culture and communication on the web, especially the mobile
web. When people are excited, when they are communicating from the heart,
they often use emoji. According to a study performed by emotional marketing
platform Emogi last year, <a
href=\"http://www.adweek.com/socialtimes/report-92-of-online-consumers-use-
emoji-infographic/627521\" target=\"_blank\">92% of people online use
emoji</a> and 63% of them are frequent users.</p>\n<p>Last year WordPress
4.2 <a href=\"http://wptavern.com/wordpress-4-2-on-track-to-expand-core-
support-for-emoji\" target=\"_blank\">expanded core support for emoji</a>,
adding along with it the ability to natively handle Chinese, Japanese, and
Korean characters. This improvement came not a moment too soon, but emoji
are still not readily accessible when publishing with WordPress until you
launch the emoji keyboard for your operating system. There&#8217;s
something disjointed about having to launch a separate keyboard when
you&#8217;re trying to compose your thoughts.</p>\n<p><a
href=\"https://wordpress.org/plugins/super-emoji-plus/\"
target=\"_blank\">Super Emoji Plus+</a> is a new plugin that makes emoji
more accessible. It was created by <a
href=\"https://profiles.wordpress.org/ericlewis/\" target=\"_blank\">Eric
Andrew Lewis</a>, a WordPress core contributor and developer at The New
York Times. The plugin adds an elegant emoji picker to the post edit
screen. It can be launched from the toolbar or via autocomplete when you
start typing an emoji name, such as &#8220;:lemon&#8221;.</p>\n<p><a
href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/super-
emoji-toolbar.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/super-emoji-toolbar.png?resize=1025%2C640\"
alt=\"super-emoji-toolbar\" class=\"aligncenter size-full wp-image-54458\"
/></a></p>\n<p>If you use emoji in your WordPress posts, Super Emoji Plus+
provides convenient access to the full list. There&#8217;s no easier way to
add emoji if you&#8217;re working from a desktop, as most emoji keyboard
experiences are inferior to the one presented in this plugin. Having it
installed removes the need for cheat sheets and saves you from having to
remember the correct key combinations to launch an emoji keyboard. Super
Emoji Plus+ <a href=\"https://ericandrewlewis.com/2016/04/super-emoji-plus-
is-now-in-beta/\" target=\"_blank\">went into beta last week</a> and is now
<a href=\"https://wordpress.org/plugins/super-emoji-plus/\"
target=\"_blank\">available on WordPress.org</a>.</p>\n<div id=\"epoch-
width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 04 May 2016 06:15:27
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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: bbPress 2.5.9
Patches Cross-Site-Scripting
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=54439\";s: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:76:\"http://wptavern.com/
bbpress-2-5-9-patches-cross-site-scripting-
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:945:\"<p>John James Jacoby, lead developer of
bbPress, has <a href=\"https://bbpress.org/blog/2016/05/bbpress-2-5-
9/\">released bbPress 2.5.9</a> to patch a security vulnerability,
&#8220;bbPress 2.5.8 and below are susceptible to a cross-site-scripting
vulnerability that&#8217;s due to the way users are linked to their
profiles when they are mentioned in topics and replies,&#8221; Jacoby
said.</p>\n<p>Marc-Alexandre Montpas is credited for <a
href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-
vulnerabilities/\">responsibly disclosing</a> the vulnerability to the
WordPress security team. The patch has already been applied to bbPress 2.6,
which is currently in development. Users are advised to update their
bbPress installations as soon as possible. Users who encounter issues
updating to 2.5.9 can report them to the <a
href=\"https://bbpress.org/forums/\">bbPress support forums</a>.</p>\n<div
id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 03 May 2016 23:10:48
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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: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_bas
e_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 Theme
Review Team Votes on New Guidelines to Ban Obtrusive
Upselling\";s: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=54428\";s: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/word
press-theme-review-team-votes-on-new-guidelines-to-ban-obtrusive-
upselling\";s: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:4201:\"<a href=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/05/post-no-bills.jpg\"><img
src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/post-no-
bills.jpg?resize=1024%2C602\" alt=\"photo credit: Post no bills -
(license)\" class=\"size-full wp-image-54450\" /></a>photo credit: <a
href=\"http://www.flickr.com/photos/24415314@N02/26151211080\">Post no
bills</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-
sa/2.0/\">(license)</a>\n<p>One of the main items on the agenda for the
Theme Review Team this week was to finalize what type of upselling is
allowed in themes hosted on WordPress.org. With the requirement of using
the customizer for options, theme authors have gotten creative with upsells
and will sometimes include panels and sections that are inoperable unless
the user purchases the commercial version.</p>\n<p>The team voted on a set
of guidelines previously discussed. The counts shown below represent votes
in favor of each individual guideline, and no members voted against any of
them, according to the reckoning Justin Tadlock posted in the <a
href=\"https://make.wordpress.org/themes/2016/05/03/may-3rd-meeting-
notes/\" target=\"_blank\">meeting notes</a>:</p>\n<ul>\n<li>No global nags
at top of admin pages. +12</li>\n<li>One top-level link in the customizer
(other unobtrusive links in sections allowed). +8</li>\n<li>Allow one
Appearance sub-page. +11</li>\n<li>No options or panels/sections behind a
paywall. +11</li>\n</ul>\n<p>Overall, team members agreed that any upsell
links should be unobtrusive and the new proposed guidelines favor keeping
the customizer clean and the Appearance menu simple. Although the majority
of Theme Review Team members are in favor of the items above, their
inclusion in the handbook is not yet set in stone.</p>\n<p>&#8220;Note that
we might change some of the wording for clarity if/when these become
guidelines,&#8221; Tadlock said. &#8220;The admins will review these items
for inclusion as guidelines and have further discussion if need
be.&#8221;</p>\n<h3>Theme Review Team Considers Adding a Tag to Designate
Themes with a Commercial Upgrade</h3>\n<p>Contributors are looking to add a
new designation for freemium WordPress.org extensions that have commercial
counterparts available elsewhere. In a recent Meta Team meeting, Matt
Mullenweg <a
href=\"https://wordpress.slack.com/archives/meta/p1461801845000324\"
target=\"_blank\">proposed an agenda item</a> for consideration in the
redesign of the Plugin Directory.</p>\n<p>&#8220;I would love for
y&#8217;all to figure out a tagging system that will help people know
better what&#8217;s behind the installation of a plugin,&#8221; Mullenweg
said. &#8220;Does it connect to an external service? Is there a premium
version? Is it useful without those things?</p>\n<p>&#8220;If we can figure
out a way to classify those three as examples, it&#8217;ll cover a lot of
business models people are attempting in the directory,&#8221; Mullenweg
said, referring to the original examples of Akismet, VaultPress, and
Jetpack that he mentioned previously.</p>\n<p>&#8220;This can be separate
from the 3-tag limit,&#8221; he said. &#8220;It&#8217;s really a special
tag, and honor system is fine to start for self-
classification.&#8221;</p>\n<p>This hasn&#8217;t yet been implemented in
the new Plugin Directory, but Konstantin Obenland has the item on his list
for when the Meta Team moves forward with an <a
href=\"https://make.wordpress.org/plugins/2016/02/25/re-thinking-tags-in-
the-plugin-directory/\" target=\"_blank\">overhaul of the tagging
system</a>.</p>\n<p>As a result of this discussion, the Theme Review Team
is also considering adding a &#8220;pro&#8221; designation for themes that
have a commercial version available. Tadlock said that the team will be
following up on the plugin directory discussions and will look to implement
improved tagging in line with what the Meta Team decides.</p>\n<p>The Theme
Review Team ran out of time during this week&#8217;s meeting but will
discuss the possibility of a &#8220;pro&#8221; tag next week. If you want
to be part of this discussion, make sure to join the #themereview channel
on WordPress&#8217; Slack.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 03 May 2016 21:58:41
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:100:\"WPTavern: WordCamp
Incubator Program Receives 182 Applications, Narrows Candidates to 16
Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_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=54398\";s: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:109:\"http://wptavern.com/w
ordcamp-incubator-program-receives-182-applications-narrows-candidates-to-
16-
communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0
;a:5:{s:4:\"data\";s:3358:\"<a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/incubator.jpg\"><img
src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/05/incubator.jpg?resize=1024%2C505\" alt=\"photo
credit: Chilliwack Chicken Chick - (license)\" class=\"size-full wp-image-
54415\" /></a>photo credit: <a
href=\"http://www.flickr.com/photos/15521309@N05/16688186434\">Chilliwack
Chicken Chick</a> &#8211; <a
href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>In
February the WordPress Community team announced that it would be <a
href=\"http://wptavern.com/wordpress-to-launch-experimental-wordcamp-
incubator-program\" target=\"_blank\">launching an experimental WordCamp
Incubator program</a>. After a short application window of less than two
weeks, the team received 182 applications from cities all over the world.
Andrea Middleton <a
href=\"https://make.wordpress.org/community/2016/04/28/wordcamp-incubator-
update/\" target=\"_blank\">reported</a> that the team has narrowed the
submissions down to the following 16 communities:</p>\n<ul>\n<li>Denpasar,
Indonesia</li>\n<li>Chandigarh, India</li>\n<li>Colombo, Sri
Lanka</li>\n<li>Thessaloniki, Greece</li>\n<li>Harare,
Zimbabwe</li>\n<li>Budapest, Hungary</li>\n<li>Kalamata,
Greece</li>\n<li>Kampala, Uganda</li>\n<li>Kochi, India</li>\n<li>Lagos,
Nigeria</li>\n<li>Medellin, Colombia</li>\n<li>Nagpur,
India</li>\n<li>Nairobi, Kenya</li>\n<li>San Jose, Costa
Rica</li>\n<li>Udaipur, India</li>\n<li>Ulyanovsk,
Russia</li>\n</ul>\n<p>Some of these communities already have active local
meetups and others have no organization whatsoever. Selection of the final
cities will be based on the location&#8217;s potential to foster an
emerging WordPress community.</p>\n<p>The original plan was to incubate
three WordCamps in 2016, but due to staffing changes the new scaled back
plan is to commit to two events and intensively mentor a third. Middleton
explained that the difference between the two is in the amount of support
the local team will receive from the designated community team
deputy:</p>\n<blockquote><p>Incubating an event will involve the deputy
both advising local volunteers acting as a kind of project manager for
the team as well as doing some of the organizing work on the event, like
a lead organizer usually does. Intensively-mentoring will be more project
management and involve less actual organizing work on the part of the
deputy.</p></blockquote>\n<p>Middleton said the team is speaking with the
remaining applicants about their communities and assessing their abilities
to organize a one-day, one-track WordCamp with the help of the community
team. The small events will focus on getting the local community connected
for future events.</p>\n<p>The WordCamp Incubator program is an intriguing
concept that has so far received a great deal of interest from potential
new organizers. Many locations in the remaining list of candidates are
situated in regions that are not as easily accessible to existing WordPress
communities. These are places that might not otherwise have an opportunity
to host a WordCamp for years without a little boost.</p>\n<p>We&#8217;ll be
following the progress of the Incubator program to see if the experiment
can successfully hatch a handful of new local communities. The three
locations selected will be announced this month.</p>\n<div id=\"epoch-
width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 03 May 2016 16:15:10
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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: BuddyExtender: A
Plugin for Configuring Internal BuddyPress
Settings\";s: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=54342\";s:7:\"attribs\";a:0:{}s:8:\"x
ml_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/buddy
extender-a-plugin-for-configuring-internal-buddypress-
settings\";s: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:2297:\"<a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/03/controls.jpg\"><img
src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/03/controls.jpg?resize=960%2C443\" alt=\"photo credit:
Drew Patrick Miller\" class=\"size-full wp-image-52988\"
/></a>photo credit: <a href=\"https://stocksnap.io/photo/2724C9A9DE\"> Drew Patric
target=\"_blank\">internal configuration settings</a> that are not exposed
in the plugin&#8217;s admin settings page. These are short definition lines
that can be added to a site&#8217;s <em><a
href=\"https://codex.buddypress.org/themes/bp-custom-php/\"
target=\"_blank\">bp-custom.php file</a></em> to make changes to BuddyPress
default settings.</p>\n<p><a
href=\"https://wordpress.org/plugins/buddyextender/\"
target=\"_blank\">BuddyExtender</a> is a new plugin from the development
team at <a href=\"https://webdevstudios.com/\"
target=\"_blank\">WebDevStudios</a> that aims to make it easier for
community managers to access extra configuration options. The plugin puts a
dozen internal BuddyPress settings at your fingertips, including avatar
sizes, autocomplete settings, the ability to disable @mentions, and
more.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/04/buddy-extender.png\"><img
src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/04/buddy-
extender.png?resize=678%2C1141\" alt=\"buddy-extender\" class=\"aligncenter
size-full wp-image-54389\" /></a></p>\n<p>Once installed, the plugin can be
configured at Settings -> BuddyExtender in the admin. Each setting has an
explanation on <a href=\"https://pluginize.com/buddyextender-plugin/\"
target=\"_blank\">the plugin&#8217;s homepage on Pluginize</a>,
WebDevStudio&#8217;s new plugin shop. Some of these settings have the
ability to powerfully affect the display of your BuddyPress site, so its
creators warn users to try it on a test environment before going live with
their selections. The team plans to add more options to the plugin in the
future. You can download <a
href=\"https://wordpress.org/plugins/buddyextender/\"
target=\"_blank\">BuddyExtender</a> for free from WordPress.org.</p>\n<div
id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 02 May 2016 22:33:30
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:121:\"WPTavern: Customize Posts
Plugin and Selective Refresh are Paving the Way for Front-End Editing
Powered by the
Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_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=54345\";s: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:131:\"http://wptavern.com/cu
stomize-posts-plugin-and-selective-refresh-are-paving-the-way-for-front-
end-editing-powered-by-the-
customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;
a:5:{s:4:\"data\";s:5016:\"<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> &#8211; <a href=\"https://creativecommons.org/licenses/by-
nd/2.0/\">(license)</a>\n<p>Last week Weston Ruter and the folks at XWP
released <a href=\"https://make.xwp.co/2016/04/29/customize-posts-v0-5-
released/\" target=\"_blank\">Customize Posts version 0.5</a>, which
includes a new framework for postmeta and the ability to preview featured
images. The feature <a href=\"https://wordpress.org/plugins/customize-
posts/\" target=\"_blank\">plugin</a> aims to <a
href=\"https://core.trac.wordpress.org/ticket/34923\"
target=\"_blank\">introduce basic content authorship in the Customizer</a>
to improve the new user site setup experience and make it easier to edit
existing content.</p>\n<p>As of 0.5, Customize Posts supports the ability
to change and preview the page template, and will sync changes back to the
metabox on the page edit screen. It also supports changing the post author,
excerpt, and comment/ping status, with live previews and changes saved to
the editor. Check out Ruter&#8217;s screencast touring the plugin&#8217;s
newest capabilities:</p>\n<div class=\"embed-wrap\"></div>\n<h3>Front-End
Editing Powered by the Customizer: A Not-Too-Distant
Possibility</h3>\n<p>With all these advanced editing capabilities, it
doesn&#8217;t take a giant leap to imagine a future where the customizer
provides the architecture for a front-end post editor. While
WordPress&#8217; <a href=\"https://make.wordpress.org/design/tag/front-end-
editor/\" target=\"_blank\">front-end editor project</a> seems to have gone
dormant, improvements to the Customizer are steadily chipping away at the
various aspects of content authorship that are not yet editable on the
frontend.</p>\n<p>&#8220;Now that we have the ability to selectively
refresh elements without doing full page reloads, this opens the door to
using these Customizer components outside of the Customizer itself, such as
in the frontend,&#8221; Ruter said.</p>\n<p>Front-end editing of partials,
which are similar to customizer controls but exist in the preview, is a
natural extension of the selective refresh architecture and a concept that
Ruter will be exploring in the near future.</p>\n<p>&#8220;Consider, for
example, being logged-in on the frontend,&#8221; Ruter said. &#8220;You see
something you want to edit and you click on it. Since the Customizer
partials all have selectors associated with them, if the partials are
registered with each logged-in frontend request, then there are containers
that can be targeted for editing.&#8221;</p>\n<p>Ruter envisions that
clicking on an element would load the controls for that element on demand
via a lazy-loaded Customizer pane or a floating control. He said that this
would work in concert with customizer transactions (aka snapshots) to store
the changes persistently in a transaction.</p>\n<p>Front-end editing
powered by the customizer, according to Ruter, would involve the
following:</p>\n<ol>\n<li>Being able to click Customize in the admin bar to
lazy-load the Customizer pane&#8217;s controls into the existing page
without having to having to navigate to `customize.php`</li>\n<li>Being
able to click on individual containers that have associated partials to
start editing controls that relate to those partials</li>\n<li>All changes
made on the frontend to be persisted in a transaction draft that is
initialized on demand</li>\n</ol>\n<p>The ability to edit posts in the
customizer on the front-end isn&#8217;t going to happen overnight, but
Ruter thinks a proof of concept could be available this
year.</p>\n<p>&#8220;It&#8217;s going to take some discovery and
prototyping, similar to Customize Posts,&#8221; Ruter said. &#8220;My guess
is there would be something to play around with in Q3, depending on other
projects and having enough time to put down on paper these ideas that have
been floating around for a couple years.&#8221;</p>\n<p>An important step
towards making that possible will be getting <a
href=\"https://core.trac.wordpress.org/ticket/34923\"
target=\"_blank\">basic content authorship added to the Customizer</a>,
which Ruter and contributors are working towards for the upcoming WordPress
4.6 release.</p>\n<p>These will be welcome changes for those who are
looking to do more on the frontend, but it still leaves the bulk of content
editing behind the admin. Unless you&#8217;re a developer who follows every
update to the customizer, it&#8217;s still confusing for the average
WordPress user to know what content can be edited on the frontend vs.
content that requires returning to the admin. The editing experience will
remain disjointed until the majority of tasks can be done on the
frontend.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 02 May 2016 18:15:58
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:59:\"WPTavern: Templatic
Hacked, Files and Databases
Compromised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_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=54339\";s: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:\"http://wptavern.com/te
mplatic-hacked-files-and-databases-
compromised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0
;a:5:{s:4:\"data\";s:2362:\"<p><a
href=\"https://templatic.com\">Templatic</a>, a WordPress commercial theme
company, <a href=\"https://templatic.com/news/our-site-was-
hacked/\">reported on</a> Saturday, April 30th, that its site was hacked.
Files and databases containing customer usernames and passwords were
compromised. According to R. Bhavesh, founder of Templatic, the data is
being held for ransom money.</p>\n<blockquote><p>The hacker is now
threatening us via email and demanding ransom money be paid. This hacker is
also threatening to misuse the data theyve illegally gained access to and
email our data to customers.</p>\n<p>While this is a very serious and
dangerous threat, we are not going to give in to threats and we will not be
negotiating with any hacker and thats no matter how much they
try.</p></blockquote>\n<p>Bhavesh is working with local authorities and
security experts who are investigating the matter. Since transactions on
Templatic are handled directly by PayPal or 2Checkout, hackers were not
able to obtain credit card information.</p>\n<h2>Customers Should
Immediately Change Their Passwords</h2>\n<p>If you&#8217;ve ever shared
cPanel, FTP, or wp-admin, login credentials with Templatic, you should
immediately change your passwords. If you are using a product that relies
on the Tevolution plugin and haven&#8217;t updated yet, you should <a
href=\"https://templatic.com/news/security-vulnerability-found-themes/\">do
so immediately</a>.</p>\n<p>Customers are advised to ignore emails sent
from Templatic, &#8220;The email we sent today is the last email we will
send regarding this matter. Anything further, we will share it on our
social mediate accounts at <a
href=\"https://twitter.com/templatic\">twitter</a>, <a
href=\"https://www.facebook.com/templatic\">facebook</a> and <a
href=\"https://templatic.com/blog\">our official blog</a> here,&#8221;
Bhavesh said.</p>\n<p>Customers are also advised to create a full backup of
their sites and use a <a href=\"https://sitecheck.sucuri.net//\">free site
scanning tool</a> to scan for unknown files. Bhavesh apologized for what
happened and says he accepts full responsibility, &#8220;I take up the
responsibility of this and I sincerely apologize to each single one of our
customers. We assure you that we are taking best security measures and
fight this, no matter what.&#8221;</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 02 May 2016 17:18:53
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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: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_bas
e_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:55:\"WPTavern: WordPress is Now
100% Translated Into
Marathi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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=54325\";s:7:\"attribs\";a:0:{}s:8:\"xm
l_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/wordpr
ess-is-now-100-translated-into-
marathi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5
:{s:4:\"data\";s:2089:\"<p>The Polyglots team announced this week that <a
href=\"https://mr.wordpress.org/\" target=\"_blank\">WordPress is now 100%
translated into Marathi</a>, an Indian language with an estimated 73
million native speakers. Marathi is one of the official languages of
Western India and is the <a
href=\"https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_
speakers\" target=\"_blank\">19th most spoken language in the world</a>
ranked by the number of native speakers.</p>\n<p><a
href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/wp-in-
marathi.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/wp-in-marathi.png?resize=1025%2C252\" alt=\"wp-in-
marathi\" class=\"aligncenter size-full wp-image-54327\"
/></a></p>\n<p>Less than a week ago, the Marathi translation was at just
10%, but the new translation teams rallied during the <a
href=\"http://wptavern.com/global-wordpress-translation-day-draws-448-
participants-from-105-countries\" target=\"_blank\">Global WordPress
Translation Day</a> event to complete it in a matter of days. According to
organizer Petya Raykovska, India was the big surprise with four of the big
Indian languages getting new contributors, forming teams, and connecting
across India with one another to collaborate live.</p>\n<blockquote
class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Last year Hindi was far
from 100%. Today 8 events in India translate to bo_IN, hi_IN, mr, gu, ml <a
href=\"https://twitter.com/hashtag/WPTranslationday?src=hash\">#WPTranslati
onday</a> <a
href=\"https://t.co/Lq5DoJrf0Q\">pic.twitter.com/Lq5DoJrf0Q</a></p>\n<p>&md
ash; Petya Raykovska (@petyeah) <a
href=\"https://twitter.com/petyeah/status/724103477002166272\">April 24,
2016</a></p></blockquote>\n<p></p>\n<p>Thanks to the eight local
translation team events in India, Marathi received a strong enough push to
get all WordPress strings translated at 100% just a few days after the
event concluded. Hindi is also now at 100% and the other Indian languages
are off to a good start with the newly-formed translation teams.</p>\n<div
id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 29 Apr 2016 21:48:12
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:74:\"WPTavern: Create Beer
Menus with the Easy Beer Lister Plugin 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:4:\"guid\";a:1:{i:0;a:5:{s:4:
\"data\";s:28:\"http://wptavern.com/?p=54030\";s:7:\"attribs\";a:0:{}s:8:\"
xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\
";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/crea
te-beer-menus-with-the-easy-beer-lister-plugin-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:11:\"description\";a:1:{i:0;a
:5:{s:4:\"data\";s:5072:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2015/05/beer.jpg\"><img
src=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2015/05/beer.jpg?resize=869%2C415\" alt=\"beer\"
class=\"aligncenter size-full wp-image-43810\" /></a></p>\n<p>The explosion
of the craft beer scene in recent years means that more breweries and beer
bars are <a href=\"http://wptavern.com/30-beautiful-brewery-websites-built-
with-wordpress\" target=\"_blank\">building their websites on
WordPress</a>. What are you looking for when you visit one of these
websites? Why, the beer of course! Unfortunately, with the demands of
brewing and serving customers, owners of these establishments don&#8217;t
always have time to update their available beers.</p>\n<p>The <a
href=\"https://wordpress.org/plugins/easy-beer-lister/\"
target=\"_blank\">Easy Beer Lister</a> plugin was created to help breweries
keep their information up-to-date. It offers an easy way for users to
organize beer on on their websites with the additional benefit of being
able to create beer menus with the same information. The menus are mobile
friendly and can be printed or displayed on a TV screen.</p>\n<p>Alex
Standiford initially started on this project out of a desire to improve his
WordPress plugin development skills, but it quickly grew from there once he
learned how difficult it is for brewers to keep their beer information up-
to-date across all of their mediums.</p>\n<p>&#8220;Many breweries
copy/paste their beer menu to their website, or simply dont update their
website at all,&#8221; Standiford said. &#8220;I even heard of a brewer who
was staying up late every Friday to update his powerpoint presentation for
his beer menu!</p>\n<p>&#8220;Once I realized how much time this was taking
from the busy brewery owner, I knew that I needed to do something better
than what others have done. I needed to provide them with a single place to
update their beer information, where they could efficiently display it to
customers in many different ways.&#8221;</p>\n<p>Easy Beer Lister adds a
Beer Post Type to your WordPress site with special fields for ABV, OG, IBU,
Untappd URL, video, and an image gallery.</p>\n<p><a
href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/04/beer-post-
type-easy-beer-lister.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/04/beer-post-type-easy-beer-
lister.png?resize=793%2C476\" alt=\"beer-post-type-easy-beer-lister\"
class=\"aligncenter size-full wp-image-54312\" /></a></p>\n<p>Beer styles
can be added as categories and beer pairings as tags. Availability can also
be specified via a custom taxonomy using terms such as On-Tap, Spring,
Summer, Year-Round, etc. Beers take on the design of the active theme, but
you can further customize the post type to improve its display. The plugin
comes with a few basic templates, but Standiford is also creating more that
can be added on.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/04/beer-page.png\"><img
src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/04/beer-
page.png?resize=1025%2C826\" alt=\"beer-page\" class=\"aligncenter size-
full wp-image-54314\" /></a></p>\n<p>Once beers are organized and added to
WordPress, users can create custom beer menus to display available beers.
Sorting methods, such as availability, food pairings, and what&#8217;s on
tap, can be bulk-edited in the admin.</p>\n<p><a
href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/beer-
menu.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/beer-menu.png?resize=1025%2C577\" alt=\"beer-menu\"
class=\"aligncenter size-full wp-image-54317\" /></a></p>\n<p>Easy Beer
Lister also includes shortcodes for displaying a specific beer or a list of
beers:</p>\n<ul>\n<li><strong>[beer]</strong> &#8211; Create a URL to a
specified beer. The link also shows a preview of the beer when you hover
over it with your mouse.</li>\n<li><strong>[beer_list]</strong> &#8211;
Create a list of beers based on specified parameters, such as style or
pairings.</li>\n</ul>\n<p>Standiford plans to open a marketplace for GPL
add-ons that extend Easy Beer Lister. <a
href=\"http://www.easybeerlister.com/downloads/untappd-importer/\"
target=\"_blank\">Untappd Importer</a> is his first add-on, which makes it
easy for breweries to get started without having to manually enter all of
their beers.</p>\n<p>&#8220;With this add-on, I was able to import all 600+
beers from Dogfish Head Brewings Untappd page in about three minutes,
including the ABV and IBU information,&#8221; Standiford said. He is
working on other add-ons such as a beer image generator, an Instagram photo
import function, and a bartender suite that allows bartenders to access a
page to add/remove beers from the tap menu/website
quickly.</p>\n<p>&#8220;The plugin is more than a tool to help brewers
manage their beer on their website,&#8221; Standiford said. &#8220;I aim to
use it to dramatically reduce the amount of time a brewer spends updating
beer information on all facets of their business.&#8221;</p>\n<div
id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 29 Apr 2016 18:46:22
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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: WordCamp
Organizers Get New Tool for Creating Personalized WordCamp
Badges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:28:\"http://wptavern.com/?p=54270\";s: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/wordcam
p-organizers-get-new-tool-for-creating-personalized-wordcamp-
badges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:
{s:4:\"data\";s:3947:\"<p>Creating personalized WordCamp badges for
attendees has traditionally been a time-consuming task for event
organizers. Last year the community held 89 WordCamps with 21,000
attendees, and each person received a name badge customized for the event
they participated in. That&#8217;s a massive number of badges to prepare
for printing.</p>\n<p>In the past, WordCamp organizers <a
href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer-
handbook/first-steps/helpful-documents-and-templates/create-wordcamp-
badges-with-gravatars/personalized-badges-with-indesign/\"
target=\"_blank\">used an InDesign template for making the badges</a>, but
this required a tedious process of creating a CSV file of attendees,
running a custom script, and completing a list of complicated steps. George
Stephanis, who had experience using the InDesign template, wanted to
simplify this process for organizers and help them move away from having to
use a proprietary, commercial software product.</p>\n<p>He <a
href=\"https://make.wordpress.org/community/2016/02/12/name-badges-are-
hard-to-make-and-confusing-for-organizers/\" target=\"_blank\">built a
proof-of-concept plugin</a> that allows organizers to create badges with
HTML and CSS inside the WordPress admin. After several iterations and
contributions from the community team, Ian Dunn <a
href=\"https://make.wordpress.org/community/2016/04/26/new-tool-for-
creating-personalized-wordcamp-badges/\" target=\"_blank\">announced</a>
that the tool is now ready for use.</p>\n<p>WordCamp organizers can access
the tool under Tickets > Tools > Generate Badges or by navigating through
the Customizer to the CampTix HTML Badges panel. The default badge design
is shown below with the back of the badge (upside-down) and the front
beneath it with a marker for poking the lanyard holes. User names and
gravatars are automatically displayed.</p>\n<p><a
href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/04/wordcamp-
badges-with-html-css.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/04/wordcamp-badges-with-html-
css.png?resize=900%2C783\" alt=\"wordcamp-badges-with-html-css\"
class=\"aligncenter size-full wp-image-54285\" /></a></p>\n<p>Stephanis
included the CodeMirror bundled with Jetpacks Custom CSS module to make it
easier for organizers to customize the badge design to suit the theme of
the WordCamp. The plugin also makes it fairly easy to customize any aspect
of the badge using CSS.</p>\n<p>&#8220;The underlying markup has plenty of
CSS classes to help with customization,&#8221; Dunn said. &#8220;For
example, you could make volunteer badges have a different background color
(so that volunteers are easier to find), or make attendees&#8217; last
names appear in a smaller font than their first names. There are also
plenty of empty &lt; div > elements that you can re-purpose for arbitrary
design features.&#8221;</p>\n<p>Once the design is finished, organizers can
export as a PDF and take it to a print shop. Documentation for customizing
the badges is <a
href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer-
handbook/first-steps/helpful-documents-and-templates/create-wordcamp-
badges-with-gravatars/personalized-badges-with-html-css/\"
target=\"_blank\">available in the WordCamp Organizer
handbook</a>.</p>\n<p>Organizers are still welcome to use the InDesign tool
to create badges, but the new plugin for the customizer is a much easier
entry point for those who aren&#8217;t familiar with InDesign. If you can
help improve the tool, the code is open source on the <a
href=\"https://meta.svn.wordpress.org/sites/trunk/wordcamp.org/public_html/
wp-content/plugins/camptix-badge-generator\" target=\"_blank\">Meta
repository</a> and <a
href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer-
handbook/first-steps/web-presence/contributing-to-wordcamp-org/\"
target=\"_blank\">available for anyone to patch</a>.</p>\n<div id=\"epoch-
width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 28 Apr 2016 23:15:39
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:\"WPTavern: WordCamp Tokyo
2016 Calls for Speakers, Adds New English
Track\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:28:\"http://wptavern.com/?p=54145\";s: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:81:\"http://wptavern.com/wordcamp
-tokyo-2016-calls-for-speakers-adds-new-english-
track\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{
s:4:\"data\";s:2318:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/wordcamp-tokyo.png\"><img
src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/wordcamp-
tokyo.png?resize=1025%2C506\" alt=\"wordcamp-tokyo\" class=\"aligncenter
size-full wp-image-54265\" /></a><br />\n<a
href=\"https://2016.tokyo.wordcamp.org/\" target=\"_blank\">WordCamp Tokyo
2016</a> will be held September 17-18 at the <a
href=\"http://www.bellesalle.co.jp/room/bs_shinjukugrand/\"
target=\"_blank\">Bellesalle Shinjuku Grand</a>. This will be the 9th
edition of the event, which sold out last year with 750
attendees.</p>\n<p>Yesterday the WordCamp&#8217;s organizers put out a <a
href=\"https://2016.tokyo.wordcamp.org/04/27/call-for-speakers-en/\"
target=\"_blank\">call for both for English and Japanese speakers</a>. Last
year the event hosted a selection of <a
href=\"https://2015.tokyo.wordcamp.org/session/6-3/\"
target=\"_blank\">English sessions</a>, but the 2016 edition will add a
dedicated track for English speakers with simultaneous
interpretation.</p>\n<p>The WordCamp will be broken into three tracks:
User, Technical, and Global. Descriptions and example topics for each are
available in the <a href=\"https://2016.tokyo.wordcamp.org/04/27/call-for-
speakers-en/\" target=\"_blank\">post</a> calling for speakers. All English
language presentations will be placed under the Global track but speakers
are welcome to submit any topic.</p>\n<p>The theme of WordCamp Tokyo 2016
is &#8220;breaking dawn.&#8221; With the advent of the WP REST API and the
recent surge in WordPress-powered application development, the WordPress
community is entering a new era. Organizers have selected a motto as part
of the theme:</p>\n<p>&#8220;<em>Lets try something new</em>, said
organizer Toru Miki. &#8220;That is the message we want to get across to
the WordCamp Tokyo 2016 attendees. Our goal is to offer sessions that can
motivate and stimulate them, just like the beam of sunlight in the
dawn.&#8221;</p>\n<p>If you want to attend one of the biggest WordCamps on
the planet and you have a topic that you think can inspire attendees, the
speaker application deadline is Friday, June 10. Presentations can be 15
minutes, 30 minutes, or 75 minutes. Applicants will be notified of their
acceptance status by mid-July.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 28 Apr 2016 20:38:40
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:67:\"WPTavern: WPWeekly Episode
232 Recap of WordCamp San Diego
2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:44:\"http://wptavern.com?p=54156&preview_id=54156\";s:7:\"attribs\";a
:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lan
g\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wptave
rn.com/wpweekly-episode-232-recap-of-wordcamp-san-diego-
2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s
:4:\"data\";s:2847:\"<p>In this episode of WordPress Weekly, <a
href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of
the week as our guest couldn&#8217;t make it.</p>\n<p>Marcus shares his
experience at WordCamp San Diego this past weekend and offers feedback to
the organizing team. We let you know what&#8217;s in the recently released
WordPress update and discuss what happens to the data WordPress.org
collects from users sites. As usual, Marcus ends the show with his plugin
picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a
href=\"http://wptavern.com/wordpress-4-5-1-fixes-12-bugs\">WordPress 4.5.1
Fixes 12 Bugs</a><br />\n<a href=\"http://wptavern.com/global-wordpress-
translation-day-draws-448-participants-from-105-countries\">Global
WordPress Translation Day Draws 448 Participants from 105 Countries</a><br
/>\n<a href=\"http://wptavern.com/wordpress-for-ios-adds-geotag-support-
comment-moderation-gestures\">WordPress for iOS Adds Geotag Support,
Comment Moderation Gestures</a><br />\n<a
href=\"http://wptavern.com/wordpress-4-6-to-update-theme-filter-tags-in-
the-admin\">WordPress 4.6 to Update Theme Filter Tags in the Admin</a><br
/>\n<a href=\"http://wptavern.com/what-wordpress-org-does-with-the-data-it-
collects-from-users-sites\">What WordPress.org Does with the Data it
Collects from Users Sites</a></p>\n<h2>Plugins Picked By
Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/video-gallery-
awesome-responsive-youtube-vimeo-gallery/\">Video Gallery &#8211; YouTube
and Vimeo Video Gallery </a>is a responsive plugin that allows you to show
YouTube and Vimeo videos in various formats.</p>\n<p><a
href=\"https://wordpress.org/plugins/on-sale-page-for-woocommerce/\">OnSale
Page for WooCommerce </a>is an extension for WooCommerce that enables you
to have a On Sale page with paging, sorting, and filtering
options.</p>\n<p><a href=\"https://wordpress.org/plugins/embed-google-
adwords-codes-on-woocommerce/\">Embed Google AdWords Codes on WooCommerce
</a>enables users to implement Google AdWords conversion tracking to
determine how effective ads are. It provides information such as the number
of clicks that are generating sales.</p>\n<h2>WPWeekly
Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 4th 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 #232:</strong><br
/>\n</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 28 Apr 2016 06:24:05
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_bas
e_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:65:\"WPTavern: Array Cuts Theme
Club Pricing, Releases Free Theme
Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:28:\"http://wptavern.com/?p=54083\";s:7:\"attribs\";a:0:{}s:8:\"xml_b
ase\";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:74:\"http://wptavern.com/array-
cuts-theme-club-pricing-releases-free-theme-
pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s
:4:\"data\";s:4007:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/04/array-logo.png\"><img
src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/04/array-
logo.png?resize=956%2C440\" alt=\"array-logo\" class=\"aligncenter size-
full wp-image-54154\" /></a></p>\n<p>Array <a
href=\"https://arraythemes.com/welcome-to-array-3-0/\"
target=\"_blank\">launched a redesign</a> of its theme shop this week along
with drastic price cuts for single theme and club purchases. After
conducting a <a href=\"https://arraythemes.com/complete-a-brief-survey-for-
50-off/\" target=\"_blank\">customer survey</a> earlier this year, the
company moved to act on feedback regarding its pricing
structure.</p>\n<p>Previously, Array offered single theme purchases ranging
in price from $49 to $89 and the entire collection for $199. The new
pricing is more straightforward with all single themes at $49 and club
membership for $89.</p>\n<p>The company, which began under the name Okay
Themes and rebranded two years ago, announced last April that it would be
<a href=\"http://wptavern.com/array-returns-to-themeforest-after-
disappointing-experiences-selling-on-creative-market-and-wordpress-com\"
target=\"_blank\">returning to Themeforest</a> after disappointing
experiences selling on Creative Market and WordPress.com. Array currently
has five items in its <a
href=\"http://themeforest.net/user/arraythemes/portfolio\"
target=\"_blank\">portfolio on Themeforest</a> ranging in price from $44-
64. The company negotiated an agreement with the marketplace that gives
them a better rate than other non-exclusive authors typically
receive.</p>\n<p>&#8220;Although I cant go into this in too much detail,
we are actually not operating at the typical non-exclusive author rates, as
most would rightfully assume,&#8221; founder Mike McAlister said in a <a
href=\"http://wptavern.com/array-returns-to-themeforest-after-
disappointing-experiences-selling-on-creative-market-and-wordpress-
com#comment-66896\" target=\"_blank\">comment</a> on our post about the
news. &#8220;Weve worked out a mutually beneficial agreement with Envato
that gives us a little more room for experimentation and bandwidth for
providing quality support.&#8221;</p>\n<p>With equal or more affordable
pricing at Themeforest, customers had little incentive to buy directly from
the Array website with the previous pricing structure in place. The new $89
club membership is now more compelling for those who are interested in
purchasing multiple themes directly from Array.</p>\n<p>In addition to the
the redesign and new pricing, Array released a free theme pack to help
potential customers get acquainted with their products before purchasing.
The pack includes five of their most popular themes, some of which were not
previously offered for free, including Author, Editor, Fixed, Typable and
Transmit. Editor is also available on WordPress.org and
WordPress.com.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/free-theme-pack.jpg\"><img
src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/free-theme-
pack.jpg?resize=1025%2C772\" alt=\"free-theme-pack\" class=\"aligncenter
size-full wp-image-54143\" /></a></p>\n<p>Array&#8217;s journey over the
past two years, which includes pulling out of Themeforest, rebranding, and
then jumping back into the marketplace with a more beneficial arrangement,
necessitated an update in its pricing structure in order to remain
competitive. Customers gravitate towards straightforward pricing that they
can understand, especially when products are sold across multiple
marketplaces.</p>\n<p>The theme shop&#8217;s experimentation with selling
on Themeforest, WordPress.com, Creative Market, Mojo Marketplace, and
Array&#8217;s own website shows how much it has had to adapt to reach
potential customers. Commercial WordPress themes are a multi-million dollar
industry, but there&#8217;s no single avenue paved to success even when
partnering with one of the dominant marketplaces.</p>\n<div id=\"epoch-
width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 28 Apr 2016 05:32:29
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:\"Matt: You
Yourself\";s: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=46523\";s:7:\"attribs\";a:0:{}s:8:\"xml_bas
e\";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:35:\"https://ma.tt/2016/04/you-
yourself/\";s: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:419:\"<blockquote><p>You yourself, as much as anybody in
the entire universe, deserve your love and
affection.</p></blockquote>\n<p>This quote is almost always attributed to
Buddha. <a href=\"http://fakebuddhaquotes.com/you-yourself-as-much-as-
anybody-in-the-entire-universe-deserve-your-love-and-affection/\">Luckily
there&#8217;s a great WordPress site called Fake Buddha Quotes that tracks
down its actual
provenance</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:\"Wed, 27 Apr 2016 21:55:24
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n
0;a:5:{s:4:\"data\";s:35:\"Matt: Secret History of Tiger
Woods\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:22:\"https://ma.tt/?p=46519\";s: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://ma.tt/2016/04/secret-
history-of-tiger-
woods/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:
{s:4:\"data\";s:283:\"<p>ESPN has a fascinating longread on <a
href=\"http://espn.go.com/espn/feature/story/_/id/15278522/how-tiger-woods-
life-unraveled-years-father-earl-woods-death\">The Secret History of Tiger
Woods, especially in the context of his relationship with and the death of
his
father</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xm
l_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 Apr 2016 03:33:40
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n
0;a:5:{s:4:\"data\";s:63:\"WPTavern: A 42-Year-Old Developers Advice on
Working in
Tech\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:28:\"http://wptavern.com/?p=54077\";s:7:\"attribs\";a:0:{}s:8:\"xml_b
ase\";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/a-42-
year-old-developers-advice-on-working-in-
tech\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s
:4:\"data\";s:5455:\"<a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/glasses-computer.jpg\"><img
src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/glasses-
computer.jpg?resize=960%2C557\" alt=\"photo credit: Aliis Sinisalu\"
class=\"size-full wp-image-54120\" /></a>photo credit: <a
href=\"https://stocksnap.io/photo/2SLJBDK4T0\">Aliis Sinisalu</a>\n<p><a
href=\"https://twitter.com/akosma\" target=\"_blank\">Adrian
Kosmaczewski</a>, a 42-year-old, self-taught developer, published an
article today titled <a href=\"https://medium.com/@akosma/being-a-
developer-after-40-3c5dd112210c#.5nju9pdg8\" target=\"_blank\">Being A
Developer After 40</a>. The piece is full of sage advice that is resonating
with developers of all ages. His post is a summary of a talk he gave at the
<a href=\"https://www.appbuilders.ch/\" target=\"_blank\">App Builders
Switzerland</a> conference in April with the accompanying slides <a
href=\"https://speakerdeck.com/akosma/being-a-developer-after-40\"
target=\"_blank\">available on Speaker Deck</a>.</p>\n<p>Kosmaczewski gives
readers a glimpse into what the world of technology was like in 1997, the
year he began his career as a developer before the days of unit tests and
continuous integration, before SVN even existed.</p>\n<blockquote><p>My
first job consisted of writing ASP pages in various editors, ranging from
Microsoft FrontPage, to HotMeTaL Pro to EditPlus, managing cross-browser
compatibility between Netscape Navigator and Internet Explorer 4, and
writing stored procedures in SQL Server 6.5 powering a commercial website
published in Japanese, Russian, English and Spanishwithout any consistent
UTF-8 support across the software stack.</p></blockquote>\n<p>If you worked
as a developer in those days you may fondly remember working with some of
these technologies. Since then, countless new ones have been introduced but
the requirement to keep learning remains unchanged. Kosmaczewski offers
advice on navigating the hype surrounding the newest programming
languages.</p>\n<blockquote><p>Do not worry about hype. Keep doing your
thing, keep learning what you were learning, and move on. Pay attention to
it only if you have a genuine interest, or if you feel that it could bring
you some benefit in the medium or long run.</p></blockquote>\n<p>It&#8217;s
easy to get overwhelmed with all the new languages and frameworks that
people say you need to learn in order to stay relevant, but Kosmaczewski
encourages readers to follow their own interests and learn about software
history. Otherwise, you&#8217;ll be forever chasing new architectures and
ideas but never learning them in depth or gaining more than a shallow
understanding of their implementation.</p>\n<p>In an industry where
professionals are valued by their abilities in specific languages, many
programmers allow their identity to be wrapped up in the tools they use.
Kosmaczewski encourages readers to be ready to change
course:</p>\n<blockquote><p>Do not criticize or make fun of the technology
choices of your peers; for other people will have their own reasons to
choose them, and they must be respected. Be prepared to change your mind at
any time through learning. One day you might like Windows. One day you
might like Android. I am actually liking some parts of Android lately. And
that is OK.</p></blockquote>\n<p>His perspective comes from nearly 20 years
of working as a developer. The lesson I saw in this section of his essay is
that the technologies you work with are part of your journey, and
you&#8217;ll cycle through many of them. However, be careful not to allow
them to become your whole identity, because you are still
learning.</p>\n<h3>The Value of Teaching</h3>\n<p>One of the most inspiring
parts of his post is the section on teaching. We often hear the saying,
&#8220;Those who can, do; those who can&#8217;t, teach,&#8221; thrown
around smugly, but this devalues educators. Teaching is somewhat of a lost
art in an industry where many professionals are self-taught. Yet,
Kosmaczewski says there are some things you cannot learn without having
taught someone else:</p>\n<blockquote><p>Teaching will make you more
humble, because it will painfully show you how limited your knowledge is.
Teaching is the best way to learn. Only by testing your knowledge against
others are you going to learn properly. This will also make you more
respectful regarding other developers and other technologies; every
language, no matter how humble or arcane, has its place within the Tao of
Programming, and only through teaching will you be able to feel
it.</p></blockquote>\n<p>Kosmaczewski also shares some moving stories of
how his teaching and mentoring have made a difference in the world,
especially for those who are just beginning.</p>\n<p>If you have a few
minutes, I highly recommend reading &#8220;<a
href=\"https://medium.com/@akosma/being-a-developer-after-40-
3c5dd112210c#.5nju9pdg8\" target=\"_blank\">Being A Developer After
40</a>.&#8221; This article is a window into one developer&#8217;s journey
but his advice and habit recommendations are relevant to everyone from
experienced programmers to those just starting out. Kosmaczewski explores
some of the darker aspects of the industry but also the beauty of sticking
with it. His closing statement sums it up nicely:</p>\n<blockquote><p>As
long as your heart tells you to keep on coding and building new things, you
will be young, forever.</p></blockquote>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 21:41:47
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:39:\"WPTavern: WordPress 4.5.1
Fixes 12
Bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"dat
a\";s:28:\"http://wptavern.com/?p=54104\";s:7:\"attribs\";a:0:{}s:8:\"xml_b
ase\";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/wordpress
-4-5-1-fixes-12-
bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s
:4:\"data\";s:1121:\"<p>WordPress 4.5.1 <a
href=\"https://wordpress.org/wordpress-4.5.1.zip\">is available</a> and <a
href=\"https://wordpress.org/news/2016/04/wordpress-4-5-1-maintenance-
release/\">addresses a dozen items</a> reported against WordPress 4.5.
According to Adam Silverstein, &#8220;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,&#8221; are among the bugs fixed. A detailed list of changes
can be <a
href=\"https://core.trac.wordpress.org/log/branches/4.5?rev=37295&stop_rev=
37182\">viewed here</a>.</p>\n<p>WordPress 4.5.1 is already being pushed
out to sites configured for auto updates. If you&#8217;d rather not wait or
have auto updates disabled, you can browse to Dashboard &#8211; Updates and
click the Update Now button. If you encounter an issue or believe
you&#8217;ve discovered a bug, please post it in the <a
href=\"https://wordpress.org/support/forum/how-to-and-
troubleshooting\">troubleshooting section</a> of the support
forums.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 19:54:23
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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: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_bas
e_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: Global WordPress
Translation Day Draws 448 Participants from 105
Countries\";s: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=54010\";s: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/glob
al-wordpress-translation-day-draws-448-participants-from-105-
countries\";s: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:7593:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/04/wordpress-global-translation-day.png\"><img
src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/04/wordpress-
global-translation-day.png?resize=1025%2C511\" alt=\"wordpress-global-
translation-day\" class=\"aligncenter size-full wp-image-54040\"
/></a></p>\n<p>The first <a href=\"https://wptranslationday.org/\"
target=\"_blank\">Global WordPress Translation Day</a> was held over the
weekend, organized by the Polyglots team. The event included 24 hours of
live training sessions and translation sprints that spanned every timezone
from East to West. The goal was to grow the translation teams and educate
new translators with live training sessions.</p>\n<p>During the course of
the event, 448 translators from 105 countries translated 40,350 new strings
across 597 projects. This includes WordPress core and open source plugins
and themes, such as Pods, Google Two-Factor Authentication, WooCommerce,
bbPress, Yoast SEO, and hundreds of others.</p>\n<blockquote
class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a
href=\"https://twitter.com/hashtag/WPTranslationDay?src=hash\">#WPTranslati
onDay</a> in Japan &#8211; Our collective achievement today: of top 100, 20
plugins/62 plugins are now translated in Japanese.</p>\n<p>&mdash; Naoko
Takano (@naokomc) <a
href=\"https://twitter.com/naokomc/status/724180025033940992\">April 24,
2016</a></p></blockquote>\n<p></p>\n<a
href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/japan-
thailand-wptranslation-day.png\"><img
src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/japan-
thailand-wptranslation-day.png?resize=1025%2C766\" alt=\"Japan and Thailand
live streaming each other\'s events - photo credit: Menn Studio\"
class=\"size-full wp-image-54075\" /></a>Japan and Thailand live streaming
each other&#8217;s events &#8211; photo credit: <a
href=\"https://twitter.com/MennStudio/status/724151092771065857\">Menn
Studio</a>\n<p>&#8220;We had 39 local events and 11 remote events happening
across the globe,&#8221; organizer Petya Raykovska said. &#8220;India was
the big surprise with four of the big Indian languages getting new
contributors, forming teams and connecting across India with one another to
collaborate live.&#8221;</p>\n<blockquote class=\"twitter-tweet\"><p
lang=\"en\" dir=\"ltr\">Last year Hindi was far from 100%. Today 8 events
in India translate to bo_IN, hi_IN, mr, gu, ml <a
href=\"https://twitter.com/hashtag/WPTranslationday?src=hash\">#WPTranslati
onday</a> <a
href=\"https://t.co/Lq5DoJrf0Q\">pic.twitter.com/Lq5DoJrf0Q</a></p>\n<p>&md
ash; Petya Raykovska (@petyeah) <a
href=\"https://twitter.com/petyeah/status/724103477002166272\">April 24,
2016</a></p></blockquote>\n<p></p>\n<p>All of the sessions were live
streamed and the team had 316 people who watched the broadcast at some
point during the day. The event featured 12 training sessions in different
languages to teach participants how to translate WordPress core, including
Japanese, Hindi, Bulgarian, German, Slovak, French, Spanish, Portuguese,
Swedish, Dutch, Lithuanian and Italian.</p>\n<p>The other sessions focused
on topics for plugin and theme developers, such as:</p>\n<ul>\n<li>Plugin
documentation and support for the whole world</li>\n<li>How to find
translators for your plugins and themes</li>\n<li>Localization Beyond
Translation </li>\n<li>The life of a string or how WordPress gets its
translations</li>\n<li>Plugin/Theme i18n: How to prepare your plugin or
theme for translate.wordpress.org</li>\n<li>GlotDict how a browser
extension changes your translation workflow</li>\n</ul>\n<p>All of the
videos from the event are <a
href=\"https://www.crowdcast.io/e/wptranslationday\"
target=\"_blank\">available on Crowdcast.io</a> if you want to learn more
about the WordPress Polyglots team and how everyone works together. One of
the best outcomes of the day, according to Raykovska, is that translation
teams now have video documentation for new contributors. They plan to
upload the videos to WordPress.tv and include them in the Polyglots
handbook.</p>\n<h3>Global WordPress Translation Day Offers a New Avenue for
Contributing to Translations</h3>\n<p>&#8220;We do contributor days around
WordCamps and then the community summit once a year,&#8221; Raykovska said.
&#8220;The contributor summit hasnt been super productive for Polyglots so
far. Unlike most other teams, most contributors are 100% volunteers and
cant afford (or get a Visa) for a trip to the US.</p>\n<p>&#8220;So we
wanted to organize a contributor day without these restrictions for
participants,&#8221; she said. &#8220;And thats how the idea was
born.&#8221;</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\"
dir=\"ltr\">Staring at the top of the pile of strings we translated during
the Dutch <a
href=\"https://twitter.com/hashtag/wptranslationday?src=hash\">#wptranslati
onday</a> meetup! <a
href=\"https://twitter.com/hashtag/community?src=hash\">#community</a> <a
href=\"https://t.co/hnC3OJsHTS\">pic.twitter.com/hnC3OJsHTS</a></p>\n<p>&md
ash; Taco Verdo (@TacoVerdo) <a
href=\"https://twitter.com/TacoVerdo/status/724499512639782912\">April 25,
2016</a></p></blockquote>\n<p></p>\n<p>The Polyglots team has not set a
date for the next Global WordPress Translation event, but Raykovska said it
will be easier for them to organize now that they have the processes
figured out. One of the most positive outcomes of this past weekend&#8217;s
event is that it has sparked translation teams to organize more local
events, especially now that they are armed with video documentation and
training tools for plugin and theme developers.</p>\n<p>&#8220;Some
countries are planning monthly contributor translation drives and
standalone contributor days,&#8221; Raykovska said.</p>\n<blockquote
class=\"instagram-media\"><div>\n<div>\n<div></div>\n</div>\n<p> <a
href=\"https://www.instagram.com/p/BElHSiBB_KU/\"
target=\"_blank\">#WPTranslationDay WordBench
</a></p>\n<p>A photo posted by Naoko Takano (@naokomc) on Apr 24, 2016 at
3:37am PDT</p>\n</div>\n</blockquote>\n<p></p>\n<p>Raykovska said next time
she would like to get more people on screen from the events happening in
different locations around the world. She also hopes to organize some round
tables where Polyglots team members can share about their local processes
and team structures.</p>\n<p>&#8220;I think we need to make a solid effort
to bridge the gap between plugin authors and translators,&#8221; Raykovska
said. &#8220;The demand for translations is growing, especially for the
most used languages. An event like this would be a good reason for the two
groups to gather and talk about whats not quite working right now and
think of ways to overcome it.&#8221;</p>\n<p>As many polyglots will be in
attendance at WordCamp Europe, the team is considering organizing a
gathering there. This multilingual WordPress event will be <a
href=\"http://wptavern.com/wordcamp-europe-2016-expands-attendee-capacity-
to-2200-largest-wordcamp-to-date\" target=\"_blank\">the largest WordCamp
in history with 2200 attendees</a>. WordPress&#8217; rapidly growing
international user base and the expanding Polyglots team could make the
Global Translation Day event a catalyst for future improvements to the
project.</p>\n<p>&#8220;If we can go one step further, it would be awesome
to revive the conversation about multilingual in core,&#8221; Rakovska
said. The success of this past weekend&#8217;s event shows the
Polyglots&#8217; enthusiasm and determination to collaborate across borders
to get things done.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 17:11:28
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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: Im Attending
WordCamp Chicago, 2016, This
Weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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=54065\";s:7:\"attribs\";a:0:{}s:8:\"xm
l_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:67:\"http://wptavern.com/im-
attending-wordcamp-chicago-2016-this-
weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5
:{s:4:\"data\";s:1872:\"<p><a
href=\"https://2016.chicago.wordcamp.org/\">WordCamp Chicago 2016</a> takes
place this weekend and I&#8217;ll be among the many attendees. I
haven&#8217;t visited the city <a href=\"http://wptavern.com/my-wordcamp-
chicago-experience\">since 2009</a> and I&#8217;m excited to satisfy my
craving for deep dish pizza at <a href=\"http://www.loumalnatis.com/\">Lou
Malnati&#8217;s</a>.</p>\n<p>WordCamp Chicago 2009 is a special memory
because it&#8217;s where I saw a demo of <a
href=\"http://www.gravityforms.com/\">Gravity Forms</a> before it launched
to the public. At the time Contact Form 7 was a household name and the go-
to plugin for creating forms. I knew it was going to be successful when I
saw its user interface and how it worked. Seven years later, the plugin is
still going strong.</p>\n<p>The GPL license was also hot topic at the time.
During Matt Mullenweg&#8217;s State of the Word presentation, he announced
that the WordPress Theme directory would have a section dedicated to theme
shops that were 100% GPL. I remember hearing the room gasp during his
announcement.</p>\n<p><a
href=\"https://www.flickr.com/photos/jeffc316/3611592503/in/album-
72157619302065170/\"><img
src=\"http://i2.wp.com/farm4.staticflickr.com/3659/3611592503_8deb33cc39_z.
jpg?resize=640%2C480&ssl=1\" alt=\"100_2303\" /></a></p>\n<p>In 2009, the
WordPress commercial theme market was young and the GPL was a license many
theme companies didn&#8217;t embrace. Having your company <a
href=\"https://wordpress.org/themes/commercial/\">listed on a page</a> that
gets a ton of traffic motivated at least a couple of theme shops to embrace
the GPL.</p>\n<p>I&#8217;m looking forward to meeting new people this
weekend and creating new memories. If you happen to see me, please stop and
say hi. I&#8217;d love to talk to you about your experiences with
WordPress.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 06:12:10
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_bas
e_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: WordPress for
iOS Adds Geotag Support, Comment Moderation
Gestures\";s: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=54024\";s:7:\"attribs\";a:0:{}s:8:\"x
ml_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/wordp
ress-for-ios-adds-geotag-support-comment-moderation-
gestures\";s: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:2967:\"<p>WordPress for iOS 6.1 is <a
href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&
ct=\">available from the App Store</a> and includes a number of
improvements. Those who use Jetpack can now manage Publicize connections
from within the app.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/04/img_8539.png\"><img class=\"aligncenter size-large
wp-image-54047\" src=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/04/img_8539.png?resize=282%2C500\" alt=\"Publicize
Connections\" /></a>Comments can quickly be moderated thanks to gestures
added to the notifications screen. Swiping left on a notification displays
options to approve, unapprove, spam, or trash a comment.</p>\n<a
href=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/04/CommentModerationGestures.png\"><img class=\"size-
large wp-image-54054\" src=\"http://i0.wp.com/wptavern.com/wp-
content/uploads/2016/04/CommentModerationGestures.png?resize=281%2C500\"
alt=\"Comment Moderation Gestures\" /></a>Comment Moderation
Gestures\n<p>If you&#8217;ve connected multiple sites to the app, it can be
cumbersome to navigate to the one you access most often. This version
includes the ability to set up a primary site from within the Account
Settings panel. During testing however, I noticed my version of the app
doesn&#8217;t have this setting. I&#8217;m going through the support
process to determine the cause.</p>\n<a
href=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/04/img_8537.png\"><img class=\"size-large wp-image-
54043\" src=\"http://i1.wp.com/wptavern.com/wp-
content/uploads/2016/04/img_8537.png?resize=282%2C500\" alt=\"Configure a
Primary Site\" /></a>My Account Settings Page\n<p>A new UI element at the
bottom of the post creation screen allows users to geotag a post. Simply
type in an address or location into the search field and a map displays
with the location data. The location is stored in the WordPress backend but
can be displayed on the frontend if a theme supports it.</p>\n<a
href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/img_8538.png\"><img class=\"size-large wp-image-
54044\" src=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/img_8538.png?resize=282%2C500\" alt=\"Geotag
Support\" /></a>Geotag Support\n<p>A full list <a
href=\"https://github.com/wordpress-mobile/WordPress-
iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.1+label%3A%22[Type]+Enhan
cement%22\">of changes</a> and <a href=\"https://github.com/wordpress-
mobile/WordPress-
iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.1+label%3A%22[Type]+Bug%2
2\">bug fixes</a> is available on GitHub where you can also follow the <a
href=\"https://github.com/wordpress-mobile/WordPress-
iOS/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A6.2+\">progress of
6.2</a>. If you have any issues or think you&#8217;ve discovered a bug,
please report it on the <a
href=\"https://ios.forums.wordpress.org/\">WordPress for iOS support
forums</a>.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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 04:03:58
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_bas
e_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:64:\"WPTavern: WordPress 4.6 to
Update Theme Filter Tags in the
Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:28:\"http://wptavern.com/?p=53952\";s: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:74:\"http://wptavern.com/wordpres
s-4-6-to-update-theme-filter-tags-in-the-
admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{
s:4:\"data\";s:2093:\"<p>The admin themes browser has been updated and
modernized in recent years to make it easier to search through the 3,800+
themes available on WordPress.org. One aspect of the interface that has
lagged behind, however, is the list of tags for filtering themes. The tags
have gone untouched since back in the day when users would search themes by
color.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-
content/uploads/2016/04/theme-tags.png\"><img
src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/04/theme-
tags.png?resize=1025%2C726\" alt=\"theme-tags\" class=\"aligncenter size-
full wp-image-54013\" /></a></p>\n<p>The WordPress Theme Review
Team&#8217;s <a href=\"https://core.trac.wordpress.org/ticket/33407\"
target=\"_blank\">proposal to overhaul the outdated tags/filters</a> is
making it into WordPress 4.6. All of the color tags will be removed, which
makes sense since many modern themes are customizable when it comes to
accent colors. The update will also remove fixed, fluid, and responsive
layouts and will add &#8216;Grid Layout&#8217; to the list. In the list of
miscellaneous features, Blavatar will be removed and Footer Widgets will be
added.</p>\n<p>The Subject section will be completely revamped by removing
the all the previous tags and replacing them with a new list of general
theme categories:</p>\n<ul>\n<li>Blog</li>\n<li>E-
Commerce</li>\n<li>Education</li>\n<li>Entertainment</li>\n<li>Food &#038;
Drink</li>\n<li>Holiday</li>\n<li>News</li>\n<li>Photography</li>\n<li>Port
folio</li>\n</ul>\n<p>The tags will also be updated on the WordPress Theme
Directory <a href=\"https://meta.trac.wordpress.org/ticket/1187\"
target=\"_blank\">in cooperation with the meta team</a>.</p>\n<p>The
WordPress theme landscape has changed so much over the years, especially
with the introduction of the customizer, and this update will make it
easier for users to narrow down themes they want to use. WordPress.org
theme authors will want to be ready to update their themes as soon as the
new tags are available so that they can be more easily found via
search.</p>\n<div id=\"epoch-width-
sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"x
ml_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, 25 Apr 2016 18:51:42
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_e
xplicit\";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_bas
e_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:25:\"Matt: 538 on Basic
Income\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:22:\"https://ma.tt/?p=46513\";s: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:42:\"https://ma.tt/2016/04/538-on-
basic-
income/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5
:{s:4:\"data\";s:746:\"<blockquote><p>The economic uncertainty surrounding
basic income is huge, and the politics of bringing such a program about on
a large scale are daunting. But something makes this radical proposal so
exciting that people and governments are increasingly willing to try it.
Basic income challenges our notions of the social safety net, the
relationship between work and income, and how to adapt to technological
change. That makes it one of the most audacious social policy experiments
in modern history. It could fail disastrously, or it could change
everything for the better.</p></blockquote>\n<p>From FiveThirtyEight, <a
href=\"http://fivethirtyeight.com/features/universal-basic-income/\">What
Would Happen If We Just Gave
People Money?</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:1
7:\"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, 25 Apr 2016 15:12:59
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n
0;a:5:{s:4:\"data\";s:46:\"WP Mobile Apps: WordPress for iOS: Version
6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";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=3375\";s:7:\"attribs\";a:0:{}s:8:\"x
ml_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.co
m/2016/04/25/wordpress-for-ios-version-6-
1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4
:\"data\";s:3668:\"<p>Hi there, WordPress users! <a
href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&
ct=\">Version 6.1 of the WordPress for iOS app</a> is now available in the
App Store.</p>\n<h1>What&#8217;s New:</h1>\n<p><strong>Get social on the
go!</strong> WordPress.com and Jetpack-enabled bloggers can manage
Publicize and third-party sharing from within the app.</p>\n<p><strong>More
gestures!</strong> Swipe notifications to approve, unapprove, and trash
comments at the speed of your thumbs.</p>\n\n<a
href=\"https://apps.wordpress.com/img_2189/\"><img width=\"169\"
height=\"300\"
src=\"https://apps.files.wordpress.com/2016/04/img_2189.png?w=169&h=300\"
class=\"attachment-medium size-medium\" alt=\"Swipe left to unveil the new
moderation options.\" /></a>\n\n<p><strong>Mobile friendly.</strong> Select
your primary blog right from within the app.</p>\n\n<a
href=\"https://apps.wordpress.com/img_2187-new/\"><img width=\"169\"
height=\"300\" src=\"https://apps.files.wordpress.com/2016/04/img_2187-
new.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"You can
select your primary site in \" /></a>\n<a
href=\"https://apps.wordpress.com/img_2188/\"><img width=\"169\"
height=\"300\"
src=\"https://apps.files.wordpress.com/2016/04/img_2188.png?w=169&h=300\"
class=\"attachment-medium size-medium\" alt=\"Pick it with a simple tap!\"
/></a>\n\n<p><strong>Wheres Waldo? </strong>Search locations to tag GPS on
posts.</p>\n\n<a href=\"https://apps.wordpress.com/img_2190-new/\"><img
width=\"169\" height=\"300\"
src=\"https://apps.files.wordpress.com/2016/04/img_2190-
new.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"GPS tag
your posts!\" /></a>\n<a href=\"https://apps.wordpress.com/img_2191/\"><img
width=\"169\" height=\"300\"
src=\"https://apps.files.wordpress.com/2016/04/img_2191.png?w=169&h=300\"
class=\"attachment-medium size-medium\" alt=\"Tap on \" /></a>\n<a
href=\"https://apps.wordpress.com/img_2192/\"><img width=\"169\"
height=\"300\"
src=\"https://apps.files.wordpress.com/2016/04/img_2192.png?w=169&h=300\"
class=\"attachment-medium size-medium\" alt=\"Use the search field to
select the right location.\" /></a>\n\n<p><strong>Enhancements.</strong>
Because &#8220;good&#8221; is not enough! Here&#8217;s the full <a
href=\"https://github.com/wordpress-mobile/WordPress-
iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.1+label%3A%22%5BType%5D+E
nhancement%22\">list of enhancements</a>.</p>\n<p><strong>Bug
fixes.</strong> Tons of <a href=\"https://github.com/wordpress-
mobile/WordPress-
iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.1+label%3A%22%5BType%5D+B
ug%22\">bug fixes</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/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/sendhil\">@sendhil</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.2+\" target=\"_blank\">our 6.2 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&pos
t=3375&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\"
/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:31:\"Mon, 25 Apr 2016 13:30:37
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:\"diegoreymend
ez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n
title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Post Status: WordPress
Development Tools Draft
Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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=24094\";s: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:65:\"https://poststatus.com/
wordpress-development-tools-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:5344:\"<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 &#8212; the
CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>Everybody
creates workflows to accomplish their development work. And sometimes you
come upon a new tool that completely changes how you do things, and helps
you improve your productivity.</span></p>\n<p><span>In this episode, Joe
and Brian aim to share their tools in the hopes that it will help others
review and refine their own processes. And Joe and Brian approach things
quite differently themselves, so they compare and contrast their own
workflows. Have something to add to the conversation, be sure to
comment!</span></p>\n<a
href=\"https://audio.simplecast.com/36197.mp3\">https://audio.simplecast.co
m/36197.mp3</a>\n<p><a
href=\"http://audio.simplecast.com/36197.mp3\">Direct
Download</a></p>\n<h3>Tools</h3>\n<ul>\n<li><a
href=\"https://github.com/modmore/Gitify\">Gitify</a>, <a
href=\"http://www.cockos.com/licecap/\">lice-cap</a></li>\n<li><a
href=\"http://www.capturedapp.com/\">Captured (straight to S3)</a>, <a
href=\"http://gifhub.org/\">Gifhub</a>, <a
href=\"https://www.telestream.net/screenflow/\">Screenflow</a>, <a
href=\"https://cloudup.com/\">Cloudup</a></li>\n<li><a
href=\"https://www.authy.com/\">Authy</a></li>\n<li><a
href=\"https://justgetflux.com/\">F.lux</a></li>\n<li><a
href=\"https://www.tunnelbear.com/\">TunnelBear</a></li>\n<li><a
href=\"https://www.alfredapp.com/\">Alfred</a></li>\n<li><a
href=\"https://slack.com/\">Slack</a></li>\n</ul>\n<h3>Coding Tools &amp;
Debugging</h3>\n<ul>\n<li><a
href=\"https://www.jetbrains.com/phpstorm/\">PHPStorm</a>, <a
href=\"https://www.sublimetext.com/\">Sublime</a>, <a
href=\"https://atom.io/\">Atom</a>, <a
href=\"http://www.vim.org/\">VIM</a>, <a
href=\"https://panic.com/coda/\">Coda</a></li>\n<li><a
href=\"https://xdebug.org/\">Xdebug</a>, <a
href=\"http://php.net/manual/en/function.var-dump.php\">var_dump</a>, <a
href=\"https://pecl.php.net/package/xhprof\">XHProf</a></li>\n<li><a
href=\"https://github.com/jkbrzt/httpie\">httpie</a></li>\n<li><a
href=\"https://atom.io/packages\">Atom Packages</a>: <a
href=\"https://atom.io/packages/autocomplete-php\">php-autocomplete</a>,
WPCS, <a href=\"https://atom.io/packages/linter-php\">php-
linter</a></li>\n<li><a
href=\"https://facebook.github.io/react/blog/2015/09/02/new-react-
developer-tools.html\">React-console</a></li>\n<li><a
href=\"https://wordpress.org/plugins/query-monitor/\">Query
Monitor</a></li>\n<li><a href=\"http://www.sequelpro.com/\">Sequel Pro</a>,
<a href=\"http://dev.mysql.com/doc/refman/5.7/en/mysql.html\">mysql command
line</a></li>\n<li><a
href=\"https://www.iterm2.com/\">iTerm2</a></li>\n<li><a href=\"http://wp-
cli.org/\">wp-cli!!!</a></li>\n</ul>\n<h3>Build Tools</h3>\n<ul>\n<li><a
href=\"http://gruntjs.com/\">Grunt</a></li>\n<li><a
href=\"http://gulpjs.com/\">Gulp</a></li>\n<li><a
href=\"https://www.gnu.org/software/make/\">Make</a></li>\n<li><a
href=\"https://imageoptim.com/mac\">ImageOptim</a></li>\n<li><a
href=\"https://www.npmjs.com/package/grunt-sass\">Grunt-sass</a> vs. <a
href=\"https://www.npmjs.com/package/grunt-contrib-sass\">grunt-contrib-
sass</a></li>\n</ul>\n<h3>Version Control / Review Tools /
Deployment</h3>\n<ul>\n<li><a href=\"http://jonas.nitro.dk/tig/\">Tig</a>,
<a href=\"https://www.git-tower.com/\">Tower</a></li>\n<li><a
href=\"https://hub.github.com/\">Hub</a></li>\n<li><a
href=\"https://github.com/\">Github</a></li>\n<li><a
href=\"http://www.araxis.com/merge/index.en\">Araxis Merge</a></li>\n<li><a
href=\"http://deploybot.com/\">DeployBot</a> / <a
href=\"http://beanstalkapp.com/\">Beanstalk</a></li>\n<li><a
href=\"https://panic.com/transmit/\">Transmit
(S3/SFTP)</a></li>\n</ul>\n<h3>Frontend Tools /
Extensions</h3>\n<ul>\n<li><a
href=\"https://developer.chrome.com/devtools\">Chrome Inspector /
Console</a></li>\n<li><a
href=\"https://www.getpostman.com/\">Postman</a></li>\n<li><a
href=\"https://developer.chrome.com/devtools/docs/javascript-
debugging\">Chrome JS Debugger</a></li>\n<li><a
href=\"https://chrome.google.com/webstore/detail/ip-address-and-domain-
inf/lhgkegeccnckoiliokondpaaalbhafoa?hl=en\">IP &amp; Domain Info
extension</a></li>\n<li><a
href=\"https://chrome.google.com/webstore/detail/web-
developer/bfbameneiokkgbdmiekhjnmfkcnldhhm?hl=en\">Web
Developer</a></li>\n<li><a
href=\"https://wappalyzer.com/\">Wappalyzer</a></li>\n<li><a
href=\"http://codepen.io/\">CodePen</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p
class=\"p1\"><span class=\"s1\">This podcast is sponsored by <a
href=\"https://yoast.com/\">Yoast</a>. Yoast SEO is the best WordPress SEO
plugin available, with a premium version to provide expert support and
additional features. Thank you to Yoast for being a Post Status
partner.</span></p>\n<h3>Related Podcasts</h3>\n<p><a
href=\"https://poststatus.com/understanding-wp-cli-and-a-discussion-on-
micro-plugin-businesses-draft-podcast/\">Understanding WP-
CLI</a></p>\n<p><a href=\"https://poststatus.com/local-wordpress-
development-strategies-and-transparency-in-business-draft-podcast/\">Local
WordPress Development
Strategies</a></p>\n<p>&nbsp;</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:\"p
ubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Apr 2016 14:06:22
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128
;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri
, 13 May 2016 03:05:09 GMT\";s:12:\"content-
type\";s:8:\"text/xml\";s:14:\"content-
length\";s:6:\"208633\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15
:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 13 May 2016
03:00:14 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:\"20160421094446\";}','no'),(833
,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1463151910
','no'),(834,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','146310
8710','no'),(835,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109'
,'1463151912','no'),(836,'_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:\"dat
a\";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
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_e
xplicit\";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:\"W
ordPress Plugins View:
Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";s:31:\"Fri, 13 May 2016 02:55:52
+0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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:\"xm
l_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
e_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_explici
t\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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/elem
ents/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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\
n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:15:\"NextGEN
Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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 14 million
downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/ele
ments/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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n
"\";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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/element
s/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondo
n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explici
t\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n
"\";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:\"xm
l_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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n
"\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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_expli
cit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n
"\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/ele
ments/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:6;a:6:{s:4:\"data\";s:30:\
"\n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:21:\"Really Simple
CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_e
xplicit\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\
n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_explic
it\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_expl
icit\";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:8;a:6:{s:4:\"data\";s:30:\
"\n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:14:\"W3 Total
Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n
"\";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:\"Wordfenc
e
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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/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:10;a:6:{s:4:\"data\";s:30:\"\n
"\";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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"dat
a\";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_expli
cit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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:11;a:6:{s:4:\"data\";s:30:\"\n \n
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_expli
cit\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n
"\";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_expli
cit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_exp
licit\";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:13;a:6:{s:4:\"data\";s:30:
\"\n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";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/#p
ost-
29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_b
ase_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/e
lements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThe
mes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expli
cit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n
"\";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:\"Regenera
te
Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/element
s/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:15;a:6:{s:4:\"data\";
s:30:\"\n \n \n \n
g\";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_expli
cit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/ele
ments/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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n
"\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/element
s/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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\
n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim
Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n
"\";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:\"Duplicat
e
Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"dat
a\";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_expl
icit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:1
7:\"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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/element
s/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:19;a:6:{s:4:\"data\";s:30:\"\n \n
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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_exp
licit\";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:20;a:6:{s:4:\"data\";s:30:\
"\n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:26:\"Page Builder by
SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_bas
e_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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\
n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/elem
ents/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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n
"\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\
n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:27:\"Black Studio TinyMCE
Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_bas
e_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/ele
ments/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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\
n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";s:33:\"Google Analytics Dashboard for
WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/element
s/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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n
"\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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:26;a:6:{s:4:\"data\";s:30:\"\n \n
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:34:\"UpdraftPlus
Backup and
Restoration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/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:27;a:6:{s:4:\"data\";s:30:\
"\n \n \n \n
0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:138:\"Modern two-factor that people love to
use: strong authentication without passwords or tokens; single sign on/off;
magical user
experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_ba
se_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/el
ements/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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n
"\";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:\"Duplicat
or\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explic
it\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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/eleme
nts/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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n
"\";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_ex
plicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"d
ata\";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_exp
licit\";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_exp
licit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"da
ta\";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:145:\"Easy to use WordPress slider plugin.
Create SEO optimised 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_e
xplicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elemen
ts/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_expl
icit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/A
tom\";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/v
iew/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:\"s
erver\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 13 May 2016 03:05:12
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:\"Thu, 02 Aug 2007 12:45:03
GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT
lax
249\";}s:5:\"build\";s:14:\"20160421094446\";}','no'),(837,'_transient_time
out_feed_mod_b9388c83948825c1edaef0d856b7b109','1463151912','no'),(838,'_tr
ansient_feed_mod_b9388c83948825c1edaef0d856b7b109','1463108712','no'),(839,
'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1463151912','no
'),(840,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div
class=\"rss-widget\"><ul><li><a class=\'rsswidget\'
href=\'https://wordpress.org/news/2016/05/wordpress-4-5-2/\'>WordPress
4.5.2 Security Release</a> <span class=\"rss-date\">May 6, 2016</span><div
class=\"rssSummary\">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 [&hellip;]</div></li></ul></div><div
class=\"rss-widget\"><ul><li><a class=\'rsswidget\'
href=\'http://wptavern.com/gitlab-courts-disgruntled-github-customers-with-
response-to-recent-pricing-hike\'>WPTavern: GitLab Courts Disgruntled
GitHub Customers with Response to Recent Pricing Hike</a></li><li><a
class=\'rsswidget\' href=\'http://wptavern.com/how-authors-with-plugins-in-
the-official-directory-can-use-tags-to-get-a-moderators-
attention\'>WPTavern: How Authors With Plugins in the Official Directory
Can Use Tags to Get a Moderators Attention</a></li><li><a
class=\'rsswidget\' href=\'http://wptavern.com/wpweekly-episode-234-all-
things-wordcamp-with-andrea-middleton\'>WPTavern: WPWeekly Episode 234
All Things WordCamp with Andrea Middleton</a></li></ul></div><div
class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular
Plugin:</span> Clef Two-Factor Authentication&nbsp;<a href=\"plugin-
install.php?tab=plugin-
information&amp;plugin=wpclef&amp;_wpnonce=802f46fef7&amp;TB_iframe=true&am
p;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\"
aria-label=\"Install Clef Two-Factor
Authentication\">(Install)</a></li></ul></div>','no'),(843,'_site_transient
_timeout_theme_roots','1463135073','yes'),(844,'_site_transient_theme_roots
','a:3:{s:13:\"betheme-
child\";s:7:\"/themes\";s:7:\"betheme\";s:7:\"/themes\";s:13:\"twentysixtee
n\";s:7:\"/themes\";}','yes'),(845,'_site_transient_update_plugins','O:8:\"
stdClass\":4:{s:12:\"last_checked\";i:1463133277;s:8:\"response\";a:3:{s:19
:\"akismet/akismet.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:2:\"15\";s:4:\"sl
ug\";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/ak
ismet.3.1.11.zip\";s:6:\"tested\";s:5:\"4.5.2\";s:13:\"compatibility\";O:8:
\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}s:
36:\"contact-form-7/wp-contact-form-
7.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"cont
act-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-
7.php\";s:11:\"new_version\";s:5:\"4.4.2\";s:3:\"url\";s:45:\"https://wordp
ress.org/plugins/contact-form-
7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-
form-
7.4.4.2.zip\";s:6:\"tested\";s:5:\"4.5.2\";s:13:\"compatibility\";O:8:\"std
Class\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}s:25:\"
zopim-live-
chat/zopim.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:5:\"12426\";s:4:\"slug\";
s:15:\"zopim-live-chat\";s:6:\"plugin\";s:25:\"zopim-live-
chat/zopim.php\";s:11:\"new_version\";s:5:\"1.4.3\";s:3:\"url\";s:46:\"http
s://wordpress.org/plugins/zopim-live-
chat/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/zopim
-live-
chat.1.4.3.zip\";s:6:\"tested\";s:5:\"4.4.3\";s:13:\"compatibility\";O:8:\"
stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:1
2:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:33:\"duplicate-
post/duplicate-
post.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1295\";s:4:\"slug\";s:14:\"
duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-
post.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:45:\"https://word
press.org/plugins/duplicate-
post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/dupli
cate-post.2.6.zip\";s:14:\"upgrade_notice\";s:90:\"PHP 5.4 (Strict
Standards) compatible + Fixed possible XSS and SQL injections + other
bugs\";}s:59:\"force-regenerate-thumbnails/force-regenerate-
thumbnails.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"33928\";s:4:\"slug\";
s:27:\"force-regenerate-thumbnails\";s:6:\"plugin\";s:59:\"force-
regenerate-thumbnails/force-regenerate-
thumbnails.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:3:\"url\";s:58:\"http
s://wordpress.org/plugins/force-regenerate-
thumbnails/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin
/force-regenerate-thumbnails.zip\";}s:43:\"google-analytics-dashboard-for-
wp/gadwp.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"39196\";s:4:\"slug\";s:
33:\"google-analytics-dashboard-for-wp\";s:6:\"plugin\";s:43:\"google-
analytics-dashboard-for-
wp/gadwp.php\";s:11:\"new_version\";s:7:\"4.9.3.1\";s:3:\"url\";s:64:\"http
s://wordpress.org/plugins/google-analytics-dashboard-for-
wp/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/google-
analytics-dashboard-for-
wp.4.9.3.1.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"35
64\";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/hell
o-dolly.1.6.zip\";}s:51:\"hide-core-update-notice/hide-core-update-
notice.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"57323\";s:4:\"slug\";s:23
:\"hide-core-update-notice\";s:6:\"plugin\";s:51:\"hide-core-update-
notice/hide-core-update-
notice.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:54:\"https://wo
rdpress.org/plugins/hide-core-update-
notice/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/hid
e-core-update-
notice.zip\";}s:23:\"playerzbr/playerzbr.php\";O:8:\"stdClass\":6:{s:2:\"id
\";s:5:\"38732\";s:4:\"slug\";s:9:\"playerzbr\";s:6:\"plugin\";s:23:\"playe
rzbr/playerzbr.php\";s:11:\"new_version\";s:5:\"1.5.2\";s:3:\"url\";s:40:\"
https://wordpress.org/plugins/playerzbr/\";s:7:\"package\";s:52:\"https://d
ownloads.wordpress.org/plugin/playerzbr.zip\";}s:45:\"hide-plugin-updates-
notifications/wphdpuw.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"61569\";s:
4:\"slug\";s:33:\"hide-plugin-updates-
notifications\";s:6:\"plugin\";s:45:\"hide-plugin-updates-
notifications/wphdpuw.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:
64:\"https://wordpress.org/plugins/hide-plugin-updates-
notifications/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plu
gin/hide-plugin-updates-notifications.zip\";}}}','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=918 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'),(4,5,'_form','<p>Your Name
(required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br
/>\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-
subject] </p>\n\n<p>Your Message<br />\n [textarea your-message]
</p>\n\n<p>[submit
\"Send\"]</p>'),(5,5,'_mail','a:8:{s:7:\"subject\";s:30:\"STIKOM PROSIA
\"[your-subject]\"\";s:6:\"sender\";s:38:\"[your-name]
<wordpress@139.59.234.208>\";s:4:\"body\";s:172:\"From: [your-name] <[your-
email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--
\nThis e-mail was sent from a contact form on STIKOM PROSIA
(http://139.59.234.208)\";s:9:\"recipient\";s:13:\"aris@rubyh.co\";s:18:\"a
dditional_headers\";s:22:\"Reply-To: [your-
email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_
blank\";i:0;}'),(6,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:3
0:\"STIKOM PROSIA \"[your-subject]\"\";s:6:\"sender\";s:40:\"STIKOM PROSIA
<wordpress@139.59.234.208>\";s:4:\"body\";s:114:\"Message Body:\n[your-
message]\n\n--\nThis e-mail was sent from a contact form on STIKOM PROSIA
(http://139.59.234.208)\";s:9:\"recipient\";s:12:\"[your-
email]\";s:18:\"additional_headers\";s:23:\"Reply-To:
aris@rubyh.co\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"e
xclude_blank\";i:0;}'),(7,5,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"
Thank you for your message. It has been
sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your
message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or
more fields have an error. Please check and try
again.\";s:4:\"spam\";s:71:\"There was an error trying to send your
message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must
accept the terms and conditions before sending your
message.\";s:16:\"invalid_required\";s:22:\"The field is
required.\";s:16:\"invalid_too_long\";s:22:\"The field is too
long.\";s:17:\"invalid_too_short\";s:23:\"The field is too
short.\";}'),(8,5,'_additional_settings',NULL),(9,5,'_locale','en_US'),(12,
9,'_wp_attached_file','2015/03/home_university_slider_apply.png'),(13,9,'_w
p_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:75;s:4:\"
file\";s:40:\"2015/03/home_university_slider_apply.png\";s:5:\"sizes\";a:7:
{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"home_university_slider_apply-
150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-
type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"home_univ
ersity_slider_apply-
300x47.png\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:39:\"home_university_slider_apply-
260x41.png\";s:5:\"width\";i:260;s:6:\"height\";i:41;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:37:\"home_unive
rsity_slider_apply-
50x8.png\";s:5:\"width\";i:50;s:6:\"height\";i:8;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:39:\"home_university_slider_apply-
150x23.png\";s:5:\"width\";i:150;s:6:\"height\";i:23;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:38:\"ho
me_university_slider_apply-
85x75.png\";s:5:\"width\";i:85;s:6:\"height\";i:75;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:38:\"home_university_slider_apply-
80x75.png\";s:5:\"width\";i:80;s:6:\"height\";i:75;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(14,10,'_wp_attached_file','2015/03/home_university_slide.jpg'),
(15,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";
i:853;s:4:\"file\";s:33:\"2015/03/home_university_slide.jpg\";s:5:\"sizes\"
;a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"home_un
iversity_slide-
300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"
home_university_slide-
768x341.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:341;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_slide-
1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
260x116.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:116;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:31:\"home_uni
versity_slide-
50x22.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:22;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:32:\"home_university_slide-
150x67.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:67;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1630x853.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:31:\"
home_university_slide-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:31:\"home_university_slide-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
768x853.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(16,11,'_wp_attached_file','2015/03/retina-
university.png'),(17,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:426
;s:6:\"height\";i:113;s:4:\"file\";s:29:\"2015/03/retina-
university.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:2
9:\"retina-university-
150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-
type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"retina-
university-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:28:\"retina-university-
260x69.png\";s:5:\"width\";i:260;s:6:\"height\";i:69;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:27:\"retina-
university-50x13.png\";s:5:\"width\";i:50;s:6:\"height\";i:13;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:28:\"retina-university-
150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:27:\"re
tina-university-
85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:27:\"retina-university-
80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(18,12,'_wp_attached_file','2015/03/university.png'),(19,12,'_wp
_attachment_metadata','a:5:{s:5:\"width\";i:213;s:6:\"height\";i:57;s:4:\"f
ile\";s:22:\"2015/03/university.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";
a:4:{s:4:\"file\";s:21:\"university-
150x57.png\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:20:\"university
-50x13.png\";s:5:\"width\";i:50;s:6:\"height\";i:13;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"university-
150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:20:\"un
iversity-85x57.png\";s:5:\"width\";i:85;s:6:\"height\";i:57;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:20:\"university-
80x57.png\";s:5:\"width\";i:80;s:6:\"height\";i:57;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(20,13,'_wp_attached_file','2015/03/home_university_tabber_1.jpg
'),(21,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:544;s:6:\"height\
";i:385;s:4:\"file\";s:36:\"2015/03/home_university_tabber_1.jpg\";s:5:\"si
zes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tabbe
r_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:36:\"home_un
iversity_tabber_1-
300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tabber_1-
206x146.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_tabber_1-
50x35.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:35;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:35:\"home_university_tabber_1-
106x75.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:34:\"
home_university_tabber_1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:34:\"home_university_tabber_1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(22,14,'_wp_attached_file','2015/03/home_university_tabber_2.j
pg'),(23,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:544;s:6:\"heigh
t\";i:385;s:4:\"file\";s:36:\"2015/03/home_university_tabber_2.jpg\";s:5:\"
sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tab
ber_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"home_un
iversity_tabber_2-
300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tabber_2-
206x146.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_tabber_2-
50x35.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:35;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:35:\"home_university_tabber_2-
106x75.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:34:\"
home_university_tabber_2-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:34:\"home_university_tabber_2-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(24,15,'_wp_attached_file','2015/03/home_university_tabber_3.j
pg'),(25,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:544;s:6:\"heigh
t\";i:385;s:4:\"file\";s:36:\"2015/03/home_university_tabber_3.jpg\";s:5:\"
sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tab
ber_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"home_un
iversity_tabber_3-
300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tabber_3-
206x146.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_tabber_3-
50x35.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:35;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:35:\"home_university_tabber_3-
106x75.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:34:\"
home_university_tabber_3-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:34:\"home_university_tabber_3-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(26,16,'_wp_attached_file','2015/03/home_university_tabber_4.j
pg'),(27,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:544;s:6:\"heigh
t\";i:385;s:4:\"file\";s:36:\"2015/03/home_university_tabber_4.jpg\";s:5:\"
sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tab
ber_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"home_un
iversity_tabber_4-
300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tabber_4-
206x146.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_tabber_4-
50x35.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:35;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:35:\"home_university_tabber_4-
106x75.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:34:\"
home_university_tabber_4-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:34:\"home_university_tabber_4-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(28,17,'_wp_attached_file','2015/03/home_university_tabber_5.j
pg'),(29,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:544;s:6:\"heigh
t\";i:385;s:4:\"file\";s:36:\"2015/03/home_university_tabber_5.jpg\";s:5:\"
sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tab
ber_5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"home_un
iversity_tabber_5-
300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_tabber_5-
206x146.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_tabber_5-
50x35.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:35;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:35:\"home_university_tabber_5-
106x75.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:34:\"
home_university_tabber_5-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:34:\"home_university_tabber_5-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(30,18,'_wp_attached_file','2015/03/home_university_students.p
ng'),(31,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:824;s:6:\"heigh
t\";i:350;s:4:\"file\";s:36:\"2015/03/home_university_students.png\";s:5:\"
sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_stu
dents-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:36:\"home_univ
ersity_students-
300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"ho
me_university_students-
768x326.png\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:36:\"home_university_students-
260x110.png\";s:5:\"width\";i:260;s:6:\"height\";i:110;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:34:\"home_unive
rsity_students-
50x21.png\";s:5:\"width\";i:50;s:6:\"height\";i:21;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:35:\"home_university_students-
150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:34:\"ho
me_university_students-
85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:34:\"home_university_students-
80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:36:\"home_university_students-
768x350.png\";s:5:\"width\";i:768;s:6:\"height\";i:350;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(32,2295,'_wp_attached_file','2014/05/home_university_blog_1.jpg
'),(33,2295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"heig
ht\";i:800;s:4:\"file\";s:34:\"2014/05/home_university_blog_1.jpg\";s:5:\"s
izes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_blo
g_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:34:\"home_un
iversity_blog_1-
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:34:\"
home_university_blog_1-
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:35:\"home_uni
versity_blog_1-
1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_blog_1-
219x146.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:32:\"home_uni
versity_blog_1-
50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:33:\"home_university_blog_1-
113x75.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:32:\"
home_university_blog_1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:32:\"home_university_blog_1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:35:\"home_university_blog_1-
1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:34:\"home_university_blog_1-
768x800.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:800;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:35:\"home_university_blog_1-
1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:34:\"home_university_blog_1-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:35:\"home_university_blog_1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(34,2296,'_wp_attached_file','2014/05/home_university_blog_2.j
pg'),(35,2296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"he
ight\";i:800;s:4:\"file\";s:34:\"2014/05/home_university_blog_2.jpg\";s:5:\
"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_b
log_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"home_un
iversity_blog_2-
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:34:\"
home_university_blog_2-
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:35:\"home_uni
versity_blog_2-
1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_blog_2-
219x146.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:32:\"home_uni
versity_blog_2-
50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:33:\"home_university_blog_2-
113x75.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:32:\"
home_university_blog_2-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:32:\"home_university_blog_2-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:35:\"home_university_blog_2-
1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:34:\"home_university_blog_2-
768x800.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:800;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:35:\"home_university_blog_2-
1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:34:\"home_university_blog_2-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:35:\"home_university_blog_2-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(36,2297,'_wp_attached_file','2014/05/home_university_blog_3.j
pg'),(37,2297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"he
ight\";i:800;s:4:\"file\";s:34:\"2014/05/home_university_blog_3.jpg\";s:5:\
"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_b
log_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"home_un
iversity_blog_3-
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:34:\"
home_university_blog_3-
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:35:\"home_uni
versity_blog_3-
1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_blog_3-
219x146.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:32:\"home_uni
versity_blog_3-
50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:33:\"home_university_blog_3-
113x75.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:32:\"
home_university_blog_3-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:32:\"home_university_blog_3-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:35:\"home_university_blog_3-
1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:34:\"home_university_blog_3-
768x800.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:800;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:35:\"home_university_blog_3-
1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:34:\"home_university_blog_3-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:35:\"home_university_blog_3-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(38,2298,'_wp_attached_file','2014/05/home_university_blog_4.j
pg'),(39,2298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"he
ight\";i:800;s:4:\"file\";s:34:\"2014/05/home_university_blog_4.jpg\";s:5:\
"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_b
log_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"home_un
iversity_blog_4-
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:34:\"
home_university_blog_4-
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:35:\"home_uni
versity_blog_4-
1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:34:\"home_university_blog_4-
219x146.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:32:\"home_uni
versity_blog_4-
50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:33:\"home_university_blog_4-
113x75.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:32:\"
home_university_blog_4-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:32:\"home_university_blog_4-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:35:\"home_university_blog_4-
1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:34:\"home_university_blog_4-
768x800.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:800;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:35:\"home_university_blog_4-
1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:34:\"home_university_blog_4-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:35:\"home_university_blog_4-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(40,2320,'_wp_attached_file','2015/03/our_team_1.jpg'),(41,232
0,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:300;
s:4:\"file\";s:22:\"2015/03/our_team_1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumb
nail\";a:4:{s:4:\"file\";s:22:\"our_team_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:22:\"our_tea
m_1-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:22:\"our_team_1-
185x146.jpg\";s:5:\"width\";i:185;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:20:\"our_team
_1-50x39.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:39;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:20:\"our_team_1-
95x75.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:20:\"
our_team_1-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:20:\"our_team_1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(42,2321,'_wp_attached_file','2015/03/home_university_pin.png'
),(43,2321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:52;s:6:\"height\
";i:57;s:4:\"file\";s:31:\"2015/03/home_university_pin.png\";s:5:\"sizes\";
a:1:{s:5:\"50x50\";a:4:{s:4:\"file\";s:29:\"home_university_pin-
46x50.png\";s:5:\"width\";i:46;s:6:\"height\";i:50;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(44,2322,'_wp_attached_file','2015/03/home_business_signature.pn
g'),(45,2322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:129;s:6:\"heig
ht\";i:47;s:4:\"file\";s:35:\"2015/03/home_business_signature.png\";s:5:\"s
izes\";a:3:{s:5:\"50x50\";a:4:{s:4:\"file\";s:33:\"home_business_signature-
50x18.png\";s:5:\"width\";i:50;s:6:\"height\";i:18;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:33:\"ho
me_business_signature-
85x47.png\";s:5:\"width\";i:85;s:6:\"height\";i:47;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:33:\"home_business_signature-
80x47.png\";s:5:\"width\";i:80;s:6:\"height\";i:47;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(46,2323,'_wp_attached_file','2015/03/home_university_about_phot
o.jpg'),(47,2323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"
height\";i:649;s:4:\"file\";s:39:\"2015/03/home_university_about_photo.jpg\
";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"home_univer
sity_about_photo-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"home_un
iversity_about_photo-
176x300.jpg\";s:5:\"width\";i:176;s:6:\"height\";i:300;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:38:\"home_university_about_photo-
85x146.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:37:\"home_uni
versity_about_photo-
29x50.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:37:\"home_university_about_photo-
44x75.jpg\";s:5:\"width\";i:44;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:37:\"
home_university_about_photo-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:37:\"home_university_about_photo-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:39:\"home_university_about_photo-
380x500.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:39:\"home_university_about_photo-
380x480.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(48,2324,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}
'),(49,2324,'_wp_page_template','default'),(50,2324,'mfn-post-hide-
content','0'),(51,2324,'mfn-post-custom-layout','0'),(52,2324,'mfn-post-
slider','university'),(53,2324,'mfn-post-slider-layer','0'),(54,2324,'mfn-
post-menu','0'),(55,2324,'mfn-post-one-page','0'),(56,2324,'mfn-post-hide-
title','0'),(57,2324,'mfn-post-remove-padding','1'),(58,2324,'mfn-page-
items','a:3:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:7:\"#2e69ee\";s:8:\"bg_image\";s:94:\"http://themes.muffingroup.com
/betheme/wp-
content/uploads/2014/07/home_university_section_1.png\";s:11:\"bg_position\
";s:25:\"no-repeat;center
bottom;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:
11:\"padding_top\";s:2:\"80\";s:14:\"padding_bottom\";s:2:\"40\";s:7:\"divi
der\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:4:\"dark\";s:5:
\"class\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\
";s:4:\"hide\";s:0:\"\";}s:5:\"wraps\";a:2:{i:0;a:3:{s:4:\"size\";s:3:\"1/1
\";s:5:\"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"si
ze\";s:3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:67:\"\"To Be a
Professional in Communication is a Passionate
Profession.\"\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s
:0:\"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\"
;s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:14:\"call_to_a
ction\";s:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:9:{s:5:\"title\";s:104:\"
Untuk sementara waktu : mengakses SIAK (Sistem Informasi Akademik) bisa
kunjungi
siak.stikomprosia.ac.id\";s:4:\"icon\";s:0:\"\";s:7:\"content\";s:0:\"\";s:
12:\"button_title\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\"
;s:5:\"class\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}
}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:7:\"#2e69ee\";s:8:\"bg_image\";s:0:\
"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}i:1;a:3:{s:4:\"size\";s:
7:\"divider\";s:5:\"items\";s:0:\"\";s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0
:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#f9f9f9\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\"
;s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\"
;s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"h
ide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\"
items\";a:5:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:3:
\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:37:\"Berita dan Peristiwa di
STIKOM
PROSIA\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\"
;s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"
\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:4:\"blog\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:12:{s:5:\"count\";s:1:\"4\";s:5:\"style\";s
:7:\"masonry\";s:7:\"columns\";s:1:\"4\";s:8:\"category\";s:4:\"news\";s:14
:\"category_multi\";s:13:\"news,
stories\";s:10:\"exclude_id\";s:0:\"\";s:4:\"more\";s:1:\"1\";s:7:\"filters
\";s:1:\"0\";s:10:\"pagination\";s:1:\"0\";s:9:\"load_more\";s:1:\"0\";s:9:
\"greyscale\";s:1:\"0\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:
7:\"divider\";s:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:5:{s:6:\"height\";s
:2:\"50\";s:5:\"style\";s:7:\"default\";s:4:\"line\";s:0:\"\";s:10:\"themec
olor\";s:1:\"0\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"type\";s:6:\"col
umn\";s:4:\"size\";s:3:\"1/2\";s:6:\"fields\";a:11:{s:5:\"title\";s:21:\"Te
ntang STIKOM PROSIA\";s:7:\"content\";s:1119:\"<b>Tentang STIKOM PROSIA</b>
<p style=\"margin-bottom: 40px;\"> </p>STIKOM PROSIA sebagai salah satu
Perguruan Tinggi yang menghasilkan Sarjana Komunikasi yang berkualitas,
sangat menyadari hal ini dan terus berusaha melakukan berbagai langkah yang
proaktif guna menghasilkan Sarjana Komunikasi sesuai misi kami yaitu
Sarjana Komunikasi yang Cerdas menghadapi persoalan , Kreatif menciptakan
jalan keluar dari berbagai persoalan dan Arif menyikapi berbagai persoalan.
</p>Di STIKOM PROSIA, kami membuka tiga konsentrasi jurusan yaitu
Advertising, Broadcasting dan Public Relations. Para mahasiswa mendapat
berbagai bekal ilmu dan ketrampilan yang disiapkan untuk bersaing di dunia
kerja professional maupun sebagai wirausaha kreatif. Aktivitas mahasiswa
dinaungi oleh Badan Eksekutif Mahasiswa (BEM) yang memiliki Unit-unit
kegiatan Mahasiswa (UKM) yang terarah dan sesuai dengan bidang konsentrasi
masing-masing mahasiswa. STIKOM PROSIA senantiasa berusaha agar sumber daya
manusia lulusan kampus ini mampu bersaing, kreatif , mandiri dan memiliki
integritas yang baik.</p>\n[button title=\"Daftar\" link=\"#\"
color=\"grey\"]\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:20:\"no-repeat;left
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:4;a:3:{s
:4:\"type\";s:5:\"video\";s:4:\"size\";s:3:\"1/2\";s:6:\"fields\";a:9:{s:5:
\"video\";s:11:\"U6NfY3e31EI\";s:10:\"parameters\";s:0:\"\";s:3:\"mp4\";s:0
:\"\";s:3:\"ogv\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:16:\"html5_param
eters\";s:0:\"\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"350\";s:7:\
"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg
_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:2;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:8:\"Students\";s:8:\"bg_color\";s:7:\"#f9f9f9\";s:8:\
"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\"
;s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\"
;s:0:\"\";s:10:\"section_id\";s:8:\"students\";s:10:\"visibility\";s:0:\"\"
;s:4:\"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\
";s:5:\"items\";a:1:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\
"1/1\";s:6:\"fields\";a:16:{s:3:\"src\";s:66:\"http://139.59.234.208/wp-
content/uploads/2015/03/banner-
stikom.jpg\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"align\";s
:6:\"center\";s:6:\"border\";s:1:\"0\";s:6:\"margin\";s:2:\"50\";s:13:\"mar
gin_bottom\";s:0:\"\";s:10:\"link_image\";s:0:\"\";s:4:\"link\";s:0:\"\";s:
6:\"target\";s:1:\"0\";s:5:\"hover\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:7:\"ca
ption\";s:0:\"\";s:9:\"greyscale\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\
"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg
_image\";s:0:\"\";s:11:\"bg_position\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:
13:\"column_margin\";s:0:\"\";s:14:\"vertical_align\";s:0:\"\";s:5:\"class\
";s:0:\"\";}}}}}'),(59,2324,'mfn-page-items-seo','\"To Be a Professional in
Communication is a Passionate Profession.\"\n\nicon\n\nUntuk sementara
waktu : mengakses SIAK (Sistem Informasi Akademik) bisa kunjungi
siak.stikomprosia.ac.id\n\nBerita dan Peristiwa di STIKOM
PROSIA\n\nicon\n\n4\n\nmasonry\n\n4\n\nnews\n\nnews,
stories\n\n50\n\ndefault\n\nTentang STIKOM PROSIA\n\n<b>Tentang STIKOM
PROSIA</b> <p style=\"margin-bottom: 40px;\"> </p>STIKOM PROSIA sebagai
salah satu Perguruan Tinggi yang menghasilkan Sarjana Komunikasi yang
berkualitas, sangat menyadari hal ini dan terus berusaha melakukan berbagai
langkah yang proaktif guna menghasilkan Sarjana Komunikasi sesuai misi kami
yaitu Sarjana Komunikasi yang Cerdas menghadapi persoalan , Kreatif
menciptakan jalan keluar dari berbagai persoalan dan Arif menyikapi
berbagai persoalan. </p>Di STIKOM PROSIA, kami membuka tiga konsentrasi
jurusan yaitu Advertising, Broadcasting dan Public Relations. Para
mahasiswa mendapat berbagai bekal ilmu dan ketrampilan yang disiapkan untuk
bersaing di dunia kerja professional maupun sebagai wirausaha kreatif.
Aktivitas mahasiswa dinaungi oleh Badan Eksekutif Mahasiswa (BEM) yang
memiliki Unit-unit kegiatan Mahasiswa (UKM) yang terarah dan sesuai dengan
bidang konsentrasi masing-masing mahasiswa. STIKOM PROSIA senantiasa
berusaha agar sumber daya manusia lulusan kampus ini mampu bersaing,
kreatif , mandiri dan memiliki integritas yang baik.</p>\r\n[button
title=\"Daftar\" link=\"#\" color=\"grey\"]\n\nno-repeat;left
top;;\n\nU6NfY3e31EI\n\n700\n\n350\n\nhttp://139.59.234.208/wp-
content/uploads/2015/03/banner-
stikom.jpg\n\ncenter\n\n50\n\n'),(60,2324,'slide_template','default'),(63,2
283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(64,2283,'slide
_template','default'),(65,2283,'mfn-post-hide-content','0'),(66,2283,'mfn-
post-sidebar','0'),(67,2283,'mfn-post-slider','0'),(68,2283,'mfn-post-
love','5'),(69,2283,'mfn-post-layout','right-sidebar'),(70,2283,'mfn-post-
slider-layer','0'),(71,2283,'mfn-post-hide-title','0'),(72,2283,'mfn-post-
hide-
image','0'),(73,2283,'_thumbnail_id','2295'),(76,2285,'_vc_post_settings','
a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(77,2285,'slide_template','default'),(78
,2285,'mfn-post-hide-content','0'),(79,2285,'mfn-post-
sidebar','0'),(80,2285,'mfn-post-slider','0'),(81,2285,'mfn-post-
love','6'),(82,2285,'mfn-post-
love','6'),(83,2285,'_thumbnail_id','2296'),(84,2285,'mfn-post-
layout','right-sidebar'),(85,2285,'mfn-post-slider-
layer','0'),(86,2285,'mfn-post-hide-title','0'),(87,2285,'mfn-post-hide-
image','0'),(92,2287,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'
),(93,2287,'slide_template','default'),(94,2287,'mfn-post-hide-
content','0'),(95,2287,'mfn-post-sidebar','0'),(96,2287,'mfn-post-
slider','0'),(97,2287,'mfn-post-love','2'),(98,2287,'mfn-post-
love','2'),(99,2287,'mfn-post-layout','right-sidebar'),(100,2287,'mfn-post-
slider-layer','0'),(101,2287,'mfn-post-hide-
title','0'),(102,2287,'_thumbnail_id','2297'),(103,2287,'mfn-post-hide-
image','0'),(106,2289,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}
'),(107,2289,'slide_template','default'),(108,2289,'mfn-post-hide-
content','0'),(109,2289,'mfn-post-sidebar','0'),(110,2289,'mfn-post-
slider','0'),(111,2289,'mfn-post-love','0'),(112,2289,'mfn-post-
layout','right-sidebar'),(113,2289,'mfn-post-slider-
layer','0'),(114,2289,'mfn-post-hide-
title','0'),(115,2289,'_thumbnail_id','2298'),(116,2289,'mfn-post-hide-
image','0'),(117,2307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}
'),(118,2307,'_wp_page_template','default'),(119,2307,'slide_template','def
ault'),(120,2307,'mfn-post-hide-content','0'),(121,2307,'mfn-post-custom-
layout','0'),(122,2307,'mfn-post-slider','0'),(123,2307,'mfn-post-slider-
layer','0'),(124,2307,'mfn-post-menu','0'),(125,2307,'mfn-post-one-
page','0'),(126,2307,'mfn-post-hide-title','0'),(127,2307,'mfn-post-remove-
padding','1'),(128,2307,'mfn-post-sidebar','0'),(129,2307,'mfn-post-
sidebar2','0'),(130,2307,'mfn-page-
items','a:5:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\"1/3\";
s:6:\"fields\";a:16:{s:3:\"src\";s:64:\"http://139.59.234.208/wp-
content/uploads/2016/04/gedung-
baru.jpg\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"align\";s:6
:\"center\";s:6:\"border\";s:1:\"0\";s:6:\"margin\";s:0:\"\";s:13:\"margin_
bottom\";s:0:\"\";s:10:\"link_image\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:\"
target\";s:1:\"0\";s:5:\"hover\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:7:\"captio
n\";s:0:\"\";s:9:\"greyscale\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"cla
sses\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"2
/3\";s:6:\"fields\";a:11:{s:5:\"title\";s:4:\"Desc\";s:7:\"content\";s:2200
:\"[one]\n<h2>Latar Belakang</h2>\n<p class=\"big\">STIKOM PROSIA adalah
Sekolah Tinggi Ilmu Komunikasi Profesi Indonesia yang memberikan kesempatan
bagi lulusan SMA/SMU/SMK sederajat untuk mengikuti pendidikan jalur
akademik di bidang Komunikasi khususnya Public Relation, Broadcasting dan
Periklanan.</p>\n<p>STIKOM PROSIA diselenggarakan oleh Yayasan Profesi
Indonesia sebagai pemilik dan pemegang ijin penyelenggaraan pendidikan
tinggi berdasarkan Keputusan menteri Pendidikan Nasional Republik Indonesia
Nomor : 136/D/0/2002 tanggal 8 Juli 2002. STIKOM PROSIA telah Terakreditasi
BAN-PT No.103/SK/BAN-PT/ Akred/SK/III/2015 dengan predikat B.</p>\n<p>Dalam
era globalisasi saat ini komunikasi merupakan bidang yang memegang peranan
penting dalam seluruh aspek kehidupan bernegara, bermasyarakat termasuk
bisnis didalamnya. Bahkan komunikasi merupakan kunci utama yang menentukan
dalam setiap kali terjadi interaksi. Dalam bidang pemerintahan maupun
swasta pun, kunci keberhasilan dalam melaksanakan program kerja adalah pada
kemampuan komunikasi yang benar dan akurat. Kesalahan dalam komunikasi
berakibat fatal pada hasil yang telah diprogram sebelumnya.</p>\n<p>Oleh
karena itu, STIKOM PROSIA sebagai salah satu Perguruan Tinggi yang
menghasilkan Sarjana Komunikasi yang berkualitas, sangat menyadari hal ini
dan terus berusaha melakukan berbagai langkah yang proaktif guna
menghasilkan Sarjana Komunikasi sesuai misi kami yaitu Sarjana Komunikasi
yang Cerdas menghadapi persoalan , Kreatif menciptakan jalan keluar dari
berbagai persoalan dan Arif menyikapi berbagai
persoalan.</p>\n[/one]\n[one]\n<h2>Yayasan dan Pimpinan STIKOM
PROSIA</h2>\n<p>Yayasan Profesi Indonesia sebagai penyelenggara STIKOM
PROSIA berdiri berdasarkan Akta Pendirian No. 02 tanggal 21 September 2001
Notaris Armidas Moenir, SH di Jakarta selanjutnya telah dilakukan Akte
Perubahan terakhir No. 01 tanggal 23 Maret 2006 Notaris Fauzah Askar,
SH.\n</p>\n<p>Tenaga Pengajar (Dosen) STIKOM PROSIA berasal dari latar
belakang yang beragam, mulai dari akademisi, praktisi, lintas ilmu, dan
lintas praktisi. Diharapkan dengan keragaman tersebut akan memberikan nilai
tambah bagi para lulusan STIKOM PROSIA nantinya di
masyarakat.</p>\n[/one]\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\"
;s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"20\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:2:{i:0;a:3:{s:4:\"size\";s:3:\"1/2\";s:5:
\"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:
3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:4:\"VISI\";s:2:\"h1\";s:1:\"0
\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s:7:\"content\";s:0:\"\";s
:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\"
;}}i:1;a:3:{s:4:\"type\";s:10:\"blockquote\";s:4:\"size\";s:3:\"1/1\";s:6:\
"fields\";a:5:{s:7:\"content\";s:162:\"Menjadi lembaga pendidikan,
penelitian dan pengembangan ilmu komunikasi yang unggul serta menghasilkan
lulusan yang berkualitas, profesional dan berakhlak mulia.
\";s:6:\"author\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s
:7:\"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:
\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}i:1;a:3:{s:4:\"size\";s:
3:\"1/2\";s:5:\"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s
:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:4:\"MISI\";s:2:
\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s:7:\"conten
t\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\";s:7:\"clas
ses\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/
1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:414:\"<ol
>\n<li>Menyelenggarakan pendidikan yang terjangkau, berkualitas, berbasis
teknologi komunikasi dan informasi, erta membentuk manusia yang berbudi
pekerti.</li>\n<li>Menyelenggarakan penelitian dan pengembangan ilmu
komunikasi yang berkualitas dalam rangka menghadapi era
globalisasi.</li>\n<li>Melaksanakan pengabdian masyarakat yang berorientasi
kepada pemberdayaan masyarakat dibidang ilmu
komunikasi.</li>\n</ol>\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\"
;s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:2;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:10:\"quick_fact\";s:4:\"size\";s:3:\
"1/4\";s:6:\"fields\";a:8:{s:7:\"heading\";s:0:\"\";s:6:\"number\";s:3:\"51
0\";s:6:\"prefix\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"title\";s:15:\"mah
asiswa aktif\";s:7:\"content\";s:83:\"Donec vestibulum justo a diam
ultricies pel lentesque. Quisque mattis diam vel
lac.\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"t
ype\";s:10:\"quick_fact\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:8:{s:7:
\"heading\";s:0:\"\";s:6:\"number\";s:4:\"2600\";s:6:\"prefix\";s:0:\"\";s:
5:\"label\";s:0:\"\";s:5:\"title\";s:6:\"alumni\";s:7:\"content\";s:83:\"Do
nec vestibulum justo a diam ultricies pel lentesque. Quisque mattis diam
vel
lac.\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"t
ype\";s:10:\"quick_fact\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:8:{s:7:
\"heading\";s:0:\"\";s:6:\"number\";s:2:\"89\";s:6:\"prefix\";s:0:\"\";s:5:
\"label\";s:0:\"\";s:5:\"title\";s:15:\"paten &
inovasi\";s:7:\"content\";s:83:\"Donec vestibulum justo a diam ultricies
pel lentesque. Quisque mattis diam vel
lac.\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"t
ype\";s:10:\"quick_fact\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:8:{s:7:
\"heading\";s:0:\"\";s:6:\"number\";s:2:\"15\";s:6:\"prefix\";s:0:\"\";s:5:
\"label\";s:0:\"\";s:5:\"title\";s:13:\"tahun
berdiri\";s:7:\"content\";s:83:\"Donec vestibulum justo a diam ultricies
pel lentesque. Quisque mattis diam vel
lac.\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\";a:
7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\"
;s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:3;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:3
:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:34:\"Panduan Pendaftaran
Mahasiswa
Baru\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s
:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\"
;s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";
s:1051:\"<div style=\"margin: 0 15%;\">\n<h4>Nulla imperdiet sit amet
magna. Vestibulum dapibus, mauris nec malesuada fames ac turpis velit,
rhoncus eu, luctus et interdum adipiscing wisi. Aliquam erat ac ipsum.
Integer aliquam purus. Quisque lorem tortor fringilla sed.</h4>\n<p>Quisque
lorem tortor fringilla sed, vestibulum id, eleifend justo vel bibendum
sapien massa ac turpis faucibus orci luctus non, consectetuer lobortis
quis, varius in, purus. Integer ultrices posuere cubilia Curae, Nulla ipsum
dolor lacus, suscipit adipiscing. Cum sociis natoque penatibus et ultrices
volutpat. Nullam wisi ultricies a, gravida vitae, dapibus risus ante
sodales lectus blandit eu, tempor diam pede cursus vitae, ultricies eu,
faucibus quis, porttitor eros cursus lectus, pellentesque eget, bibendum a,
gravida ullamcorper quam. Nullam viverra consectetuer.</p>\n<br/>\n[button
title=\"Daftar Sekarang\" icon=\"\" icon_position=\"\"
link=\"http://stikomprosia.ecampuz.com\" target=\"_blank\"
color=\"#931919\" font_color=\"#fff\" size=\"2\" full_width=\"\" class=\"\"
download=\"\"
onclick=\"\"]\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8
:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:4;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\
";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:39:\"<h2
style=\"margin: 0;\">Kontak
Kami</h2>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\
"icon\";s:14:\"icon-mail-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:152:
\"<big style=\"padding-top: 12px; display: block\">Ada
pertanyaan?</big>\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\";s:1:\"2\
";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\"
;s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"icon\";s:1
7:\"icon-comment-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:105:
\"<big style=\"padding-top: 12px; display: block\">Hubungi
Kami</big>\n<h4><a href=\"#\">(021) 857
6647</a></h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\
";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:
4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"
icon\";s:13:\"icon-doc-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:96:\
"<big style=\"padding-top: 12px; display: block\">Fax</big>\n<h4><a
href=\"#\">(021) 857
6661</a></h4>\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:1:\"0\";s:5:\"style
\";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(131,2307,'mfn-
page-items-seo','http://139.59.234.208/wp-content/uploads/2016/04/gedung-
baru.jpg\n\ncenter\n\nDesc\n\n[one]\r\n<h2>Latar Belakang</h2>\r\n<p
class=\"big\">STIKOM PROSIA adalah Sekolah Tinggi Ilmu Komunikasi Profesi
Indonesia yang memberikan kesempatan bagi lulusan SMA/SMU/SMK sederajat
untuk mengikuti pendidikan jalur akademik di bidang Komunikasi khususnya
Public Relation, Broadcasting dan Periklanan.</p>\r\n<p>STIKOM PROSIA
diselenggarakan oleh Yayasan Profesi Indonesia sebagai pemilik dan pemegang
ijin penyelenggaraan pendidikan tinggi berdasarkan Keputusan menteri
Pendidikan Nasional Republik Indonesia Nomor : 136/D/0/2002 tanggal 8 Juli
2002. STIKOM PROSIA telah Terakreditasi BAN-PT No.103/SK/BAN-PT/
Akred/SK/III/2015 dengan predikat B.</p>\r\n<p>Dalam era globalisasi saat
ini komunikasi merupakan bidang yang memegang peranan penting dalam seluruh
aspek kehidupan bernegara, bermasyarakat termasuk bisnis didalamnya. Bahkan
komunikasi merupakan kunci utama yang menentukan dalam setiap kali terjadi
interaksi. Dalam bidang pemerintahan maupun swasta pun, kunci keberhasilan
dalam melaksanakan program kerja adalah pada kemampuan komunikasi yang
benar dan akurat. Kesalahan dalam komunikasi berakibat fatal pada hasil
yang telah diprogram sebelumnya.</p>\r\n<p>Oleh karena itu, STIKOM PROSIA
sebagai salah satu Perguruan Tinggi yang menghasilkan Sarjana Komunikasi
yang berkualitas, sangat menyadari hal ini dan terus berusaha melakukan
berbagai langkah yang proaktif guna menghasilkan Sarjana Komunikasi sesuai
misi kami yaitu Sarjana Komunikasi yang Cerdas menghadapi persoalan ,
Kreatif menciptakan jalan keluar dari berbagai persoalan dan Arif menyikapi
berbagai persoalan.</p>\r\n[/one]\r\n[one]\r\n<h2>Yayasan dan Pimpinan
STIKOM PROSIA</h2>\r\n<p>Yayasan Profesi Indonesia sebagai penyelenggara
STIKOM PROSIA berdiri berdasarkan Akta Pendirian No. 02 tanggal 21
September 2001 Notaris Armidas Moenir, SH di Jakarta selanjutnya telah
dilakukan Akte Perubahan terakhir No. 01 tanggal 23 Maret 2006 Notaris
Fauzah Askar, SH.\r\n</p>\r\n<p>Tenaga Pengajar (Dosen) STIKOM PROSIA
berasal dari latar belakang yang beragam, mulai dari akademisi, praktisi,
lintas ilmu, dan lintas praktisi. Diharapkan dengan keragaman tersebut akan
memberikan nilai tambah bagi para lulusan STIKOM PROSIA nantinya di
masyarakat.</p>\r\n[/one]\n\nno-repeat;center
top;;\n\nVISI\n\nicon\n\nMenjadi lembaga pendidikan, penelitian dan
pengembangan ilmu komunikasi yang unggul serta menghasilkan lulusan yang
berkualitas, profesional dan berakhlak
mulia.\n\nMISI\n\nicon\n\n<ol>\r\n<li>Menyelenggarakan pendidikan yang
terjangkau, berkualitas, berbasis teknologi komunikasi dan informasi, erta
membentuk manusia yang berbudi pekerti.</li>\r\n<li>Menyelenggarakan
penelitian dan pengembangan ilmu komunikasi yang berkualitas dalam rangka
menghadapi era globalisasi.</li>\r\n<li>Melaksanakan pengabdian masyarakat
yang berorientasi kepada pemberdayaan masyarakat dibidang ilmu
komunikasi.</li>\r\n</ol>\n\nno-repeat;center top;;\n\n510\n\nmahasiswa
aktif\n\nDonec vestibulum justo a diam ultricies pel lentesque. Quisque
mattis diam vel lac.\n\n2600\n\nalumni\n\nDonec vestibulum justo a diam
ultricies pel lentesque. Quisque mattis diam vel lac.\n\n89\n\npaten &
inovasi\n\nDonec vestibulum justo a diam ultricies pel lentesque. Quisque
mattis diam vel lac.\n\n15\n\ntahun berdiri\n\nDonec vestibulum justo a
diam ultricies pel lentesque. Quisque mattis diam vel lac.\n\nPanduan
Pendaftaran Mahasiswa Baru\n\nicon\n\n<div style=\"margin: 0
15%;\">\r\n<h4>Nulla imperdiet sit amet magna. Vestibulum dapibus, mauris
nec malesuada fames ac turpis velit, rhoncus eu, luctus et interdum
adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam purus. Quisque
lorem tortor fringilla sed.</h4>\r\n<p>Quisque lorem tortor fringilla sed,
vestibulum id, eleifend justo vel bibendum sapien massa ac turpis faucibus
orci luctus non, consectetuer lobortis quis, varius in, purus. Integer
ultrices posuere cubilia Curae, Nulla ipsum dolor lacus, suscipit
adipiscing. Cum sociis natoque penatibus et ultrices volutpat. Nullam wisi
ultricies a, gravida vitae, dapibus risus ante sodales lectus blandit eu,
tempor diam pede cursus vitae, ultricies eu, faucibus quis, porttitor eros
cursus lectus, pellentesque eget, bibendum a, gravida ullamcorper quam.
Nullam viverra consectetuer.</p>\r\n<br/>\r\n[button title=\"Daftar
Sekarang\" icon=\"\" icon_position=\"\"
link=\"http://stikomprosia.ecampuz.com\" target=\"_blank\"
color=\"#931919\" font_color=\"#fff\" size=\"2\" full_width=\"\" class=\"\"
download=\"\" onclick=\"\"]\n\ncenter\n\nno-repeat;center top;;\n\n<h2
style=\"margin: 0;\">Kontak Kami</h2>\n\ncenter\n\nno-repeat;center
top;;\n\nicon-mail-line\n\n<big style=\"padding-top: 12px; display:
block\">Ada pertanyaan?</big>\r\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\n\n2\n\nicon-comment-line\n\n<big style=\"padding-top: 12px; display:
block\">Hubungi Kami</big>\r\n<h4><a href=\"#\">(021) 857
6647</a></h4>\n\n2\n\nicon-doc-line\n\n<big style=\"padding-top: 12px;
display: block\">Fax</big>\r\n<h4><a href=\"#\">(021) 857
6661</a></h4>\n\n<a
href=\"#\">#</a>\n\n2\n\n'),(132,2309,'_vc_post_settings','a:1:{s:10:\"vc_g
rid_id\";a:0:{}}'),(133,2309,'_wp_page_template','default'),(134,2309,'slid
e_template','default'),(135,2309,'mfn-post-hide-
content','0'),(136,2309,'mfn-post-custom-layout','0'),(137,2309,'mfn-post-
slider','0'),(138,2309,'mfn-post-slider-layer','0'),(139,2309,'mfn-post-
menu','0'),(140,2309,'mfn-post-one-page','0'),(141,2309,'mfn-post-hide-
title','0'),(142,2309,'mfn-post-remove-padding','1'),(143,2309,'mfn-post-
layout','right-sidebar'),(144,2309,'mfn-post-sidebar','0'),(145,2309,'mfn-
post-
sidebar2','0'),(146,2311,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:
{}}'),(147,2311,'_wp_page_template','default'),(148,2311,'slide_template','
default'),(149,2311,'mfn-post-hide-content','0'),(150,2311,'mfn-post-
custom-layout','0'),(151,2311,'mfn-post-slider','0'),(152,2311,'mfn-post-
slider-layer','0'),(153,2311,'mfn-post-menu','0'),(154,2311,'mfn-post-one-
page','0'),(155,2311,'mfn-post-hide-title','0'),(156,2311,'mfn-post-remove-
padding','1'),(157,2311,'mfn-page-
items','a:1:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"30\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/2\
";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:468:\"<div
style=\"margin: 0 2%;\">\n<h3>Advertising</h3>\n[image
src=\"http://139.59.234.208/wp-content/uploads/2016/04/ruang-
komputer.jpg\"]\n[divider height=\"20\"]\n<p class=\"big\">Program Studi S-
1 Komunikasi dengan konsentrasi Advetising dirancang untuk mengarahkan dan
mengasah pemikiran kreatif mahasiswanya di bidang periklanan.</p>\n[divider
height=\"0\"]\n[button title=\"Lihat\" icon=\"icon-list\"
icon_position=\"left\" link=\"http://139.59.234.208/advertising\"
color=\"theme\"]\n</div>\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\
";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/2\";s:6:\"fields\";a:11:{s:
5:\"title\";s:0:\"\";s:7:\"content\";s:497:\"<div style=\"margin: 0
2%;\">\n<h3>Public Relations</h3>\n[image src=\"http://139.59.234.208/wp-
content/uploads/2016/04/stikom.jpg\"]\n[divider height=\"20\"]\n<p
class=\"big\">Program S-1 Ilmu Komunikasi dengan konsentrasi Public
Relations dirancang untuk mempertahankan, menciptakan, dan memelihara
pengertian bersama antara organisasi dan masyarakatnya.</p>\n[divider
height=\"0\"]\n[button title=\"Lihat\" icon=\"icon-list\"
icon_position=\"left\" link=\"http://139.59.234.208/public-relations\"
color=\"theme\"]\n</div>\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\
";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:2;a:3:{s
:4:\"type\";s:7:\"divider\";s:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:5:{s:
6:\"height\";s:0:\"\";s:5:\"style\";s:7:\"default\";s:4:\"line\";s:0:\"\";s
:10:\"themecolor\";s:1:\"0\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"type
\";s:6:\"column\";s:4:\"size\";s:3:\"1/2\";s:6:\"fields\";a:11:{s:5:\"title
\";s:0:\"\";s:7:\"content\";s:514:\"<div style=\"margin: 0 2%;\">\n<h3>
Broadcasting </h3>\n[image src=\"http://139.59.234.208/wp-
content/uploads/2016/04/broadcasting-stikom.jpg\"]\n[divider
height=\"20\"]\n<p class=\"big\">Program S-1 Ilmu Komunikasi dengan
konsentrasi Broadcasting mengarahkan peserta didiknya melalui proses
belajar mengajar meliputi tatap muka dikelas, praktek lapangan dan Lab.
Broadcasting.</p>\n[divider height=\"0\"]\n[button title=\"Lihat\"
icon=\"icon-list\" icon_position=\"left\"
link=\"http://139.59.234.208/broadcasting\"
color=\"theme\"]\n</div>\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\
";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(158,2311,'mfn-
page-items-seo','<div style=\"margin: 0
2%;\">\r\n<h3>Advertising</h3>\r\n[image src=\"http://139.59.234.208/wp-
content/uploads/2016/04/ruang-komputer.jpg\"]\r\n[divider
height=\"20\"]\r\n<p class=\"big\">Program Studi S-1 Komunikasi dengan
konsentrasi Advetising dirancang untuk mengarahkan dan mengasah pemikiran
kreatif mahasiswanya di bidang periklanan.</p>\r\n[divider
height=\"0\"]\r\n[button title=\"Lihat\" icon=\"icon-list\"
icon_position=\"left\" link=\"http://139.59.234.208/advertising\"
color=\"theme\"]\r\n</div>\n\nno-repeat;center top;;\n\n<div
style=\"margin: 0 2%;\">\r\n<h3>Public Relations</h3>\r\n[image
src=\"http://139.59.234.208/wp-
content/uploads/2016/04/stikom.jpg\"]\r\n[divider height=\"20\"]\r\n<p
class=\"big\">Program S-1 Ilmu Komunikasi dengan konsentrasi Public
Relations dirancang untuk mempertahankan, menciptakan, dan memelihara
pengertian bersama antara organisasi dan masyarakatnya.</p>\r\n[divider
height=\"0\"]\r\n[button title=\"Lihat\" icon=\"icon-list\"
icon_position=\"left\" link=\"http://139.59.234.208/public-relations\"
color=\"theme\"]\r\n</div>\n\nno-repeat;center top;;\n\ndefault\n\n<div
style=\"margin: 0 2%;\">\r\n<h3> Broadcasting </h3>\r\n[image
src=\"http://139.59.234.208/wp-content/uploads/2016/04/broadcasting-
stikom.jpg\"]\r\n[divider height=\"20\"]\r\n<p class=\"big\">Program S-1
Ilmu Komunikasi dengan konsentrasi Broadcasting mengarahkan peserta
didiknya melalui proses belajar mengajar meliputi tatap muka dikelas,
praktek lapangan dan Lab. Broadcasting.</p>\r\n[divider
height=\"0\"]\r\n[button title=\"Lihat\" icon=\"icon-list\"
icon_position=\"left\" link=\"http://139.59.234.208/broadcasting\"
color=\"theme\"]\r\n</div>\n\nno-repeat;center top;;\n\n'),(159,2311,'mfn-
post-sidebar','0'),(160,2311,'mfn-post-
sidebar2','0'),(161,2313,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:
{}}'),(162,2313,'_wp_page_template','default'),(163,2313,'slide_template','
default'),(164,2313,'mfn-post-hide-content','0'),(165,2313,'mfn-post-
custom-layout','0'),(166,2313,'mfn-post-slider','0'),(167,2313,'mfn-post-
slider-layer','0'),(168,2313,'mfn-post-menu','0'),(169,2313,'mfn-post-one-
page','0'),(170,2313,'mfn-post-hide-title','0'),(171,2313,'mfn-post-remove-
padding','1'),(172,2313,'mfn-page-
items','a:2:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"50\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:1:{i:0;a:3:{s:4:\"type\";s:3:\"map\";s:4:\"size\";s:3:\"1/1\";s:
6:\"fields\";a:17:{s:3:\"lat\";s:9:\"-
6.167959\";s:3:\"lng\";s:11:\"106.8728129\";s:4:\"zoom\";s:2:\"13\";s:6:\"h
eight\";s:3:\"500\";s:4:\"type\";s:7:\"ROADMAP\";s:8:\"controls\";s:0:\"\";
s:9:\"draggable\";s:0:\"\";s:6:\"border\";s:1:\"0\";s:4:\"icon\";s:64:\"htt
p://139.59.234.208/wp-content/uploads/2016/04/logo-
stikom.jpg\";s:6:\"styles\";s:1615:\"[{\"featureType\":\"road\",\"elementTy
pe\":\"geometry\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":
\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"off\"}]
},{\"featureType\":\"landscape\",\"elementType\":\"geometry\",\"stylers\":[
{\"color\":\"#FFFAF0\"}]},{\"featureType\":\"water\",\"stylers\":[{\"color\
":\"#d9edf7\"}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"sty
lers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit\",\"stylers\"
:[{\"visibility\":\"off\"}]},{\"featureType\":\"administrative\",\"elementT
ype\":\"geometry\",\"stylers\":[{\"lightness\":40}]},{\"featureType\":\"poi
.park\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"on\",\"
color\":\"#c5dac6\"}]},{\"featureType\":\"landscape.natural.terrain\",\"ele
mentType\":\"geometry.fill\",\"stylers\":[{\"visibility\":\"on\"},{\"color\
":\"#CCAA88\"},{\"lightness\":40}]},{\"featureType\":\"landscape.man_made\"
,\"elementType\":\"geometry.fill\",\"stylers\":[{\"visibility\":\"on\"},{\"
color\":\"#EEEEEE\"}]},{\"featureType\":\"road\",\"stylers\":[{\"visibility
\":\"simplified\"},{\"color\":\"#FF0000\"},{\"gamma\":9}]},{\"featureType\"
:\"road.highway\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#FF0000
\"},{\"gamma\":8}]},{\"featureType\":\"road.highway.controlled_access\",\"s
tylers\":[{\"visibility\":\"on\"},{\"color\":\"#FF0000\"},{\"gamma\":4}]},{
\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibil
ity\":\"off\"}]},{\"featureType\":\"poi.government\",\"elementType\":\"geom
etry\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#DDDDDD\"}]},{\"fe
atureType\":\"transit.station\",\"elementType\":\"geometry\",\"stylers\":[{
\"visibility\":\"on\"},{\"color\":\"#CCCCCC\"}]},{\"featureType\":\"transit
.line\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"on\"},{
\"color\":\"#AAAAAA\"},{\"gamma\":4}]}]\";s:6:\"latlng\";s:0:\"\";s:5:\"tit
le\";s:0:\"\";s:7:\"content\";s:0:\"\";s:9:\"telephone\";s:0:\"\";s:5:\"ema
il\";s:0:\"\";s:3:\"www\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\"
;a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_positio
n\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\"
;s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:87:\"<h3
class=\"themecolor\">We work from Monday till Friday from 8:00 a.m. to 7:00
p.m.</h3>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:
5:\"title\";s:12:\"Contact form\";s:7:\"content\";s:47:\"[contact-form-7
id=\"2319\" title=\"Contact
page\"]\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"bg_image\
";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(173,2313,'mfn-
page-items-seo','-
6.167959\n\n106.8728129\n\n13\n\n500\n\nROADMAP\n\nhttp://139.59.234.208/wp
-content/uploads/2016/04/logo-
stikom.jpg\n\n[{\"featureType\":\"road\",\"elementType\":\"geometry\",\"sty
lers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\"
:\"geometry\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"la
ndscape\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#FFFAF0\"}
]},{\"featureType\":\"water\",\"stylers\":[{\"color\":\"#d9edf7\"}]},{\"fea
tureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\"
:\"off\"}]},{\"featureType\":\"transit\",\"stylers\":[{\"visibility\":\"off
\"}]},{\"featureType\":\"administrative\",\"elementType\":\"geometry\",\"st
ylers\":[{\"lightness\":40}]},{\"featureType\":\"poi.park\",\"elementType\"
:\"geometry\",\"stylers\":[{\"visibility\":\"on\",\"color\":\"#c5dac6\"}]},
{\"featureType\":\"landscape.natural.terrain\",\"elementType\":\"geometry.f
ill\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#CCAA88\"},{\"light
ness\":40}]},{\"featureType\":\"landscape.man_made\",\"elementType\":\"geom
etry.fill\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#EEEEEE\"}]},
{\"featureType\":\"road\",\"stylers\":[{\"visibility\":\"simplified\"},{\"c
olor\":\"#FF0000\"},{\"gamma\":9}]},{\"featureType\":\"road.highway\",\"sty
lers\":[{\"visibility\":\"on\"},{\"color\":\"#FF0000\"},{\"gamma\":8}]},{\"
featureType\":\"road.highway.controlled_access\",\"stylers\":[{\"visibility
\":\"on\"},{\"color\":\"#FF0000\"},{\"gamma\":4}]},{\"featureType\":\"road\
",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"fea
tureType\":\"poi.government\",\"elementType\":\"geometry\",\"stylers\":[{\"
visibility\":\"on\"},{\"color\":\"#DDDDDD\"}]},{\"featureType\":\"transit.s
tation\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"on\"},
{\"color\":\"#CCCCCC\"}]},{\"featureType\":\"transit.line\",\"elementType\"
:\"geometry\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#AAAAAA\"},
{\"gamma\":4}]}]\n\n<h3 class=\"themecolor\">We work from Monday till
Friday from 8:00 a.m. to 7:00 p.m.</h3>\n\ncenter\n\nno-repeat;center
top;;\n\nContact form\n\n[contact-form-7 id=\"2319\" title=\"Contact
page\"]\n\nno-repeat;center top;;\n\n'),(174,2313,'mfn-post-
sidebar','0'),(175,2313,'mfn-post-
sidebar2','0'),(176,2325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:
{}}'),(177,2325,'_menu_item_type','post_type'),(178,2325,'_menu_item_menu_i
tem_parent','0'),(179,2325,'_menu_item_object_id','2311'),(180,2325,'_menu_
item_object','page'),(181,2325,'_menu_item_target',''),(182,2325,'_menu_ite
m_classes','a:1:{i:0;s:0:\"\";}'),(183,2325,'_menu_item_xfn',''),(184,2325,
'_menu_item_url',''),(185,2325,'menu-item-mfn-
megamenu',''),(186,2325,'menu-item-mfn-
bg',''),(187,2326,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
188,2326,'_menu_item_type','post_type'),(189,2326,'_menu_item_menu_item_par
ent','0'),(190,2326,'_menu_item_object_id','2309'),(191,2326,'_menu_item_ob
ject','page'),(192,2326,'_menu_item_target',''),(193,2326,'_menu_item_class
es','a:1:{i:0;s:0:\"\";}'),(194,2326,'_menu_item_xfn',''),(195,2326,'_menu_
item_url',''),(196,2326,'menu-item-mfn-megamenu',''),(197,2326,'menu-item-
mfn-
bg',''),(198,2327,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
199,2327,'_menu_item_type','post_type'),(200,2327,'_menu_item_menu_item_par
ent','0'),(201,2327,'_menu_item_object_id','2307'),(202,2327,'_menu_item_ob
ject','page'),(203,2327,'_menu_item_target',''),(204,2327,'_menu_item_class
es','a:1:{i:0;s:0:\"\";}'),(205,2327,'_menu_item_xfn',''),(206,2327,'_menu_
item_url',''),(207,2327,'menu-item-mfn-megamenu',''),(208,2327,'menu-item-
mfn-
bg',''),(209,2319,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
210,2319,'_form','<div class=\"column one-second\">[text* your-name
placeholder \"Your name\"] </div>\n<div class=\"column one-second\">[email*
your-email placeholder \"Your e-mail\"] </div>\n<div class=\"column
one\">[text your-subject placeholder \"Subject\"] </div>\n<div
class=\"column one\">[textarea your-message placeholder
\"Message\"]</div>\n<div class=\"column one\">[submit \"SEND A
MESSAGE\"]</div>'),(211,2319,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-
subject]\";s:6:\"sender\";s:46:\"[your-name]
<wordpress@themes.muffingroup.com>\";s:4:\"body\";s:203:\"From: [your-name]
<[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-
message]\n\n--\nThis e-mail was sent from a contact form on BeUniversity -
BeTheme
(http://themes.muffingroup.com/be/university)\";s:9:\"recipient\";s:17:\"no
reply@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-
email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_
blank\";b:0;}'),(212,2319,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\
";s:14:\"[your-subject]\";s:6:\"sender\";s:57:\"BeUniversity - BeTheme
<wordpress@themes.muffingroup.com>\";s:4:\"body\";s:145:\"Message
Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on
BeUniversity - BeTheme
(http://themes.muffingroup.com/be/university)\";s:9:\"recipient\";s:12:\"[y
our-email]\";s:18:\"additional_headers\";s:27:\"Reply-To:
noreply@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13
:\"exclude_blank\";b:0;}'),(213,2319,'_messages','a:23:{s:12:\"mail_sent_ok
\";s:43:\"Your message was sent successfully.
Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please
try later or contact the administrator by another
method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred.
Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed
to send your message. Please try later or contact the administrator by
another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to
proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required
field.\";s:16:\"invalid_too_long\";s:23:\"This input is too
long.\";s:17:\"invalid_too_short\";s:24:\"This input is too
short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is
incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems
invalid.\";s:16:\"number_too_small\";s:25:\"This number is too
small.\";s:16:\"number_too_large\";s:25:\"This number is too
large.\";s:13:\"invalid_email\";s:28:\"Email address seems
invalid.\";s:11:\"invalid_url\";s:18:\"URL seems
invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems
invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not
correct.\";s:12:\"invalid_date\";s:26:\"Date format seems
invalid.\";s:14:\"date_too_early\";s:23:\"This date is too
early.\";s:13:\"date_too_late\";s:22:\"This date is too
late.\";s:13:\"upload_failed\";s:22:\"Failed to upload
file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not
allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too
large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file.
Error
occurred.\";}'),(214,2319,'_additional_settings',''),(215,2319,'_locale','e
n_US'),(216,2328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2
17,2328,'_menu_item_type','post_type'),(218,2328,'_menu_item_menu_item_pare
nt','0'),(219,2328,'_menu_item_object_id','2324'),(220,2328,'_menu_item_obj
ect','page'),(221,2328,'_menu_item_target',''),(222,2328,'_menu_item_classe
s','a:1:{i:0;s:0:\"\";}'),(223,2328,'_menu_item_xfn',''),(224,2328,'_menu_i
tem_url',''),(225,2328,'menu-item-mfn-megamenu',''),(226,2328,'menu-item-
mfn-
bg',''),(227,2329,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
228,2329,'_menu_item_type','post_type'),(229,2329,'_menu_item_menu_item_par
ent','0'),(230,2329,'_menu_item_object_id','2313'),(231,2329,'_menu_item_ob
ject','page'),(232,2329,'_menu_item_target',''),(233,2329,'_menu_item_class
es','a:1:{i:0;s:0:\"\";}'),(234,2329,'_menu_item_xfn',''),(235,2329,'_menu_
item_url',''),(236,2329,'menu-item-mfn-megamenu',''),(237,2329,'menu-item-
mfn-bg',''),(238,1,'mfn-post-
love','0'),(239,2330,'_wp_attached_file','revslider/university/home_univers
ity_slide.jpg'),(240,2330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1
920;s:6:\"height\";i:853;s:4:\"file\";s:46:\"revslider/university/home_univ
ersity_slide.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";
s:33:\"home_university_slide-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"home_un
iversity_slide-
300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"
home_university_slide-
768x341.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:341;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"home_uni
versity_slide-
1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
260x116.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:116;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:31:\"home_uni
versity_slide-
50x22.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:22;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:32:\"home_university_slide-
150x67.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:67;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1630x853.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:31:\"
home_university_slide-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:31:\"home_university_slide-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
768x853.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:33:\"home_university_slide-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:34:\"home_university_slide-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(241,2331,'_wp_attached_file','revslider/university/home_unive
rsity_slider_apply.png'),(242,2331,'_wp_attachment_metadata','a:5:{s:5:\"wi
dth\";i:479;s:6:\"height\";i:75;s:4:\"file\";s:53:\"revslider/university/ho
me_university_slider_apply.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{
s:4:\"file\";s:39:\"home_university_slider_apply-
150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-
type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"home_univ
ersity_slider_apply-
300x47.png\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:39:\"home_university_slider_apply-
260x41.png\";s:5:\"width\";i:260;s:6:\"height\";i:41;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:37:\"home_unive
rsity_slider_apply-
50x8.png\";s:5:\"width\";i:50;s:6:\"height\";i:8;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:39:\"home_university_slider_apply-
150x23.png\";s:5:\"width\";i:150;s:6:\"height\";i:23;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:38:\"ho
me_university_slider_apply-
85x75.png\";s:5:\"width\";i:85;s:6:\"height\";i:75;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:38:\"home_university_slider_apply-
80x75.png\";s:5:\"width\";i:80;s:6:\"height\";i:75;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(243,1,'_wp_trash_meta_status','publish'),(244,1,'_wp_trash_meta
_time','1461234690'),(245,1,'_wp_desired_post_slug','hello-
world'),(246,1,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(247
,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(248,2324,'_edi
t_lock','1463108772:1'),(249,2324,'_edit_last','1'),(250,2324,'mfn-post-
sidebar','0'),(251,2324,'mfn-post-
sidebar2','0'),(252,2324,'_wpb_vc_js_status','false'),(253,2335,'_wp_attach
ed_file','2016/04/logo-
stikom.jpg'),(254,2335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:58;s
:6:\"height\";i:57;s:4:\"file\";s:23:\"2016/04/logo-
stikom.jpg\";s:5:\"sizes\";a:1:{s:5:\"50x50\";a:4:{s:4:\"file\";s:21:\"logo
-stikom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(255,2336,'_wp_attached_file','2016/04/logo-
retina.jpg'),(256,2336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:115;
s:6:\"height\";i:114;s:4:\"file\";s:23:\"2016/04/logo-
retina.jpg\";s:5:\"sizes\";a:4:{s:5:\"50x50\";a:4:{s:4:\"file\";s:21:\"logo
-retina-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"logo-retina-
76x75.jpg\";s:5:\"width\";i:76;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:21:\"
logo-retina-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:21:\"logo-retina-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(257,2324,'_post_restored_from','a:3:{s:20:\"restored_revision
_id\";i:2334;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1461289
758;}'),(258,2307,'_edit_lock','1463039796:1'),(259,2307,'_edit_last','1'),
(260,2307,'_wpb_vc_js_status','false'),(262,2339,'_vc_post_settings','a:1:{
s:10:\"vc_grid_id\";a:0:{}}'),(263,2339,'_vc_post_settings','a:1:{s:10:\"vc
_grid_id\";a:0:{}}'),(264,2339,'_wp_page_template','default'),(265,2339,'sl
ide_template','default'),(266,2339,'mfn-post-hide-
content','0'),(267,2339,'mfn-post-custom-layout','0'),(268,2339,'mfn-post-
slider','0'),(269,2339,'mfn-post-slider-layer','0'),(270,2339,'mfn-post-
menu','0'),(271,2339,'mfn-post-one-page','0'),(272,2339,'mfn-post-hide-
title','0'),(273,2339,'mfn-post-remove-padding','1'),(274,2339,'mfn-post-
sidebar','0'),(275,2339,'mfn-post-sidebar2','0'),(276,2339,'mfn-page-
items','a:4:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:3:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\"1/1\";
s:6:\"fields\";a:16:{s:3:\"src\";s:63:\"http://139.59.234.208/wp-
content/uploads/2015/03/POTO-
KIPAS.jpg\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"align\";s:
6:\"center\";s:6:\"border\";s:1:\"0\";s:6:\"margin\";s:0:\"\";s:13:\"margin
_bottom\";s:0:\"\";s:10:\"link_image\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:\
"target\";s:1:\"0\";s:5:\"hover\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:7:\"capti
on\";s:0:\"\";s:9:\"greyscale\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"cl
asses\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\
";s:3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:60:\"Program Studi Ilmu
Komunikasi - Konsentrasi Public
Relations\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\
"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0
:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:6:\"column\";s:4:\
"size\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"conte
nt\";s:1222:\"<p>Program S-1 Public Relations bertujuan untuk mengarahkan
mahasiswanya agar mampu membuat program - program terencana dalam upaya-
upayanya mempertahankan, menciptakan, dan memelihara pengertian bersama
antara organisasi dan masyarakatnya. Sehingga hal ini dapat memberikan
penerangan kepada public dan melaksanakan fungsinya seperti melakukan
persuasi untuk mengubah sikap dan tingkah laku public dan upaya untuk
menyatukan sikap serta perilaku suatu lembaga sesuai dengan sikap dan
perbuatan masyarakat, atau sebaliknya. </p>Materi perkuliahan Public
Relations mendekatkan pada praktek PR pada organisasi baik itu perusahaan
swasta maupun di pemerintahan. Pada setiap pertengahan semester, mahasiswa
memperoleh seminar atau kuliah umum dengan narasumber para praktisi PR
professional. Selain itu, dalam kegiatan praktek mahasiswa juga diberi
kesempatan untuk mengelola events, presentasi di depan public dan diskusi
karir di bidang PR. Ditengah perkembangan media dan dunia siber, para
mahasiswa juga dibekali kemampuan dalam menyelesaikan masalah PR dengan
memanfaatkan teknologi berbasis internet. Lulusan PR Stikom Prosia
diharapkan mampu menjadi seorang PR Profesional yang bisa beradaptasi dalam
lingkungan
global.\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"bg_image\
";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:9:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:
3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:48:\"Mata Kuliah Utama -
Konsentrasi Public
Relations\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\
"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0
:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:8:\"info_box\";s:4
:\"size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
1\";s:7:\"content\";s:283:\"<ul>\n<li>Bahasa Inggris
Dasar</li>\n<li>Pengembangan Kepribadian</li>\n<li>Komputer
Dasar</li>\n<li>Pendidikan Pancasila</li>\n<li>Pendidikan
Kewarganegaraan</li>\n<li>Pengantar Ilmu Ekonomi</li>\n<li>Pengantar Ilmu
Komunikasi</li>\n<li>Pendidikan Agama</li>\n<li>Bahasa
Indonesia</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7
:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\"
;s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
2\";s:7:\"content\";s:249:\"<ul>\n<li>Semiotika
Komunikasi</li>\n<li>Psikologi Komunikasi</li>\n<li>Bahasa Inggris
Lanjutan</li>\n<li>Logika Komunikasi</li>\n<li>Asas-Asas
Manajemen</li>\n<li>Teori Komunikasi</li>\n<li>Komunikasi
Organisasi</li>\n<li>Dasar-Dasar
Jurnalistik</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s
:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size
\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
3\";s:7:\"content\";s:223:\"<ul>\n<li>Pengantar Public
Relations</li>\n<li>English for Public
Relations</li>\n<li>Kewirausahaan</li>\n<li>Komunikasi Antar
Pribadi</li>\n<li>Sosiologi Komunikasi</li>\n<li>Pendidikan Anti
Korupsi</li>\n<li>Fotografi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:4;a:3:{s:4:\"type\";s:8:\"info_
box\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Sem
ester 4\";s:7:\"content\";s:254:\"<ul>\n<li>Komunikasi Lintas
Budaya</li>\n<li>Komunikasi Bisnis</li>\n<li>Komunikasi Multi
Media</li>\n<li>Komunikasi Massa</li>\n<li>Komunikasi
Politik</li>\n<li>Statistik Sosial</li>\n<li>Etika dan Hukum
Komunikasi</li>\n<li>Teknik Lobi dan
Negosiasi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7
:\"classes\";s:0:\"\";}}i:5;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\"
;s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
5\";s:7:\"content\";s:252:\"<ul>\n<li>Event Management</li>\n<li>Cyber
Komunikasi</li>\n<li>Retorika dan Komunikasi Publik</li>\n<li>Komunikasi
Pemasaran Terpadu</li>\n<li>Teknik Berpikir Kreatif</li>\n<li>Metode
Penelitian Komunikasi Kuantitatif</li>\n<li>Filsafat
Komunikasi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:
7:\"classes\";s:0:\"\";}}i:6;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\
";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
6\";s:7:\"content\";s:282:\"<ul>\n<li>Analisa
Stakeholder</li>\n<li>Manajemen Public Relations</li>\n<li>Penulisan Naskah
Public Relations</li>\n<li>Perencanaan Kampanye Public
Relations</li>\n<li>Corporate Social Responsibility</li>\n<li>Perilaku
Konsumen</li>\n<li>Metode Penelitian Komunikasi
Kualitatif</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:
7:\"classes\";s:0:\"\";}}i:7;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\
";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
7\";s:7:\"content\";s:195:\"<ul>\n<li>PR dan Manajemen Kritis</li>\n<li>PR
Pemerintahan dan Perusahaan</li>\n<li>Brand Image</li>\n<li>Media
Relations</li>\n<li>Praktek Kerja Lapangan</li>\n<li>Seminar Proposal
Skripsi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7:\
"classes\";s:0:\"\";}}i:8;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\";s
:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
8\";s:7:\"content\";s:51:\"<ul>\n<li>Skripsi dan Sidang
Komprehensif</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";
s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8
:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:2;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:3
:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:34:\"Panduan Pendaftaran
Mahasiswa
Baru\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s
:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\"
;s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";
s:850:\"<div style=\"margin: 0 15%;\">\n<h4>Nulla imperdiet sit amet magna.
Vestibulum dapibus, mauris nec malesuada fames ac turpis velit, rhoncus eu,
luctus et interdum adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam
purus. Quisque lorem tortor fringilla sed.</h4>\n<p>Quisque lorem tortor
fringilla sed, vestibulum id, eleifend justo vel bibendum sapien massa ac
turpis faucibus orci luctus non, consectetuer lobortis quis, varius in,
purus. Integer ultrices posuere cubilia Curae, Nulla ipsum dolor lacus,
suscipit adipiscing. Cum sociis natoque penatibus et ultrices volutpat.
Nullam wisi ultricies a, gravida vitae, dapibus risus ante sodales lectus
blandit eu, tempor diam pede cursus vitae, ultricies eu, faucibus quis,
porttitor eros cursus lectus, pellentesque eget, bibendum a, gravida
ullamcorper quam. Nullam viverra
consectetuer.</p>\n</div>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";
s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:3;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\
";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:39:\"<h2
style=\"margin: 0;\">Kontak
Kami</h2>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\
"icon\";s:14:\"icon-mail-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:152:
\"<big style=\"padding-top: 12px; display: block\">Ada
pertanyaan?</big>\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\";s:1:\"2\
";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\"
;s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"icon\";s:1
7:\"icon-comment-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:105:
\"<big style=\"padding-top: 12px; display: block\">Hubungi
Kami</big>\n<h4><a href=\"#\">(021) 857
6647</a></h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\
";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:
4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"
icon\";s:13:\"icon-doc-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:96:\
"<big style=\"padding-top: 12px; display: block\">Fax</big>\n<h4><a
href=\"#\">(021) 857
6661</a></h4>\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:1:\"0\";s:5:\"style
\";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(277,2339,'mfn-
page-items-seo','http://139.59.234.208/wp-content/uploads/2015/03/POTO-
KIPAS.jpg\n\ncenter\n\nProgram Studi Ilmu Komunikasi - Konsentrasi Public
Relations\n\nicon\n\n<p>Program S-1 Public Relations bertujuan untuk
mengarahkan mahasiswanya agar mampu membuat program - program terencana
dalam upaya-upayanya mempertahankan, menciptakan, dan memelihara pengertian
bersama antara organisasi dan masyarakatnya. Sehingga hal ini dapat
memberikan penerangan kepada public dan melaksanakan fungsinya seperti
melakukan persuasi untuk mengubah sikap dan tingkah laku public dan upaya
untuk menyatukan sikap serta perilaku suatu lembaga sesuai dengan sikap dan
perbuatan masyarakat, atau sebaliknya. </p>Materi perkuliahan Public
Relations mendekatkan pada praktek PR pada organisasi baik itu perusahaan
swasta maupun di pemerintahan. Pada setiap pertengahan semester, mahasiswa
memperoleh seminar atau kuliah umum dengan narasumber para praktisi PR
professional. Selain itu, dalam kegiatan praktek mahasiswa juga diberi
kesempatan untuk mengelola events, presentasi di depan public dan diskusi
karir di bidang PR. Ditengah perkembangan media dan dunia siber, para
mahasiswa juga dibekali kemampuan dalam menyelesaikan masalah PR dengan
memanfaatkan teknologi berbasis internet. Lulusan PR Stikom Prosia
diharapkan mampu menjadi seorang PR Profesional yang bisa beradaptasi dalam
lingkungan global.\n\nno-repeat;center top;;\n\nMata Kuliah Utama -
Konsentrasi Public Relations\n\nicon\n\nSemester 1\n\n<ul>\r\n<li>Bahasa
Inggris Dasar</li>\r\n<li>Pengembangan Kepribadian</li>\r\n<li>Komputer
Dasar</li>\r\n<li>Pendidikan Pancasila</li>\r\n<li>Pendidikan
Kewarganegaraan</li>\r\n<li>Pengantar Ilmu Ekonomi</li>\r\n<li>Pengantar
Ilmu Komunikasi</li>\r\n<li>Pendidikan Agama</li>\r\n<li>Bahasa
Indonesia</li>\r\n</ul>\n\nSemester 2\n\n<ul>\r\n<li>Semiotika
Komunikasi</li>\r\n<li>Psikologi Komunikasi</li>\r\n<li>Bahasa Inggris
Lanjutan</li>\r\n<li>Logika Komunikasi</li>\r\n<li>Asas-Asas
Manajemen</li>\r\n<li>Teori Komunikasi</li>\r\n<li>Komunikasi
Organisasi</li>\r\n<li>Dasar-Dasar Jurnalistik</li>\r\n</ul>\n\nSemester
3\n\n<ul>\r\n<li>Pengantar Public Relations</li>\r\n<li>English for Public
Relations</li>\r\n<li>Kewirausahaan</li>\r\n<li>Komunikasi Antar
Pribadi</li>\r\n<li>Sosiologi Komunikasi</li>\r\n<li>Pendidikan Anti
Korupsi</li>\r\n<li>Fotografi</li>\r\n</ul>\n\nSemester
4\n\n<ul>\r\n<li>Komunikasi Lintas Budaya</li>\r\n<li>Komunikasi
Bisnis</li>\r\n<li>Komunikasi Multi Media</li>\r\n<li>Komunikasi
Massa</li>\r\n<li>Komunikasi Politik</li>\r\n<li>Statistik
Sosial</li>\r\n<li>Etika dan Hukum Komunikasi</li>\r\n<li>Teknik Lobi dan
Negosiasi</li>\r\n</ul>\n\nSemester 5\n\n<ul>\r\n<li>Event
Management</li>\r\n<li>Cyber Komunikasi</li>\r\n<li>Retorika dan Komunikasi
Publik</li>\r\n<li>Komunikasi Pemasaran Terpadu</li>\r\n<li>Teknik Berpikir
Kreatif</li>\r\n<li>Metode Penelitian Komunikasi
Kuantitatif</li>\r\n<li>Filsafat Komunikasi</li>\r\n</ul>\n\nSemester
6\n\n<ul>\r\n<li>Analisa Stakeholder</li>\r\n<li>Manajemen Public
Relations</li>\r\n<li>Penulisan Naskah Public
Relations</li>\r\n<li>Perencanaan Kampanye Public
Relations</li>\r\n<li>Corporate Social Responsibility</li>\r\n<li>Perilaku
Konsumen</li>\r\n<li>Metode Penelitian Komunikasi
Kualitatif</li>\r\n</ul>\n\nSemester 7\n\n<ul>\r\n<li>PR dan Manajemen
Kritis</li>\r\n<li>PR Pemerintahan dan Perusahaan</li>\r\n<li>Brand
Image</li>\r\n<li>Media Relations</li>\r\n<li>Praktek Kerja
Lapangan</li>\r\n<li>Seminar Proposal Skripsi</li>\r\n</ul>\n\nSemester
8\n\n<ul>\r\n<li>Skripsi dan Sidang Komprehensif</li>\r\n</ul>\n\nPanduan
Pendaftaran Mahasiswa Baru\n\nicon\n\n<div style=\"margin: 0
15%;\">\r\n<h4>Nulla imperdiet sit amet magna. Vestibulum dapibus, mauris
nec malesuada fames ac turpis velit, rhoncus eu, luctus et interdum
adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam purus. Quisque
lorem tortor fringilla sed.</h4>\r\n<p>Quisque lorem tortor fringilla sed,
vestibulum id, eleifend justo vel bibendum sapien massa ac turpis faucibus
orci luctus non, consectetuer lobortis quis, varius in, purus. Integer
ultrices posuere cubilia Curae, Nulla ipsum dolor lacus, suscipit
adipiscing. Cum sociis natoque penatibus et ultrices volutpat. Nullam wisi
ultricies a, gravida vitae, dapibus risus ante sodales lectus blandit eu,
tempor diam pede cursus vitae, ultricies eu, faucibus quis, porttitor eros
cursus lectus, pellentesque eget, bibendum a, gravida ullamcorper quam.
Nullam viverra consectetuer.</p>\r\n</div>\n\ncenter\n\nno-repeat;center
top;;\n\n<h2 style=\"margin: 0;\">Kontak Kami</h2>\n\ncenter\n\nno-
repeat;center top;;\n\nicon-mail-line\n\n<big style=\"padding-top: 12px;
display: block\">Ada pertanyaan?</big>\r\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\n\n2\n\nicon-comment-line\n\n<big style=\"padding-top: 12px; display:
block\">Hubungi Kami</big>\r\n<h4><a href=\"#\">(021) 857
6647</a></h4>\n\n2\n\nicon-doc-line\n\n<big style=\"padding-top: 12px;
display: block\">Fax</big>\r\n<h4><a href=\"#\">(021) 857
6661</a></h4>\n\n<a
href=\"#\">#</a>\n\n2\n\n'),(278,2339,'_edit_lock','1463039737:1'),(279,233
9,'_edit_last','1'),(280,2339,'_wpb_vc_js_status','false'),(281,2339,'_dp_o
riginal','2307'),(282,2341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:
0:{}}'),(283,2341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
284,2341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(285,2341,
'_wp_page_template','default'),(286,2341,'slide_template','default'),(287,2
341,'mfn-post-hide-content','0'),(288,2341,'mfn-post-custom-
layout','0'),(289,2341,'mfn-post-slider','0'),(290,2341,'mfn-post-slider-
layer','0'),(291,2341,'mfn-post-menu','0'),(292,2341,'mfn-post-one-
page','0'),(293,2341,'mfn-post-hide-title','0'),(294,2341,'mfn-post-remove-
padding','1'),(295,2341,'mfn-post-sidebar','0'),(296,2341,'mfn-post-
sidebar2','0'),(297,2341,'mfn-page-
items','a:4:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:1:\"0\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:3:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\"1/1\"
;s:6:\"fields\";a:16:{s:3:\"src\";s:67:\"http://139.59.234.208/wp-
content/uploads/2016/04/ruang-
komputer.jpg\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"align\"
;s:6:\"center\";s:6:\"border\";s:1:\"0\";s:6:\"margin\";s:0:\"\";s:13:\"mar
gin_bottom\";s:0:\"\";s:10:\"link_image\";s:0:\"\";s:4:\"link\";s:0:\"\";s:
6:\"target\";s:1:\"0\";s:5:\"hover\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:7:\"ca
ption\";s:0:\"\";s:9:\"greyscale\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\
"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"si
ze\";s:3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:57:\"Program Studi
Ilmu Komunikasi - Konsentrasi :
Advertising\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0
:\"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s
:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:6:\"column\";s:4
:\"size\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"con
tent\";s:841:\"<p>Program Studi S-1 Advetising dirancang untuk mengarahkan
dan mengasah pemikiran kreatif mahasiswanya di bidang periklanan. Mahasiswa
diarahkan agar mampu mengemas suatu iklan dalam berbagai macam bentuk
seperti Above The Line diantaranya TV Commercial, Radio Comercial Adv dan
Below The line seperti Print ad, exhibition, event, pembinaan konsumen dan
lain lain.</p> Dengan semakin berkembangnya media periklanan melalui media
baru, social media dan digital advertising, mahasiswa STIKOM PROSIA
dibekali kemampuan untuk menghasilkan karya kreatif yang berbasis digital
advertising. Untuk mendukung perkuliahan, kampus STIKOM PROSIA telah
dilengkapi laboratorium computer grafis, digital fotografi, free wifi dan
lainnya. Diharapkan lulusan mampu bersaing dalam dunia periklanan baik itu
lewat jalur professional maupun wirausaha
kreatif.\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"bg_image
\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:2:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:9:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:
3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:46:\"Mata Kuliah Utama pada
Konsentrasi
Advertising\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0
:\"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s
:0:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:8:\"info_box\";s
:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
1\";s:7:\"content\";s:283:\"<ul>\n<li>Bahasa Inggris
Dasar</li>\n<li>Pengembangan Kepribadian</li>\n<li>Komputer
Dasar</li>\n<li>Pendidikan Pancasila</li>\n<li>Pendidikan
kewarganegaraan</li>\n<li>Pengantar Ilmu Ekonomi</li>\n<li>Pengantar Ilmu
Komunikasi</li>\n<li>Pendidikan Agama</li>\n<li>Bahasa
Indonesia</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:6:\"fadeIn
\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"
size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
2\";s:7:\"content\";s:249:\"<ul>\n<li>Semiotika
Komunikasi</li>\n<li>Psikologi Komunikasi</li>\n<li>Bahasa Inggris
Lanjutan</li>\n<li>Logika Komunikasi</li>\n<li>Asas-Asas
Manajemen</li>\n<li>Teori Komunikasi</li>\n<li>Komunikasi
Organisasi</li>\n<li>Dasar-Dasar
Jurnalistik</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s
:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size
\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
3\";s:7:\"content\";s:212:\"<ul>\n<li>Pengantar
Periklanan</li>\n<li>English for
Advertising</li>\n<li>Kewirausahaan</li>\n<li>Komunikasi Antar
Pribadi</li>\n<li>Sosiologi Komunikasi</li>\n<li>Pendidikan Anti
Korupsi</li>\n<li>Fotografi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:4;a:3:{s:4:\"type\";s:8:\"info_
box\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Sem
ester 4\";s:7:\"content\";s:254:\"<ul>\n<li>Komunikasi Lintas
Budaya</li>\n<li>Komunikasi Bisnis</li>\n<li>Komunikasi Multi
Media</li>\n<li>Komunikasi Massa</li>\n<li>Komunikasi
Politik</li>\n<li>Statistik Sosial</li>\n<li>Etika dan Hukum
Komunikasi</li>\n<li>Teknik Lobi dan
Negosiasi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7
:\"classes\";s:0:\"\";}}i:5;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\"
;s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
5\";s:7:\"content\";s:252:\"<ul>\n<li>Event Management</li>\n<li>Cyber
Komunikasi</li>\n<li>Retorika dan Komunikasi Publik</li>\n<li>Komunikasi
Pemasaran Terpadu</li>\n<li>Teknik Berpikir Kreatif</li>\n<li>Metode
Penelitian Komunikasi Kuantitatif</li>\n<li>Filsafat
Komunikasi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:
7:\"classes\";s:0:\"\";}}i:6;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\
";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
6\";s:7:\"content\";s:230:\"<ul>\n<li>Manajemen
Periklanan</li>\n<li>Komputer Periklanan</li>\n<li>Copy
Writing</li>\n<li>Perencanaan Kreatif Periklanan</li>\n<li>Teknik
Kamera</li>\n<li>Perilaku Konsumen</li>\n<li>Metode Penelitian Komunikasi
Kualitatif</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:
7:\"classes\";s:0:\"\";}}i:7;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\
";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
7\";s:7:\"content\";s:198:\"<ul>\n<li>Brand Image</li>\n<li>Komputer
Animasi</li>\n<li>Advertising Foto</li>\n<li>Produksi Iklan</li>\n<li>Media
Relations</li>\n<li>Praktek Kerja Lapangan</li>\n<li>Seminar Proposal
Skripsi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7:\
"classes\";s:0:\"\";}}i:8;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\";s
:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
8\";s:7:\"content\";s:51:\"<ul>\n<li>Skripsi dan Sidang
Komprehensif</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";
s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8
:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}i:1;a:3:{s:4:\"size\";s:
7:\"divider\";s:5:\"items\";s:0:\"\";s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0
:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:2;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:3
:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:34:\"Panduan Pendaftaran
Mahasiswa
Baru\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s
:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\"
;s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";
s:850:\"<div style=\"margin: 0 15%;\">\n<h4>Nulla imperdiet sit amet magna.
Vestibulum dapibus, mauris nec malesuada fames ac turpis velit, rhoncus eu,
luctus et interdum adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam
purus. Quisque lorem tortor fringilla sed.</h4>\n<p>Quisque lorem tortor
fringilla sed, vestibulum id, eleifend justo vel bibendum sapien massa ac
turpis faucibus orci luctus non, consectetuer lobortis quis, varius in,
purus. Integer ultrices posuere cubilia Curae, Nulla ipsum dolor lacus,
suscipit adipiscing. Cum sociis natoque penatibus et ultrices volutpat.
Nullam wisi ultricies a, gravida vitae, dapibus risus ante sodales lectus
blandit eu, tempor diam pede cursus vitae, ultricies eu, faucibus quis,
porttitor eros cursus lectus, pellentesque eget, bibendum a, gravida
ullamcorper quam. Nullam viverra
consectetuer.</p>\n</div>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";
s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:3;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\
";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:39:\"<h2
style=\"margin: 0;\">Kontak
Kami</h2>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\
"icon\";s:14:\"icon-mail-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:152:
\"<big style=\"padding-top: 12px; display: block\">Ada
pertanyaan?</big>\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\";s:1:\"2\
";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\"
;s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"icon\";s:1
7:\"icon-comment-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:105:
\"<big style=\"padding-top: 12px; display: block\">Hubungi
Kami</big>\n<h4><a href=\"#\">(021) 857
6647</a></h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\
";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:
4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"
icon\";s:13:\"icon-doc-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:96:\
"<big style=\"padding-top: 12px; display: block\">Fax</big>\n<h4><a
href=\"#\">(021) 857
6661</a></h4>\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:1:\"0\";s:5:\"style
\";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(298,2341,'mfn-
page-items-seo','http://139.59.234.208/wp-content/uploads/2016/04/ruang-
komputer.jpg\n\ncenter\n\nProgram Studi Ilmu Komunikasi - Konsentrasi :
Advertising\n\nicon\n\n<p>Program Studi S-1 Advetising dirancang untuk
mengarahkan dan mengasah pemikiran kreatif mahasiswanya di bidang
periklanan. Mahasiswa diarahkan agar mampu mengemas suatu iklan dalam
berbagai macam bentuk seperti Above The Line diantaranya TV Commercial,
Radio Comercial Adv dan Below The line seperti Print ad, exhibition, event,
pembinaan konsumen dan lain lain.</p> Dengan semakin berkembangnya media
periklanan melalui media baru, social media dan digital advertising,
mahasiswa STIKOM PROSIA dibekali kemampuan untuk menghasilkan karya kreatif
yang berbasis digital advertising. Untuk mendukung perkuliahan, kampus
STIKOM PROSIA telah dilengkapi laboratorium computer grafis, digital
fotografi, free wifi dan lainnya. Diharapkan lulusan mampu bersaing dalam
dunia periklanan baik itu lewat jalur professional maupun wirausaha
kreatif.\n\nno-repeat;center top;;\n\nMata Kuliah Utama pada Konsentrasi
Advertising\n\nicon\n\nSemester 1\n\n<ul>\r\n<li>Bahasa Inggris
Dasar</li>\r\n<li>Pengembangan Kepribadian</li>\r\n<li>Komputer
Dasar</li>\r\n<li>Pendidikan Pancasila</li>\r\n<li>Pendidikan
kewarganegaraan</li>\r\n<li>Pengantar Ilmu Ekonomi</li>\r\n<li>Pengantar
Ilmu Komunikasi</li>\r\n<li>Pendidikan Agama</li>\r\n<li>Bahasa
Indonesia</li>\r\n</ul>\n\nfadeIn\n\nSemester 2\n\n<ul>\r\n<li>Semiotika
Komunikasi</li>\r\n<li>Psikologi Komunikasi</li>\r\n<li>Bahasa Inggris
Lanjutan</li>\r\n<li>Logika Komunikasi</li>\r\n<li>Asas-Asas
Manajemen</li>\r\n<li>Teori Komunikasi</li>\r\n<li>Komunikasi
Organisasi</li>\r\n<li>Dasar-Dasar Jurnalistik</li>\r\n</ul>\n\nSemester
3\n\n<ul>\r\n<li>Pengantar Periklanan</li>\r\n<li>English for
Advertising</li>\r\n<li>Kewirausahaan</li>\r\n<li>Komunikasi Antar
Pribadi</li>\r\n<li>Sosiologi Komunikasi</li>\r\n<li>Pendidikan Anti
Korupsi</li>\r\n<li>Fotografi</li>\r\n</ul>\n\nSemester
4\n\n<ul>\r\n<li>Komunikasi Lintas Budaya</li>\r\n<li>Komunikasi
Bisnis</li>\r\n<li>Komunikasi Multi Media</li>\r\n<li>Komunikasi
Massa</li>\r\n<li>Komunikasi Politik</li>\r\n<li>Statistik
Sosial</li>\r\n<li>Etika dan Hukum Komunikasi</li>\r\n<li>Teknik Lobi dan
Negosiasi</li>\r\n</ul>\n\nSemester 5\n\n<ul>\r\n<li>Event
Management</li>\r\n<li>Cyber Komunikasi</li>\r\n<li>Retorika dan Komunikasi
Publik</li>\r\n<li>Komunikasi Pemasaran Terpadu</li>\r\n<li>Teknik Berpikir
Kreatif</li>\r\n<li>Metode Penelitian Komunikasi
Kuantitatif</li>\r\n<li>Filsafat Komunikasi</li>\r\n</ul>\n\nSemester
6\n\n<ul>\r\n<li>Manajemen Periklanan</li>\r\n<li>Komputer
Periklanan</li>\r\n<li>Copy Writing</li>\r\n<li>Perencanaan Kreatif
Periklanan</li>\r\n<li>Teknik Kamera</li>\r\n<li>Perilaku
Konsumen</li>\r\n<li>Metode Penelitian Komunikasi
Kualitatif</li>\r\n</ul>\n\nSemester 7\n\n<ul>\r\n<li>Brand
Image</li>\r\n<li>Komputer Animasi</li>\r\n<li>Advertising
Foto</li>\r\n<li>Produksi Iklan</li>\r\n<li>Media
Relations</li>\r\n<li>Praktek Kerja Lapangan</li>\r\n<li>Seminar Proposal
Skripsi</li>\r\n</ul>\n\nSemester 8\n\n<ul>\r\n<li>Skripsi dan Sidang
Komprehensif</li>\r\n</ul>\n\nPanduan Pendaftaran Mahasiswa
Baru\n\nicon\n\n<div style=\"margin: 0 15%;\">\r\n<h4>Nulla imperdiet sit
amet magna. Vestibulum dapibus, mauris nec malesuada fames ac turpis velit,
rhoncus eu, luctus et interdum adipiscing wisi. Aliquam erat ac ipsum.
Integer aliquam purus. Quisque lorem tortor fringilla
sed.</h4>\r\n<p>Quisque lorem tortor fringilla sed, vestibulum id, eleifend
justo vel bibendum sapien massa ac turpis faucibus orci luctus non,
consectetuer lobortis quis, varius in, purus. Integer ultrices posuere
cubilia Curae, Nulla ipsum dolor lacus, suscipit adipiscing. Cum sociis
natoque penatibus et ultrices volutpat. Nullam wisi ultricies a, gravida
vitae, dapibus risus ante sodales lectus blandit eu, tempor diam pede
cursus vitae, ultricies eu, faucibus quis, porttitor eros cursus lectus,
pellentesque eget, bibendum a, gravida ullamcorper quam. Nullam viverra
consectetuer.</p>\r\n</div>\n\ncenter\n\nno-repeat;center top;;\n\n<h2
style=\"margin: 0;\">Kontak Kami</h2>\n\ncenter\n\nno-repeat;center
top;;\n\nicon-mail-line\n\n<big style=\"padding-top: 12px; display:
block\">Ada pertanyaan?</big>\r\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\n\n2\n\nicon-comment-line\n\n<big style=\"padding-top: 12px; display:
block\">Hubungi Kami</big>\r\n<h4><a href=\"#\">(021) 857
6647</a></h4>\n\n2\n\nicon-doc-line\n\n<big style=\"padding-top: 12px;
display: block\">Fax</big>\r\n<h4><a href=\"#\">(021) 857
6661</a></h4>\n\n<a
href=\"#\">#</a>\n\n2\n\n'),(299,2341,'_edit_lock','1463039188:1'),(300,234
1,'_edit_last','1'),(301,2341,'_wpb_vc_js_status','false'),(303,2341,'_dp_o
riginal','2339'),(304,2343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:
0:{}}'),(305,2343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
306,2343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(307,2343,
'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(308,2343,'_wp_page
_template','default'),(309,2343,'slide_template','default'),(310,2343,'mfn-
post-hide-content','0'),(311,2343,'mfn-post-custom-
layout','0'),(312,2343,'mfn-post-slider','0'),(313,2343,'mfn-post-slider-
layer','0'),(314,2343,'mfn-post-menu','0'),(315,2343,'mfn-post-one-
page','0'),(316,2343,'mfn-post-hide-title','0'),(317,2343,'mfn-post-remove-
padding','1'),(318,2343,'mfn-post-sidebar','0'),(319,2343,'mfn-post-
sidebar2','0'),(320,2343,'mfn-page-
items','a:4:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:3:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\"1/1\";
s:6:\"fields\";a:16:{s:3:\"src\";s:72:\"http://139.59.234.208/wp-
content/uploads/2016/04/broadcasting-
stikom.jpg\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"align\";s
:6:\"center\";s:6:\"border\";s:1:\"0\";s:6:\"margin\";s:0:\"\";s:13:\"margi
n_bottom\";s:0:\"\";s:10:\"link_image\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:
\"target\";s:1:\"0\";s:5:\"hover\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:7:\"capt
ion\";s:0:\"\";s:9:\"greyscale\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"c
lasses\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:58:\"Program Studi Ilmu
Komunikasi - Konsentrasi :
Broadcasting\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:
0:\"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";
s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:6:\"column\";s:
4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"co
ntent\";s:1055:\"<p>Seiring dengan pesatnya dunia komunikasi dan media,
maka diperlukan tenaga-tenaga handal untuk menjadi broadcaster
professional. Program S-1 Broadcasting ini mengarahkan peserta didiknya
melalui proses belajar mengajar meliputi tatap muka dikelas, praktek
lapangan dan Lab. Broadcasting. Sehingga peserta didik kami akan menjadi
tenaga handal dan siap berkompetisi secara professional.</p> Mahasiswa juga
aktif dalam pembuatan berbagai produk penyiaran baik itu Radio maupun
televise dan video. Tersedia lab Radio, dimana mahasiswa bisa mengembangkan
minatnya sebagai penyiar radio. Siaran radio dapat didengarkan melalui
internet lewat jaringan streaming radio di website stikom prosia. Sedangkan
mahasiswa yang berbakat dalam sinematografi, diberi kesempatan untuk
menghasilkan karya-karyanya dalam pembuatan film pendek dan iklan televisi.
Di Stikom Prosia tersedia lab editing, studio radio dan peralatan
broadcasting yang memadai. Sehingga para lulusan broadcasting Stikom Prosia
mampu menjadi sineas dan announcer handal yang mandiri dan
kreatif.\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"bg_image
\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:9:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:
3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:44:\"Mata Kuliah Utama -
Konsentrasi
Broadcasting\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:
0:\"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";
s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:8:\"info_box\";
s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
1\";s:7:\"content\";s:283:\"<ul>\n<li>Bahasa Inggris
Dasar</li>\n<li>Pengembangan Kepribadian </li>\n<li>Komputer
Dasar</li>\n<li>Pendidikan Pancasila</li>\n<li>Pendidikan
Kewarganegaraan</li>\n<li>Pengantar Ilmu Ekonomi</li>\n<li>Penganta Ilmu
Komunikasi</li>\n<li>Pendidikan Agama</li>\n<li>Bahasa
Indonesia</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7
:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\"
;s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
2\";s:7:\"content\";s:249:\"<ul>\n<li>Semiotika
Komunikasi</li>\n<li>Psikologi Komunikasi</li>\n<li>Bahasa Inggris
Lanjutan</li>\n<li>Logika Komunikasi</li>\n<li>Asas-Asas
Manajemen</li>\n<li>Teori Komunikasi</li>\n<li>Komunikasi
Organisasi</li>\n<li>Dasar-Dasar
Jurnalistik</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s
:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size
\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
3\";s:7:\"content\";s:212:\"<ul>\n<li>Pengantar Penyiaran</li>\n<li>English
for Broadcasting</li>\n<li>Kewirausahaan</li>\n<li>Komunikasi Antar
Pribadi</li>\n<li>Sosiologi Komunikasi</li>\n<li>Pendidikan Anti
Korupsi</li>\n<li>Fotografi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:4;a:3:{s:4:\"type\";s:8:\"info_
box\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Sem
ester 4\";s:7:\"content\";s:254:\"<ul>\n<li>Komunikasi Lintas
Budaya</li>\n<li>Komunikasi Bisnis</li>\n<li>Komunikasi Multi
Media</li>\n<li>Komunikasi Massa</li>\n<li>Komunikasi
Politik</li>\n<li>Statistik Sosial</li>\n<li>Etika dan Hukum
Komunikasi</li>\n<li>Teknik Lobi dan
Negosiasi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7
:\"classes\";s:0:\"\";}}i:5;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\"
;s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
5\";s:7:\"content\";s:252:\"<ul>\n<li>Event Management</li>\n<li>Cyber
Komunikasi</li>\n<li>Retorika dan Komunikasi Publik</li>\n<li>Komunikasi
Pemasaran Terpadu</li>\n<li>Teknik Berpikir Kreatif</li>\n<li>Metode
Penelitian Komunikasi Kuantitatif</li>\n<li>Filsafat
Komunikasi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:
7:\"classes\";s:0:\"\";}}i:6;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\
";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
6\";s:7:\"content\";s:266:\"<ul>\n<li>Teknik Kamera</li>\n<li>Penulisan
Naskah Radio & TV</li>\n<li>Perencanaan Program Radio & TV</li>\n<li>Teknik
Reportase & Wawancara (TV & Radio)</li>\n<li>Manajemen
Penyiaran</li>\n<li>Perilaku Konsumen</li>\n<li>Metode Penelitian
Komunikasi
Kualitatif</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:
7:\"classes\";s:0:\"\";}}i:7;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\
";s:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
7\";s:7:\"content\";s:214:\"<ul>\n<li>Tata Artistik</li>\n<li>Produksi
Acara Radio & TV</li>\n<li>Teknik Penyutradaraan</li>\n<li>Teknik
Editing</li>\n<li>Media Relations</li>\n<li>Praktek Kerja
Lapangan</li>\n<li>Seminar Proposal
Skripsi</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7:\
"classes\";s:0:\"\";}}i:8;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\";s
:3:\"1/4\";s:6:\"fields\";a:5:{s:5:\"title\";s:10:\"Semester
8\";s:7:\"content\";s:51:\"<ul>\n<li>Skripsi dan Sidang
Komprehensif</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";
s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8
:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:2;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:3
:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:34:\"Panduan Pendaftaran
Mahasiswa
Baru\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s
:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\"
;s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";
s:850:\"<div style=\"margin: 0 15%;\">\n<h4>Nulla imperdiet sit amet magna.
Vestibulum dapibus, mauris nec malesuada fames ac turpis velit, rhoncus eu,
luctus et interdum adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam
purus. Quisque lorem tortor fringilla sed.</h4>\n<p>Quisque lorem tortor
fringilla sed, vestibulum id, eleifend justo vel bibendum sapien massa ac
turpis faucibus orci luctus non, consectetuer lobortis quis, varius in,
purus. Integer ultrices posuere cubilia Curae, Nulla ipsum dolor lacus,
suscipit adipiscing. Cum sociis natoque penatibus et ultrices volutpat.
Nullam wisi ultricies a, gravida vitae, dapibus risus ante sodales lectus
blandit eu, tempor diam pede cursus vitae, ultricies eu, faucibus quis,
porttitor eros cursus lectus, pellentesque eget, bibendum a, gravida
ullamcorper quam. Nullam viverra
consectetuer.</p>\n</div>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";
s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:3;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\
";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:39:\"<h2
style=\"margin: 0;\">Kontak
Kami</h2>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\
"icon\";s:14:\"icon-mail-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:152:
\"<big style=\"padding-top: 12px; display: block\">Ada
pertanyaan?</big>\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\";s:1:\"2\
";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\"
;s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"icon\";s:1
7:\"icon-comment-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:105:
\"<big style=\"padding-top: 12px; display: block\">Hubungi
Kami</big>\n<h4><a href=\"#\">(021) 857
6647</a></h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\
";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:
4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"
icon\";s:13:\"icon-doc-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:96:\
"<big style=\"padding-top: 12px; display: block\">Fax</big>\n<h4><a
href=\"#\">(021) 857
6661</a></h4>\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:1:\"0\";s:5:\"style
\";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(321,2343,'mfn-
page-items-seo','http://139.59.234.208/wp-
content/uploads/2016/04/broadcasting-stikom.jpg\n\ncenter\n\nProgram Studi
Ilmu Komunikasi - Konsentrasi : Broadcasting\n\nicon\n\n<p>Seiring dengan
pesatnya dunia komunikasi dan media, maka diperlukan tenaga-tenaga handal
untuk menjadi broadcaster professional. Program S-1 Broadcasting ini
mengarahkan peserta didiknya melalui proses belajar mengajar meliputi tatap
muka dikelas, praktek lapangan dan Lab. Broadcasting. Sehingga peserta
didik kami akan menjadi tenaga handal dan siap berkompetisi secara
professional.</p> Mahasiswa juga aktif dalam pembuatan berbagai produk
penyiaran baik itu Radio maupun televise dan video. Tersedia lab Radio,
dimana mahasiswa bisa mengembangkan minatnya sebagai penyiar radio. Siaran
radio dapat didengarkan melalui internet lewat jaringan streaming radio di
website stikom prosia. Sedangkan mahasiswa yang berbakat dalam
sinematografi, diberi kesempatan untuk menghasilkan karya-karyanya dalam
pembuatan film pendek dan iklan televisi. Di Stikom Prosia tersedia lab
editing, studio radio dan peralatan broadcasting yang memadai. Sehingga
para lulusan broadcasting Stikom Prosia mampu menjadi sineas dan announcer
handal yang mandiri dan kreatif.\n\nno-repeat;center top;;\n\nMata Kuliah
Utama - Konsentrasi Broadcasting\n\nicon\n\nSemester
1\n\n<ul>\r\n<li>Bahasa Inggris Dasar</li>\r\n<li>Pengembangan Kepribadian
</li>\r\n<li>Komputer Dasar</li>\r\n<li>Pendidikan
Pancasila</li>\r\n<li>Pendidikan Kewarganegaraan</li>\r\n<li>Pengantar Ilmu
Ekonomi</li>\r\n<li>Penganta Ilmu Komunikasi</li>\r\n<li>Pendidikan
Agama</li>\r\n<li>Bahasa Indonesia</li>\r\n</ul>\n\nSemester
2\n\n<ul>\r\n<li>Semiotika Komunikasi</li>\r\n<li>Psikologi
Komunikasi</li>\r\n<li>Bahasa Inggris Lanjutan</li>\r\n<li>Logika
Komunikasi</li>\r\n<li>Asas-Asas Manajemen</li>\r\n<li>Teori
Komunikasi</li>\r\n<li>Komunikasi Organisasi</li>\r\n<li>Dasar-Dasar
Jurnalistik</li>\r\n</ul>\n\nSemester 3\n\n<ul>\r\n<li>Pengantar
Penyiaran</li>\r\n<li>English for
Broadcasting</li>\r\n<li>Kewirausahaan</li>\r\n<li>Komunikasi Antar
Pribadi</li>\r\n<li>Sosiologi Komunikasi</li>\r\n<li>Pendidikan Anti
Korupsi</li>\r\n<li>Fotografi</li>\r\n</ul>\n\nSemester
4\n\n<ul>\r\n<li>Komunikasi Lintas Budaya</li>\r\n<li>Komunikasi
Bisnis</li>\r\n<li>Komunikasi Multi Media</li>\r\n<li>Komunikasi
Massa</li>\r\n<li>Komunikasi Politik</li>\r\n<li>Statistik
Sosial</li>\r\n<li>Etika dan Hukum Komunikasi</li>\r\n<li>Teknik Lobi dan
Negosiasi</li>\r\n</ul>\n\nSemester 5\n\n<ul>\r\n<li>Event
Management</li>\r\n<li>Cyber Komunikasi</li>\r\n<li>Retorika dan Komunikasi
Publik</li>\r\n<li>Komunikasi Pemasaran Terpadu</li>\r\n<li>Teknik Berpikir
Kreatif</li>\r\n<li>Metode Penelitian Komunikasi
Kuantitatif</li>\r\n<li>Filsafat Komunikasi</li>\r\n</ul>\n\nSemester
6\n\n<ul>\r\n<li>Teknik Kamera</li>\r\n<li>Penulisan Naskah Radio &
TV</li>\r\n<li>Perencanaan Program Radio & TV</li>\r\n<li>Teknik Reportase
& Wawancara (TV & Radio)</li>\r\n<li>Manajemen
Penyiaran</li>\r\n<li>Perilaku Konsumen</li>\r\n<li>Metode Penelitian
Komunikasi Kualitatif</li>\r\n</ul>\n\nSemester 7\n\n<ul>\r\n<li>Tata
Artistik</li>\r\n<li>Produksi Acara Radio & TV</li>\r\n<li>Teknik
Penyutradaraan</li>\r\n<li>Teknik Editing</li>\r\n<li>Media
Relations</li>\r\n<li>Praktek Kerja Lapangan</li>\r\n<li>Seminar Proposal
Skripsi</li>\r\n</ul>\n\nSemester 8\n\n<ul>\r\n<li>Skripsi dan Sidang
Komprehensif</li>\r\n</ul>\n\nPanduan Pendaftaran Mahasiswa
Baru\n\nicon\n\n<div style=\"margin: 0 15%;\">\r\n<h4>Nulla imperdiet sit
amet magna. Vestibulum dapibus, mauris nec malesuada fames ac turpis velit,
rhoncus eu, luctus et interdum adipiscing wisi. Aliquam erat ac ipsum.
Integer aliquam purus. Quisque lorem tortor fringilla
sed.</h4>\r\n<p>Quisque lorem tortor fringilla sed, vestibulum id, eleifend
justo vel bibendum sapien massa ac turpis faucibus orci luctus non,
consectetuer lobortis quis, varius in, purus. Integer ultrices posuere
cubilia Curae, Nulla ipsum dolor lacus, suscipit adipiscing. Cum sociis
natoque penatibus et ultrices volutpat. Nullam wisi ultricies a, gravida
vitae, dapibus risus ante sodales lectus blandit eu, tempor diam pede
cursus vitae, ultricies eu, faucibus quis, porttitor eros cursus lectus,
pellentesque eget, bibendum a, gravida ullamcorper quam. Nullam viverra
consectetuer.</p>\r\n</div>\n\ncenter\n\nno-repeat;center top;;\n\n<h2
style=\"margin: 0;\">Kontak Kami</h2>\n\ncenter\n\nno-repeat;center
top;;\n\nicon-mail-line\n\n<big style=\"padding-top: 12px; display:
block\">Ada pertanyaan?</big>\r\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\n\n2\n\nicon-comment-line\n\n<big style=\"padding-top: 12px; display:
block\">Hubungi Kami</big>\r\n<h4><a href=\"#\">(021) 857
6647</a></h4>\n\n2\n\nicon-doc-line\n\n<big style=\"padding-top: 12px;
display: block\">Fax</big>\r\n<h4><a href=\"#\">(021) 857
6661</a></h4>\n\n<a
href=\"#\">#</a>\n\n2\n\n'),(322,2343,'_edit_lock','1463038811:1'),(323,234
3,'_edit_last','1'),(324,2343,'_wpb_vc_js_status','false'),(326,2343,'_dp_o
riginal','2341'),(327,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:
0:{}}'),(328,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
329,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(330,2345,
'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(331,2345,'_vc_post
_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(332,2345,'_wp_page_template
','default'),(333,2345,'slide_template','default'),(334,2345,'mfn-post-
hide-content','0'),(335,2345,'mfn-post-custom-layout','0'),(336,2345,'mfn-
post-slider','0'),(337,2345,'mfn-post-slider-layer','0'),(338,2345,'mfn-
post-menu','0'),(339,2345,'mfn-post-one-page','0'),(340,2345,'mfn-post-
hide-title','0'),(341,2345,'mfn-post-remove-padding','1'),(342,2345,'mfn-
post-sidebar','0'),(343,2345,'mfn-post-sidebar2','0'),(344,2345,'mfn-page-
items','a:4:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:3:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\"1/1\";
s:6:\"fields\";a:16:{s:3:\"src\";s:74:\"http://139.59.234.208/wp-
content/uploads/2015/03/home_university_slide.jpg\";s:5:\"width\";s:0:\"\";
s:6:\"height\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:6:\"border\";s:1:\"0
\";s:6:\"margin\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:10:\"link_imag
e\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"hover\";s
:0:\"\";s:3:\"alt\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:9:\"greyscale\";s:1
:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"t
ype\";s:13:\"fancy_heading\";s:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:8:{s
:5:\"title\";s:5:\"Intro\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\
"slogan\";s:0:\"\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:
\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:6:\
"column\";s:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\
"\";s:7:\"content\";s:445:\"<p>Pemasaran di era abad ke 20 adalah
komunikasi dan komunikasi adalah pemasaran, sehingga keduanya merupakan
perpaduan yang tidak terpisahkan. Melalui program S-1 Marketing
Communications ini mahasiswa diarahkan untuk memiliki kemampuan dalam
memadukan Creative Skills, membuat proses strategi pemasaran dan tentunya
komunikasi dalam mengelola hubungan dengan konsumen. Pada intinya semua
kegiatan tersebut untuk menggerakan Brand Value.
</p>\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"bg_image\";s
:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:1;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:
3:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:13:\"Core
Subjects\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"
\";s:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:
\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:
\"size\";s:3:\"1/3\";s:6:\"fields\";a:5:{s:5:\"title\";s:0:\"\";s:7:\"conte
nt\";s:101:\"<ul>\n<li>Event Management </li>\n<li>Persuasive
Communications </li>\n<li>Consumer Behavior
</li>\n</ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7:\"classe
s\";s:0:\"\";}}i:2;a:3:{s:4:\"type\";s:8:\"info_box\";s:4:\"size\";s:3:\"1/
3\";s:6:\"fields\";a:5:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:120:\"<ul>
<li>Customer Relationship Management </li><li>Integrated Marketing
Communication
Service</li><li>Marketing</li></ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\
";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:4:\"type\";s:8:\"info_box\
";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:5:{s:5:\"title\";s:0:\"\";s:7:\
"content\";s:92:\"<ul><li>Brand Managemen</li><li>Social Media
Management</li><li>New Wave
Marketing</li></ul>\";s:5:\"image\";s:0:\"\";s:7:\"animate\";s:0:\"\";s:7:\
"classes\";s:0:\"\";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg
_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:2;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0
:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:13:\"fancy_heading\";s:4:\"size\";s:3
:\"1/1\";s:6:\"fields\";a:8:{s:5:\"title\";s:34:\"Panduan Pendaftaran
Mahasiswa
Baru\";s:2:\"h1\";s:1:\"0\";s:4:\"icon\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s
:7:\"content\";s:0:\"\";s:5:\"style\";s:4:\"icon\";s:7:\"animate\";s:0:\"\"
;s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size
\";s:3:\"1/1\";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";
s:850:\"<div style=\"margin: 0 15%;\">\n<h4>Nulla imperdiet sit amet magna.
Vestibulum dapibus, mauris nec malesuada fames ac turpis velit, rhoncus eu,
luctus et interdum adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam
purus. Quisque lorem tortor fringilla sed.</h4>\n<p>Quisque lorem tortor
fringilla sed, vestibulum id, eleifend justo vel bibendum sapien massa ac
turpis faucibus orci luctus non, consectetuer lobortis quis, varius in,
purus. Integer ultrices posuere cubilia Curae, Nulla ipsum dolor lacus,
suscipit adipiscing. Cum sociis natoque penatibus et ultrices volutpat.
Nullam wisi ultricies a, gravida vitae, dapibus risus ante sodales lectus
blandit eu, tempor diam pede cursus vitae, ultricies eu, faucibus quis,
porttitor eros cursus lectus, pellentesque eget, bibendum a, gravida
ullamcorper quam. Nullam viverra
consectetuer.</p>\n</div>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";
s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}i:3;a:2:{s:4:\"attr\";
a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_color\";s:7:\"#edeff2\";s:8:\"bg_imag
e\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:2:\"20\";s:7:\"divider
\";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class
\";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\
"hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:
\"items\";a:4:{i:0;a:3:{s:4:\"type\";s:6:\"column\";s:4:\"size\";s:3:\"1/1\
";s:6:\"fields\";a:11:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:39:\"<h2
style=\"margin: 0;\">Kontak
Kami</h2>\";s:5:\"align\";s:6:\"center\";s:9:\"column_bg\";s:0:\"\";s:8:\"b
g_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}i:1;a:3:{s
:4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\
"icon\";s:14:\"icon-mail-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:152:
\"<big style=\"padding-top: 12px; display: block\">Ada
pertanyaan?</big>\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\";s:1:\"2\
";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:2;a:3:{s:4:\"type\"
;s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"icon\";s:1
7:\"icon-comment-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:105:
\"<big style=\"padding-top: 12px; display: block\">Hubungi
Kami</big>\n<h4><a href=\"#\">(021) 857
6647</a></h4>\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"style\
";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:3;a:3:{s:
4:\"type\";s:4:\"list\";s:4:\"size\";s:3:\"1/3\";s:6:\"fields\";a:9:{s:4:\"
icon\";s:13:\"icon-doc-
line\";s:5:\"image\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:96:\
"<big style=\"padding-top: 12px; display: block\">Fax</big>\n<h4><a
href=\"#\">(021) 857
6661</a></h4>\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:1:\"0\";s:5:\"style
\";s:1:\"2\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(345,2345,'mfn-
page-items-seo','http://139.59.234.208/wp-
content/uploads/2015/03/home_university_slide.jpg\n\ncenter\n\nIntro\n\nico
n\n\n<p>Pemasaran di era abad ke 20 adalah komunikasi dan komunikasi adalah
pemasaran, sehingga keduanya merupakan perpaduan yang tidak terpisahkan.
Melalui program S-1 Marketing Communications ini mahasiswa diarahkan untuk
memiliki kemampuan dalam memadukan Creative Skills, membuat proses
strategi pemasaran dan tentunya komunikasi dalam mengelola hubungan dengan
konsumen. Pada intinya semua kegiatan tersebut untuk menggerakan Brand
Value. </p>\n\nno-repeat;center top;;\n\nCore
Subjects\n\nicon\n\n<ul>\r\n<li>Event Management </li>\r\n<li>Persuasive
Communications </li>\r\n<li>Consumer Behavior
</li>\r\n</ul>\n\n<ul><li>Customer Relationship Management
</li><li>Integrated Marketing Communication
Service</li><li>Marketing</li></ul>\n\n<ul><li>Brand
Managemen</li><li>Social Media Management</li><li>New Wave
Marketing</li></ul>\n\nPanduan Pendaftaran Mahasiswa Baru\n\nicon\n\n<div
style=\"margin: 0 15%;\">\r\n<h4>Nulla imperdiet sit amet magna. Vestibulum
dapibus, mauris nec malesuada fames ac turpis velit, rhoncus eu, luctus et
interdum adipiscing wisi. Aliquam erat ac ipsum. Integer aliquam purus.
Quisque lorem tortor fringilla sed.</h4>\r\n<p>Quisque lorem tortor
fringilla sed, vestibulum id, eleifend justo vel bibendum sapien massa ac
turpis faucibus orci luctus non, consectetuer lobortis quis, varius in,
purus. Integer ultrices posuere cubilia Curae, Nulla ipsum dolor lacus,
suscipit adipiscing. Cum sociis natoque penatibus et ultrices volutpat.
Nullam wisi ultricies a, gravida vitae, dapibus risus ante sodales lectus
blandit eu, tempor diam pede cursus vitae, ultricies eu, faucibus quis,
porttitor eros cursus lectus, pellentesque eget, bibendum a, gravida
ullamcorper quam. Nullam viverra
consectetuer.</p>\r\n</div>\n\ncenter\n\nno-repeat;center top;;\n\n<h2
style=\"margin: 0;\">Kontak Kami</h2>\n\ncenter\n\nno-repeat;center
top;;\n\nicon-mail-line\n\n<big style=\"padding-top: 12px; display:
block\">Ada pertanyaan?</big>\r\n<h4><a
href=\"mailto:support@stikomprosia.ac.id\">support@stikomprosia.ac.id</a></
h4>\n\n2\n\nicon-comment-line\n\n<big style=\"padding-top: 12px; display:
block\">Hubungi Kami</big>\r\n<h4><a href=\"#\">(021) 857
6647</a></h4>\n\n2\n\nicon-doc-line\n\n<big style=\"padding-top: 12px;
display: block\">Fax</big>\r\n<h4><a href=\"#\">(021) 857
6661</a></h4>\n\n<a
href=\"#\">#</a>\n\n2\n\n'),(346,2345,'_edit_lock','1461923125:1'),(347,234
5,'_edit_last','1'),(348,2345,'_wpb_vc_js_status','false'),(350,2345,'_dp_o
riginal','2343'),(363,2348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:
0:{}}'),(364,2348,'_menu_item_type','post_type'),(365,2348,'_menu_item_menu
_item_parent','2325'),(366,2348,'_menu_item_object_id','2343'),(367,2348,'_
menu_item_object','page'),(368,2348,'_menu_item_target',''),(369,2348,'_men
u_item_classes','a:1:{i:0;s:0:\"\";}'),(370,2348,'_menu_item_xfn',''),(371,
2348,'_menu_item_url',''),(373,2348,'menu-item-mfn-
megamenu',''),(374,2348,'menu-item-mfn-
bg',''),(375,2349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
376,2349,'_menu_item_type','post_type'),(377,2349,'_menu_item_menu_item_par
ent','2325'),(378,2349,'_menu_item_object_id','2341'),(379,2349,'_menu_item
_object','page'),(380,2349,'_menu_item_target',''),(381,2349,'_menu_item_cl
asses','a:1:{i:0;s:0:\"\";}'),(382,2349,'_menu_item_xfn',''),(383,2349,'_me
nu_item_url',''),(385,2349,'menu-item-mfn-megamenu',''),(386,2349,'menu-
item-mfn-
bg',''),(387,2350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
388,2350,'_menu_item_type','post_type'),(389,2350,'_menu_item_menu_item_par
ent','2325'),(390,2350,'_menu_item_object_id','2339'),(391,2350,'_menu_item
_object','page'),(392,2350,'_menu_item_target',''),(393,2350,'_menu_item_cl
asses','a:1:{i:0;s:0:\"\";}'),(394,2350,'_menu_item_xfn',''),(395,2350,'_me
nu_item_url',''),(397,2350,'menu-item-mfn-megamenu',''),(398,2350,'menu-
item-mfn-
bg',''),(399,2311,'_edit_lock','1461921458:1'),(400,2311,'_edit_last','1'),
(401,2311,'_wpb_vc_js_status','false'),(402,2313,'_edit_lock','1461302593:1
'),(403,2313,'_edit_last','1'),(404,2313,'_wpb_vc_js_status','false'),(405,
2356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(406,2356,'_vc
_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(407,2356,'_wp_page_tem
plate','default'),(408,2356,'slide_template','default'),(409,2356,'mfn-
post-hide-content','0'),(410,2356,'mfn-post-custom-
layout','0'),(411,2356,'mfn-post-slider','0'),(412,2356,'mfn-post-slider-
layer','0'),(413,2356,'mfn-post-menu','0'),(414,2356,'mfn-post-one-
page','0'),(415,2356,'mfn-post-hide-title','0'),(416,2356,'mfn-post-remove-
padding','1'),(417,2356,'mfn-post-sidebar','0'),(418,2356,'mfn-post-
sidebar2','0'),(419,2356,'mfn-page-
items','a:1:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:2:\"60\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\
";s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\
";s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"
hide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\
"items\";a:2:{i:0;a:3:{s:4:\"type\";s:5:\"image\";s:4:\"size\";s:3:\"1/3\";
s:6:\"fields\";a:16:{s:3:\"src\";s:58:\"http://139.59.234.208/wp-
content/uploads/2016/04/Ketua.jpg\";s:5:\"width\";s:0:\"\";s:6:\"height\";s
:0:\"\";s:5:\"align\";s:6:\"center\";s:6:\"border\";s:1:\"0\";s:6:\"margin\
";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:10:\"link_image\";s:0:\"\";s:4
:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:5:\"hover\";s:0:\"\";s:3:\"al
t\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:9:\"greyscale\";s:1:\"0\";s:7:\"ani
mate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:1;a:3:{s:4:\"type\";s:6:\"colu
mn\";s:4:\"size\";s:3:\"2/3\";s:6:\"fields\";a:11:{s:5:\"title\";s:4:\"Desc
\";s:7:\"content\";s:1254:\"<p>Persaingan semakin kompetitif membuat
seseorang dituntut untuk memiliki kemampuan agar mampu bersaing di dunia
professional. Untuk mampu bersaing, seseorang tidak hanya dinilai kemampuan
Hard Skill-nya saja namun Soft Competency menjadi konsen kami untuk
mengarahkan peserta didik sehingga bukan hanya berkualitas namun mampu
membawa diri mereka kedalam persaingan yang semakin
kompleks.</p>\n\n<p>Sebagai Sekolah Tinggi yang sudah terakreditasi B dari
BAN-PT, PROSIA School of Communication juga mempersiapkan peserta didiknya
agar memiliki jiwa kewirausahaan. Melalui program yang kami rancang yakni
Comtrepreneurship atau Entrepreneurship in Communication Field. Kami
benar-benar mempersiapkan mahasiswa kami agar mampu membuka peluang usaha
namun tetap sesuai dengan bidang yang ditekuni yakni komunikasi. Melaui
program tersebut, kami bukan sekedar membangun jiwa kemandirian namun
mentalitas pribadi tidak mudah menyerah, memiliki jiwa kepemimpinan dan
mampu memberikan konstribusi nyata dimanapun ia bekerja.</p>\n\n<p>Sekali
lagi kami ucapkan selamat bergabung bersama PROSIA School of Communications
, \"To Be a Professional in Communication is a Passionate
Profession.\"</p>\n\n<b>Hj. Hurdatul Ainiah, SH, MM</b> </p>\nKetua STIKOM
PROSIA</p>\";s:5:\"align\";s:0:\"\";s:9:\"column_bg\";s:0:\"\";s:8:\"bg_ima
ge\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:13:\"margin_bottom\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"anim
ate\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"style\";s:0:\"\";}}}s:4:\"att
r\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_posi
tion\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(420,2356,'mfn-
page-items-seo','http://139.59.234.208/wp-
content/uploads/2016/04/Ketua.jpg\n\ncenter\n\nDesc\n\n<p>Persaingan
semakin kompetitif membuat seseorang dituntut untuk memiliki kemampuan agar
mampu bersaing di dunia professional. Untuk mampu bersaing, seseorang tidak
hanya dinilai kemampuan Hard Skill-nya saja namun Soft Competency menjadi
konsen kami untuk mengarahkan peserta didik sehingga bukan hanya
berkualitas namun mampu membawa diri mereka kedalam persaingan yang semakin
kompleks.</p>\r\n\r\n<p>Sebagai Sekolah Tinggi yang sudah terakreditasi B
dari BAN-PT, PROSIA School of Communication juga mempersiapkan peserta
didiknya agar memiliki jiwa kewirausahaan. Melalui program yang kami
rancang yakni Comtrepreneurship atau Entrepreneurship in Communication
Field. Kami benar-benar mempersiapkan mahasiswa kami agar mampu membuka
peluang usaha namun tetap sesuai dengan bidang yang ditekuni yakni
komunikasi. Melaui program tersebut, kami bukan sekedar membangun jiwa
kemandirian namun mentalitas pribadi tidak mudah menyerah, memiliki jiwa
kepemimpinan dan mampu memberikan konstribusi nyata dimanapun ia
bekerja.</p>\r\n\r\n<p>Sekali lagi kami ucapkan selamat bergabung bersama
PROSIA School of Communications , \"To Be a Professional in Communication
is a Passionate Profession.\"</p>\r\n\r\n<b>Hj. Hurdatul Ainiah, SH, MM</b>
</p>\r\nKetua STIKOM PROSIA</p>\n\nno-repeat;center
top;;\n\n'),(421,2356,'_edit_lock','1461945711:1'),(422,2356,'_edit_last','
1'),(423,2356,'_wpb_vc_js_status','false'),(424,2356,'_dp_original','2307')
,(425,2358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(426,235
8,'_menu_item_type','post_type'),(427,2358,'_menu_item_menu_item_parent','2
327'),(428,2358,'_menu_item_object_id','2356'),(429,2358,'_menu_item_object
','page'),(430,2358,'_menu_item_target',''),(431,2358,'_menu_item_classes',
'a:1:{i:0;s:0:\"\";}'),(432,2358,'_menu_item_xfn',''),(433,2358,'_menu_item
_url',''),(435,2358,'menu-item-mfn-megamenu',''),(436,2358,'menu-item-mfn-
bg',''),(437,2283,'_edit_lock','1461930616:1'),(438,2283,'mfn-post-
sidebar2','0'),(439,2283,'mfn-post-remove-
padding','0'),(440,2309,'_edit_lock','1461930453:1'),(441,2360,'_vc_post_se
ttings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(442,2360,'_edit_last','1'),(44
3,2360,'_wp_page_template','default'),(444,2360,'slide_template','default')
,(445,2360,'mfn-post-hide-content','0'),(446,2360,'mfn-post-
sidebar','0'),(447,2360,'mfn-post-sidebar2','0'),(448,2360,'mfn-post-
slider','0'),(449,2360,'mfn-post-slider-layer','0'),(450,2360,'mfn-post-
custom-layout','0'),(451,2360,'mfn-post-one-page','0'),(452,2360,'mfn-post-
hide-title','0'),(453,2360,'mfn-post-remove-padding','0'),(454,2360,'mfn-
post-
menu','0'),(455,2360,'_wpb_vc_js_status','false'),(456,2360,'_edit_lock','1
461324615:1'),(457,2364,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{
}}'),(458,2364,'_edit_last','1'),(459,2364,'_edit_lock','1461321770:1'),(46
2,2364,'slide_template','default'),(463,2364,'mfn-post-hide-
content','0'),(464,2364,'mfn-post-sidebar','0'),(465,2364,'mfn-post-
sidebar2','0'),(466,2364,'mfn-post-slider','0'),(467,2364,'mfn-post-slider-
layer','0'),(468,2364,'mfn-post-hide-title','0'),(469,2364,'mfn-post-
remove-padding','0'),(470,2364,'mfn-post-hide-image','0'),(471,2364,'mfn-
post-love','0'),(472,2360,'mfn-page-
items','a:1:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\"
;s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\"
;s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"h
ide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\"
items\";a:1:{i:0;a:3:{s:4:\"type\";s:4:\"blog\";s:4:\"size\";s:3:\"1/1\";s:
6:\"fields\";a:12:{s:5:\"count\";s:2:\"12\";s:5:\"style\";s:7:\"masonry\";s
:7:\"columns\";s:1:\"3\";s:8:\"category\";s:11:\"job_vacancy\";s:14:\"categ
ory_multi\";s:0:\"\";s:10:\"exclude_id\";s:0:\"\";s:4:\"more\";s:1:\"1\";s:
7:\"filters\";s:1:\"0\";s:10:\"pagination\";s:1:\"1\";s:9:\"load_more\";s:1
:\"0\";s:9:\"greyscale\";s:1:\"0\";s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\"
;a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_positio
n\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(473,2360,'mfn-
page-items-
seo','12\n\nmasonry\n\n3\n\njob_vacancy\n\n'),(474,2367,'_vc_post_settings'
,'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(475,2367,'_edit_last','2'),(476,2367,
'_edit_lock','1462325415:2'),(477,2367,'_wp_page_template','default'),(478,
2367,'slide_template','default'),(479,2367,'mfn-page-
items','a:1:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\"
;s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\"
;s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"h
ide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\"
items\";a:4:{i:0;a:3:{s:4:\"type\";s:8:\"our_team\";s:4:\"size\";s:3:\"1/4\
";s:6:\"fields\";a:17:{s:7:\"heading\";s:0:\"\";s:5:\"image\";s:104:\"http:
//139.59.234.208/wp-content/uploads/2016/04/8bad84a4-961e-4508-8a42-
e22c8acadfd4-e1461902279301.jpg\";s:5:\"title\";s:17:\"Panji Surya
Brata\";s:8:\"subtitle\";s:50:\"Staff Senior Multimedia on air KBS WORLD
INDONESIA\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:294:\"<i>\"kuliah di
prosia seru karena dosennya gaul-gaul..sistem pembelajarannya bisa diterima
dengan baik..sarana dan ruang belajarnya enak dan nyaman..biayanya
terjangkau tapi gak murahan..semoga STIKOM PROSIA terus SUKSES dan selalu
meningkatkan sistem pembelajaran yg up to date dan
bermutu\"</i>\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0:\"\";s:7:\"twit
ter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:\"\";s:10:\"bloc
kquote\";s:0:\"\";s:5:\"style\";s:8:\"vertical\";s:4:\"link\";s:0:\"\";s:6:
\"target\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:
1;a:3:{s:4:\"type\";s:8:\"our_team\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\
";a:17:{s:7:\"heading\";s:0:\"\";s:5:\"image\";s:89:\"http://139.59.234.208
/wp-content/uploads/2016/04/3142fd64-b4e6-4ab2-8777-
d080180d1fe5.jpg\";s:5:\"title\";s:10:\"Christoper\";s:8:\"subtitle\";s:56:
\"Internal Communication Executive The Body Shop
Indonesia\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:525:\"<i>\"Sekolah
Tinggi Ilmu Komunikasi Profesi Indonesia (STIKOM PROSIA) mampu menempa
kita, sehingga kita mampu, memiliki nilai, dan memiliki daya saing. Dosen
yang berasal dari Akademisi dan Profesional membantu kita mengetahui
tuntutan pasar Sumber Daya Manusia, namun tetap memiliki dasar keilmuan.
Perubahan terjadi sangat cepat, dan yang bahaya dari perubahan adalah bahwa
kita tidak memiliki peran dari perubahan yang terjadi. Berubahlah, ambil
keputusan, tinggalkan cara lama, dan bergabunglah bersama STIKOM
PROSIA.\"</i>\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0:\"\";s:7:\"twit
ter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:\"\";s:10:\"bloc
kquote\";s:0:\"\";s:5:\"style\";s:8:\"vertical\";s:4:\"link\";s:0:\"\";s:6:
\"target\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i:
2;a:3:{s:4:\"type\";s:8:\"our_team\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields\
";a:17:{s:7:\"heading\";s:0:\"\";s:5:\"image\";s:104:\"http://139.59.234.20
8/wp-content/uploads/2016/04/a1085709-2209-4986-912a-b0b6b36ef225-
e1461922535227.jpg\";s:5:\"title\";s:10:\"Helmansyah\";s:8:\"subtitle\";s:4
1:\"Direktur/Owner di CV. Karya Indah
Pelangi\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:558:\"<i>\"STIKOM PROSIA
yg tepat untuk menimba ilmu, jurusan Advertising yang saya minati karena
materi perkuliahannya nyambung degan dunia kerja yang saya rintis sekarang.
Dosennya baik-baik, smart, dan peduli degan mahasiswa/i nya. Alhamdulillah
degan kuliah di STIKOM PROSIA saya banyak mendapat ilmu dan pengalaman yang
tidak bisa saya dapat di kampus lainnya. Kampusnya memotivasi saya untuk
jauh lebih baik lagi. Selesai kuliah alhamdulillah sekarang kehidupan saya
jauh lebih baik lagi. Terimakasih untuk STIKOM PROSIA dan para dosen,
officer
lainnya.\"</i>\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0:\"\";s:7:\"twi
tter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:\"\";s:10:\"blo
ckquote\";s:0:\"\";s:5:\"style\";s:8:\"vertical\";s:4:\"link\";s:0:\"\";s:6
:\"target\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";}}i
:3;a:3:{s:4:\"type\";s:8:\"our_team\";s:4:\"size\";s:3:\"1/4\";s:6:\"fields
\";a:17:{s:7:\"heading\";s:0:\"\";s:5:\"image\";s:67:\"http://139.59.234.20
8/wp-content/uploads/2016/04/20160503000719.jpg\";s:5:\"title\";s:26:\"Aji
Reza Ragamanti Banurea\";s:8:\"subtitle\";s:30:\"Crative Productions on
Trans 7\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:652:\"<i>\"Prosia
membantu kita para mahasiswa untuk mendapat pelajaran yang berguna untuk
dunia kerja, terlebih untuk bekerja di Televisi dimana dunia komunikasi
berada di posisi strategis penentu keberhasilan sebuah kesuksesan televisi.
Di Prosia kita akan mendapatkan mata kuliah yang kita butuhkan ditambah
dosen yang komunikatif sehingga membantu mahasiswa sampai akhirnya lulus.
Suasana belajar di prosia juga menyenangkan, sehingga mahasiswa tidak
merasa tertekan karena sebagian mahasiswa bekerja sembari kuliah. Prosia
juga menjadi tempat kuliah yang terjangkau harganya dan bisa dicicil, cocok
untuk bekerja sambil studi melanjutkan
pendidikan.\"</i>\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0:\"\";s:7:\"
twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:\"\";s:10:\"
blockquote\";s:0:\"\";s:5:\"style\";s:8:\"vertical\";s:4:\"link\";s:0:\"\";
s:6:\"target\";s:1:\"0\";s:7:\"animate\";s:0:\"\";s:7:\"classes\";s:0:\"\";
}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:
11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(480,2367,'mfn-
page-items-seo','<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/8bad84a4-961e-4508-8a42-e22c8acadfd4-
e1461902279301.jpg\" alt=\"\"/>\n\nPanji Surya Brata\n\nStaff Senior
Multimedia on air KBS WORLD INDONESIA\n\n<i>\"kuliah di prosia seru karena
dosennya gaul-gaul..sistem pembelajarannya bisa diterima dengan
baik..sarana dan ruang belajarnya enak dan nyaman..biayanya terjangkau tapi
gak murahan..semoga STIKOM PROSIA terus SUKSES dan selalu meningkatkan
sistem pembelajaran yg up to date dan bermutu\"</i>\n\nvertical\n\n<img
src=\"http://139.59.234.208/wp-content/uploads/2016/04/3142fd64-b4e6-4ab2-
8777-d080180d1fe5.jpg\" alt=\"\"/>\n\nChristoper\n\nInternal Communication
Executive The Body Shop Indonesia\n\n<i>\"Sekolah Tinggi Ilmu Komunikasi
Profesi Indonesia (STIKOM PROSIA) mampu menempa kita, sehingga kita mampu,
memiliki nilai, dan memiliki daya saing. Dosen yang berasal dari Akademisi
dan Profesional membantu kita mengetahui tuntutan pasar Sumber Daya
Manusia, namun tetap memiliki dasar keilmuan. Perubahan terjadi sangat
cepat, dan yang bahaya dari perubahan adalah bahwa kita tidak memiliki
peran dari perubahan yang terjadi. Berubahlah, ambil keputusan, tinggalkan
cara lama, dan bergabunglah bersama STIKOM
PROSIA.\"</i>\n\nvertical\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/a1085709-2209-4986-912a-b0b6b36ef225-
e1461922535227.jpg\" alt=\"\"/>\n\nHelmansyah\n\nDirektur/Owner di CV.
Karya Indah Pelangi\n\n<i>\"STIKOM PROSIA yg tepat untuk menimba ilmu,
jurusan Advertising yang saya minati karena materi perkuliahannya nyambung
degan dunia kerja yang saya rintis sekarang. Dosennya baik-baik, smart, dan
peduli degan mahasiswa/i nya. Alhamdulillah degan kuliah di STIKOM PROSIA
saya banyak mendapat ilmu dan pengalaman yang tidak bisa saya dapat di
kampus lainnya. Kampusnya memotivasi saya untuk jauh lebih baik lagi.
Selesai kuliah alhamdulillah sekarang kehidupan saya jauh lebih baik lagi.
Terimakasih untuk STIKOM PROSIA dan para dosen, officer
lainnya.\"</i>\n\nvertical\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719.jpg\" alt=\"\"/>\n\nAji Reza
Ragamanti Banurea\n\nCrative Productions on Trans 7\n\n<i>\"Prosia membantu
kita para mahasiswa untuk mendapat pelajaran yang berguna untuk dunia
kerja, terlebih untuk bekerja di Televisi dimana dunia komunikasi berada di
posisi strategis penentu keberhasilan sebuah kesuksesan televisi. Di Prosia
kita akan mendapatkan mata kuliah yang kita butuhkan ditambah dosen yang
komunikatif sehingga membantu mahasiswa sampai akhirnya lulus. Suasana
belajar di prosia juga menyenangkan, sehingga mahasiswa tidak merasa
tertekan karena sebagian mahasiswa bekerja sembari kuliah. Prosia juga
menjadi tempat kuliah yang terjangkau harganya dan bisa dicicil, cocok
untuk bekerja sambil studi melanjutkan
pendidikan.\"</i>\n\nvertical\n\n'),(481,2367,'mfn-post-hide-
content','0'),(482,2367,'mfn-post-sidebar','0'),(483,2367,'mfn-post-
sidebar2','0'),(484,2367,'mfn-post-slider','0'),(485,2367,'mfn-post-slider-
layer','0'),(486,2367,'mfn-post-custom-layout','0'),(487,2367,'mfn-post-
one-page','0'),(488,2367,'mfn-post-hide-title','0'),(489,2367,'mfn-post-
remove-padding','0'),(490,2367,'mfn-post-
menu','0'),(491,2367,'_wpb_vc_js_status','false'),(492,2369,'_vc_post_setti
ngs','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(493,2369,'_menu_item_type','post_
type'),(494,2369,'_menu_item_menu_item_parent','0'),(495,2369,'_menu_item_o
bject_id','2367'),(496,2369,'_menu_item_object','page'),(497,2369,'_menu_it
em_target',''),(498,2369,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(499,2
369,'_menu_item_xfn',''),(500,2369,'_menu_item_url',''),(502,2369,'menu-
item-mfn-megamenu',''),(503,2369,'menu-item-mfn-
bg',''),(504,2370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
505,2370,'_menu_item_type','post_type'),(506,2370,'_menu_item_menu_item_par
ent','2369'),(507,2370,'_menu_item_object_id','2360'),(508,2370,'_menu_item
_object','page'),(509,2370,'_menu_item_target',''),(510,2370,'_menu_item_cl
asses','a:1:{i:0;s:0:\"\";}'),(511,2370,'_menu_item_xfn',''),(512,2370,'_me
nu_item_url',''),(514,2370,'menu-item-mfn-megamenu',''),(515,2370,'menu-
item-mfn-
bg',''),(516,2371,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(
517,2371,'_edit_last','1'),(518,2371,'_edit_lock','1461324461:1'),(521,2371
,'slide_template','default'),(522,2371,'mfn-post-hide-
content','0'),(523,2371,'mfn-post-sidebar','0'),(524,2371,'mfn-post-
sidebar2','0'),(525,2371,'mfn-post-slider','0'),(526,2371,'mfn-post-slider-
layer','0'),(527,2371,'mfn-post-hide-title','0'),(528,2371,'mfn-post-
remove-padding','0'),(529,2371,'mfn-post-hide-image','0'),(530,2371,'mfn-
post-
love','0'),(531,2373,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'
),(532,2373,'_edit_last','1'),(533,2373,'_edit_lock','1461324847:1'),(534,2
373,'_wp_page_template','default'),(535,2373,'slide_template','default'),(5
36,2373,'mfn-page-
items','a:1:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\"
;s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\"
;s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"h
ide\";s:0:\"\";}s:5:\"wraps\";a:1:{i:0;a:3:{s:4:\"size\";s:3:\"1/1\";s:5:\"
items\";a:1:{i:0;a:3:{s:4:\"type\";s:4:\"blog\";s:4:\"size\";s:3:\"1/1\";s:
6:\"fields\";a:12:{s:5:\"count\";s:2:\"10\";s:5:\"style\";s:7:\"classic\";s
:7:\"columns\";s:1:\"3\";s:8:\"category\";s:8:\"research\";s:14:\"category_
multi\";s:0:\"\";s:10:\"exclude_id\";s:0:\"\";s:4:\"more\";s:1:\"1\";s:7:\"
filters\";s:1:\"0\";s:10:\"pagination\";s:1:\"0\";s:9:\"load_more\";s:1:\"0
\";s:9:\"greyscale\";s:1:\"0\";s:7:\"classes\";s:0:\"\";}}}s:4:\"attr\";a:7
:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";
s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(537,2373,'mfn-
page-items-seo','10\n\nclassic\n\n3\n\nresearch\n\n'),(538,2373,'mfn-post-
hide-content','0'),(539,2373,'mfn-post-sidebar','0'),(540,2373,'mfn-post-
sidebar2','0'),(541,2373,'mfn-post-slider','0'),(542,2373,'mfn-post-slider-
layer','0'),(543,2373,'mfn-post-custom-layout','0'),(544,2373,'mfn-post-
one-page','0'),(545,2373,'mfn-post-hide-title','0'),(546,2373,'mfn-post-
remove-padding','0'),(547,2373,'mfn-post-
menu','0'),(548,2373,'_wpb_vc_js_status','false'),(549,2375,'_vc_post_setti
ngs','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(550,2375,'_edit_last','1'),(551,2
375,'_edit_lock','1461324861:1'),(554,2375,'slide_template','default'),(555
,2375,'mfn-post-hide-content','0'),(556,2375,'mfn-post-
sidebar','0'),(557,2375,'mfn-post-sidebar2','0'),(558,2375,'mfn-post-
slider','0'),(559,2375,'mfn-post-slider-layer','0'),(560,2375,'mfn-post-
hide-title','0'),(561,2375,'mfn-post-remove-padding','0'),(562,2375,'mfn-
post-hide-image','0'),(563,2375,'mfn-post-
love','0'),(564,2377,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'
),(565,2377,'_edit_last','1'),(566,2377,'_edit_lock','1461324935:1'),(569,2
377,'slide_template','default'),(570,2377,'mfn-post-hide-
content','0'),(571,2377,'mfn-post-sidebar','0'),(572,2377,'mfn-post-
sidebar2','0'),(573,2377,'mfn-post-slider','0'),(574,2377,'mfn-post-slider-
layer','0'),(575,2377,'mfn-post-hide-title','0'),(576,2377,'mfn-post-
remove-padding','0'),(577,2377,'mfn-post-hide-image','0'),(578,2377,'mfn-
post-
love','0'),(579,2379,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'
),(580,2379,'_menu_item_type','post_type'),(581,2379,'_menu_item_menu_item_
parent','2327'),(582,2379,'_menu_item_object_id','2373'),(583,2379,'_menu_i
tem_object','page'),(584,2379,'_menu_item_target',''),(585,2379,'_menu_item
_classes','a:1:{i:0;s:0:\"\";}'),(586,2379,'_menu_item_xfn',''),(587,2379,'
_menu_item_url',''),(589,2379,'menu-item-mfn-megamenu',''),(590,2379,'menu-
item-mfn-bg',''),(593,2381,'_wp_attached_file','2016/04/favicon-
32x32.png'),(594,2381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:
6:\"height\";i:32;s:4:\"file\";s:25:\"2016/04/favicon-
32x32.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:1
2:\"focal_length\";s:1:\"0\";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:\"keywor
ds\";a:0:{}}}'),(595,2382,'_wp_attached_file','2016/04/apple-icon-
180x180.png'),(596,2382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180
;s:6:\"height\";i:180;s:4:\"file\";s:30:\"2016/04/apple-icon-
180x180.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\
"apple-icon-180x180-
150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:30:\"apple-icon-180x180-
146x146.png\";s:5:\"width\";i:146;s:6:\"height\";i:146;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:28:\"apple-
icon-180x180-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:28:\"apple-icon-180x180-
75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:28:\"ap
ple-icon-180x180-
85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-navi\";a:4:{s:4:\"file\";s:28:\"apple-
icon-180x180-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(597,2383,'_wp_attached_file','2016/04/LOGO-STIKOM-VERSI-
2.jpg'),(598,2383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:214;s:6:\
"height\";i:60;s:4:\"file\";s:31:\"2016/04/LOGO-STIKOM-VERSI-
2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"LOGO-
STIKOM-VERSI-2-
150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:29:\"LOGO-
STIKOM-VERSI-2-
50x14.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:14;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:30:\"LOGO-STIKOM-VERSI-2-
150x42.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:29:\"
LOGO-STIKOM-VERSI-2-
85x60.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:60;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:29:\"LOGO-STIKOM-VERSI-2-
80x60.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:60;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(599,2384,'_wp_attached_file','2016/04/LOGO-STIKOM-VERSI-
2x.jpg'),(600,2384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:429;s:6:
\"height\";i:120;s:4:\"file\";s:32:\"2016/04/LOGO-STIKOM-VERSI-
2x.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"LOGO
-STIKOM-VERSI-2x-
150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"LOGO-
STIKOM-VERSI-2x-
300x84.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:31:\"LOGO-STIKOM-VERSI-2x-
260x73.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:73;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:30:\"LOGO-
STIKOM-VERSI-2x-
50x14.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:14;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:31:\"LOGO-STIKOM-VERSI-2x-
150x42.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:30:\"
LOGO-STIKOM-VERSI-2x-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:30:\"LOGO-STIKOM-VERSI-2x-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(603,2386,'_wp_attached_file','2016/04/di-depan-kampus-
1.jpg'),(604,2386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:
\"height\";i:1223;s:4:\"file\";s:29:\"2016/04/di-depan-kampus-
1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"di-
depan-kampus-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:29:\"di-
depan-kampus-1-
300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"
di-depan-kampus-1-
768x489.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:489;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"di-
depan-kampus-1-
1024x652.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:652;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:29:\"di-depan-kampus-1-
229x146.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:27:\"di-
depan-kampus-1-
50x32.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:32;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:28:\"di-depan-kampus-1-
118x75.jpg\";s:5:\"width\";i:118;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:30:\"di-depan-kampus-1-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:27:\"
di-depan-kampus-1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-navi\";a:4:{s:4:\"file\";s:27:\"di-
depan-kampus-1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:31:\"di-depan-kampus-1-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:30:\"di-depan-kampus-1-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:30:\"di-depan-kampus-1-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:30:\"di-depan-kampus-1-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:29:\"di-depan-kampus-1-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:30:\"di-depan-kampus-1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(605,2387,'_wp_attached_file','2016/04/stikom.jpg'),(606,2387,
'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:853;s
:4:\"file\";s:18:\"2016/04/stikom.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail
\";a:4:{s:4:\"file\";s:18:\"stikom-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"stikom-
300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"
stikom-768x341.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:341;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"stikom-
1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:18:\"stikom-
260x116.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:116;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:16:\"stikom-
50x22.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:22;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:17:\"stikom-
150x67.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:67;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:19:\"stikom-
1630x853.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:16:\"
stikom-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:16:\"stikom-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:19:\"stikom-
1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:19:\"stikom-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:18:\"stikom-
768x853.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:853;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:19:\"stikom-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:18:\"stikom-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:19:\"stikom-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(607,2388,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}
}'),(608,2388,'_edit_lock','1461828073:1'),(609,2388,'_edit_last','1'),(610
,2389,'_wp_attached_file','2016/04/beauty-class-
2.jpg'),(611,2389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:
\"height\";i:1879;s:4:\"file\";s:26:\"2016/04/beauty-class-
2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"beau
ty-class-2-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"beauty-
class-2-287x300.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"
beauty-class-2-
768x802.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:802;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"beauty-
class-2-
981x1024.jpg\";s:5:\"width\";i:981;s:6:\"height\";i:1024;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:26:\"beauty-class-2-
140x146.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"beauty-
class-2-48x50.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:24:\"beauty-class-2-
72x75.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:27:\"beauty-class-2-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
beauty-class-2-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"beauty-class-2-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:28:\"beauty-class-2-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:27:\"beauty-class-2-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:27:\"beauty-class-2-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:27:\"beauty-class-2-
1800x750.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:26:\"beauty-class-2-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:27:\"beauty-class-2-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON
D5300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"13887000
01\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\
";s:4:\"1800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"titl
e\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(61
2,2388,'_thumbnail_id','2389'),(615,2388,'slide_template','default'),(616,2
388,'mfn-post-hide-content','0'),(617,2388,'mfn-post-
sidebar','0'),(618,2388,'mfn-post-sidebar2','0'),(619,2388,'mfn-post-
slider','0'),(620,2388,'mfn-post-slider-layer','0'),(621,2388,'mfn-post-
hide-title','0'),(622,2388,'mfn-post-remove-padding','0'),(623,2388,'mfn-
post-hide-image','0'),(624,2388,'mfn-post-
love','0'),(625,2391,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'
),(626,2391,'_edit_lock','1461896442:1'),(627,2391,'_edit_last','1'),(628,2
392,'_wp_attached_file','2015/03/POTO-
KIPAS.jpg'),(629,2392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4317;
s:6:\"height\";i:1752;s:4:\"file\";s:22:\"2015/03/POTO-
KIPAS.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"
POTO-KIPAS-
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:\"POTO-
KIPAS-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"
POTO-KIPAS-
768x312.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:312;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"POTO-
KIPAS-1024x416.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:416;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:22:\"POTO-KIPAS-
260x106.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:106;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:20:\"POTO-
KIPAS-50x20.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:20;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"POTO-KIPAS-
150x61.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:23:\"POTO-KIPAS-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:20:\"
POTO-KIPAS-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:20:\"POTO-KIPAS-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:24:\"POTO-KIPAS-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:23:\"POTO-KIPAS-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:23:\"POTO-KIPAS-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:23:\"POTO-KIPAS-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:22:\"POTO-KIPAS-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:23:\"POTO-KIPAS-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1427567253\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";
s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(630,23
93,'_wp_attached_file','2015/03/banner-
stikom.jpg'),(631,2393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2806
;s:6:\"height\";i:636;s:4:\"file\";s:25:\"2015/03/banner-
stikom.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\
"banner-stikom-
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:\"banner-
stikom-300x68.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"
banner-stikom-
768x174.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"banner-
stikom-1024x232.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:24:\"banner-stikom-
260x59.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:59;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:23:\"banner-
stikom-50x11.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:11;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:24:\"banner-stikom-
150x34.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:26:\"banner-stikom-
1630x636.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:636;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:23:\"
banner-stikom-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:23:\"banner-stikom-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:26:\"banner-stikom-
1280x636.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:636;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:26:\"banner-stikom-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:25:\"banner-stikom-
768x636.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:636;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:26:\"banner-stikom-
1920x636.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:636;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:25:\"banner-stikom-
960x636.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:636;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:26:\"banner-stikom-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(632,2394,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}
}'),(633,2394,'_edit_lock','1461924479:1'),(634,2394,'_edit_last','1'),(635
,2395,'_wp_attached_file','2016/04/fotografi-
2.jpg'),(636,2395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:
\"height\";i:1576;s:4:\"file\";s:23:\"2016/04/fotografi-
2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"foto
grafi-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"fotogra
fi-2-300x263.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"
fotografi-2-
768x672.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:672;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"fotograf
i-2-1024x897.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:897;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:23:\"fotografi-2-
167x146.jpg\";s:5:\"width\";i:167;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:21:\"fotograf
i-2-50x44.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:44;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"fotografi-2-
86x75.jpg\";s:5:\"width\";i:86;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:24:\"fotografi-2-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:21:\"
fotografi-2-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:21:\"fotografi-2-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:25:\"fotografi-2-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:24:\"fotografi-2-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:24:\"fotografi-2-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:24:\"fotografi-2-
1800x750.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:23:\"fotografi-2-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:24:\"fotografi-2-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS
60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452980166
\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";
s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:
11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(639,2394,'slide_t
emplate','default'),(640,2394,'mfn-post-hide-content','0'),(641,2394,'mfn-
post-sidebar','0'),(642,2394,'mfn-post-sidebar2','0'),(643,2394,'mfn-post-
slider','0'),(644,2394,'mfn-post-slider-layer','0'),(645,2394,'mfn-post-
hide-title','0'),(646,2394,'mfn-post-remove-padding','0'),(647,2394,'mfn-
post-hide-image','0'),(648,2394,'mfn-post-
love','0'),(652,2399,'_wp_attached_file','2016/04/fotografi-2-
1.jpg'),(653,2399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:
\"height\";i:1104;s:4:\"file\";s:25:\"2016/04/fotografi-2-
1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"foto
grafi-2-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:25:\"fotogra
fi-2-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"
fotografi-2-1-
768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"fotograf
i-2-1-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:25:\"fotografi-2-1-
238x146.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:23:\"fotograf
i-2-1-50x31.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:31;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:24:\"fotografi-2-1-
122x75.jpg\";s:5:\"width\";i:122;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:26:\"fotografi-2-1-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:23:\"
fotografi-2-1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:23:\"fotografi-2-1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:27:\"fotografi-2-1-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:26:\"fotografi-2-1-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:26:\"fotografi-2-1-
768x1104.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1104;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:26:\"fotografi-2-1-
1800x750.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:25:\"fotografi-2-1-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:26:\"fotografi-2-1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS
60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452980166
\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";
s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:
11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(654,2394,'_thumbn
ail_id','2399'),(657,2401,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0
:{}}'),(658,2401,'_edit_lock','1461835297:1'),(659,2401,'_edit_last','1'),(
660,2402,'_wp_attached_file','2016/04/santunan-
1.jpg'),(661,2402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:
\"height\";i:1351;s:4:\"file\";s:22:\"2016/04/santunan-
1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sant
unan-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:22:\"santuna
n-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"
santunan-1-
768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"santunan
-1-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:22:\"santunan-1-
195x146.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:20:\"santunan
-1-50x38.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:38;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"santunan-1-
100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:23:\"santunan-1-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:20:\"
santunan-1-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:20:\"santunan-1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:24:\"santunan-1-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:23:\"santunan-1-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:23:\"santunan-1-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:23:\"santunan-1-
1800x750.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:22:\"santunan-1-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:23:\"santunan-1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(662,2401,'_thumbnail_id','2402'),(665,2401,'slide_template','
default'),(666,2401,'mfn-post-hide-content','0'),(667,2401,'mfn-post-
sidebar','0'),(668,2401,'mfn-post-sidebar2','0'),(669,2401,'mfn-post-
slider','0'),(670,2401,'mfn-post-slider-layer','0'),(671,2401,'mfn-post-
hide-title','0'),(672,2401,'mfn-post-remove-padding','0'),(673,2401,'mfn-
post-hide-image','0'),(674,2401,'mfn-post-
love','0'),(675,2404,'_wp_attached_file','2016/04/dikelas.jpg'),(676,2404,'
_wp_attachment_metadata','a:5:{s:5:\"width\";i:2362;s:6:\"height\";i:1753;s
:4:\"file\";s:19:\"2016/04/dikelas.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnai
l\";a:4:{s:4:\"file\";s:19:\"dikelas-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dikelas
-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"
dikelas-768x570.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:570;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"dikelas-
1024x760.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:760;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:19:\"dikelas-
197x146.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:17:\"dikelas-
50x37.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:37;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:18:\"dikelas-
101x75.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:20:\"dikelas-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:17:\"
dikelas-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:17:\"dikelas-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:21:\"dikelas-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:20:\"dikelas-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:20:\"dikelas-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:20:\"dikelas-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:19:\"dikelas-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:20:\"dikelas-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1448972700\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\"
;s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(677,2
341,'_thumbnail_id','2404'),(678,2405,'_wp_attached_file','2016/04/ruang-
komputer.jpg'),(679,2405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:11
02;s:6:\"height\";i:509;s:4:\"file\";s:26:\"2016/04/ruang-
komputer.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26
:\"ruang-komputer-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"ruang-
komputer-300x139.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"
ruang-komputer-
768x355.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:355;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"ruang-
komputer-
1024x473.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:26:\"ruang-komputer-
260x120.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:120;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"ruang-
komputer-50x23.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:23;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:25:\"ruang-komputer-
150x69.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:69;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
ruang-komputer-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"ruang-komputer-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:27:\"ruang-komputer-
1102x500.jpg\";s:5:\"width\";i:1102;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:26:\"ruang-komputer-
768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:26:\"ruang-komputer-
960x509.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:509;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:27:\"ruang-komputer-
1102x480.jpg\";s:5:\"width\";i:1102;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(680,2406,'_wp_attached_file','2015/03/foto-
panjang.jpg'),(681,2406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280
0;s:6:\"height\";i:844;s:4:\"file\";s:24:\"2015/03/foto-
panjang.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:
\"foto-panjang-
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:\"foto-
panjang-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"
foto-panjang-
768x231.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"foto-
panjang-
1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:23:\"foto-panjang-
260x78.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:78;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:22:\"foto-
panjang-50x15.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:15;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:23:\"foto-panjang-
150x45.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:25:\"foto-panjang-
1630x844.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:844;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:22:\"
foto-panjang-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:22:\"foto-panjang-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:25:\"foto-panjang-
1280x844.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:844;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:25:\"foto-panjang-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:24:\"foto-panjang-
768x844.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:844;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:25:\"foto-panjang-
1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:24:\"foto-panjang-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:25:\"foto-panjang-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1427567253\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";
s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(683,24
07,'_wp_attached_file','2015/03/foto-panjang-
1.jpg'),(684,2407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1747;s:6:
\"height\";i:616;s:4:\"file\";s:26:\"2015/03/foto-panjang-
1.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"foto
-panjang-1-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"foto-
panjang-1-
300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"
foto-panjang-1-
768x271.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:271;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"foto-
panjang-1-
1024x361.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:361;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:25:\"foto-panjang-1-
260x92.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:92;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"foto-
panjang-1-50x18.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:18;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:25:\"foto-panjang-1-
150x53.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:27:\"foto-panjang-1-
1630x616.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:616;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
foto-panjang-1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"foto-panjang-1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:27:\"foto-panjang-1-
1280x616.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:616;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:27:\"foto-panjang-1-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:26:\"foto-panjang-1-
768x616.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:616;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:26:\"foto-panjang-1-
960x616.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:616;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:27:\"foto-panjang-1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1427567253\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";
s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(686,23
87,'_edit_lock','1461889218:1'),(687,2386,'_edit_lock','1461889268:1'),(688
,2406,'_edit_lock','1461889315:1'),(691,2409,'_vc_post_settings','a:1:{s:10
:\"vc_grid_id\";a:0:{}}'),(692,2409,'_edit_lock','1461933387:1'),(693,2409,
'_edit_last','1'),(694,2410,'_wp_attached_file','2016/04/pelatihan-dosen-
1.jpg'),(695,2410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:
\"height\";i:1179;s:4:\"file\";s:29:\"2016/04/pelatihan-dosen-
1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"pela
tihan-dosen-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:29:\"pelatih
an-dosen-1-
300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"
pelatihan-dosen-1-
768x503.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:503;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"pelatiha
n-dosen-1-
1024x671.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:29:\"pelatihan-dosen-1-
223x146.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:27:\"pelatiha
n-dosen-1-50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:28:\"pelatihan-dosen-1-
115x75.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:30:\"pelatihan-dosen-1-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:27:\"
pelatihan-dosen-1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:27:\"pelatihan-dosen-1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:31:\"pelatihan-dosen-1-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:30:\"pelatihan-dosen-1-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:30:\"pelatihan-dosen-1-
768x1179.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1179;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:30:\"pelatihan-dosen-1-
1800x750.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:29:\"pelatihan-dosen-1-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:30:\"pelatihan-dosen-1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1425132964\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"135\";s:3:\"iso\";
s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:
11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(696,2409,'_thumbn
ail_id','2410'),(699,2409,'slide_template','default'),(700,2409,'mfn-post-
hide-content','0'),(701,2409,'mfn-post-sidebar','0'),(702,2409,'mfn-post-
sidebar2','0'),(703,2409,'mfn-post-slider','0'),(704,2409,'mfn-post-slider-
layer','0'),(705,2409,'mfn-post-hide-title','0'),(706,2409,'mfn-post-
remove-padding','0'),(707,2409,'mfn-post-hide-image','0'),(708,2409,'mfn-
post-love','0'),(709,2412,'_wp_attached_file','2016/04/foto-
broadcast.jpg'),(710,2412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:9
56;s:6:\"height\";i:728;s:4:\"file\";s:26:\"2016/04/foto-
broadcast.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:2
6:\"foto-broadcast-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"foto-
broadcast-
300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"
foto-broadcast-
768x585.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:585;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:26:\"foto-broadcast-
192x146.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"foto-
broadcast-50x38.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:38;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:24:\"foto-broadcast-
98x75.jpg\";s:5:\"width\";i:98;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
foto-broadcast-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"foto-broadcast-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:26:\"foto-broadcast-
956x500.jpg\";s:5:\"width\";i:956;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:26:\"foto-broadcast-
768x728.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:728;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:26:\"foto-broadcast-
956x480.jpg\";s:5:\"width\";i:956;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(711,2413,'_wp_attached_file','2016/04/foto-1-
oke.jpg'),(712,2413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:
6:\"height\";i:800;s:4:\"file\";s:22:\"2016/04/foto-1-
oke.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"fo
to-1-oke-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:\"foto-1-
oke-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:22:\"
foto-1-oke-
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:23:\"foto-1-
oke-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:22:\"foto-1-oke-
219x146.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:20:\"foto-1-
oke-50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"foto-1-oke-
113x75.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:20:\"
foto-1-oke-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:20:\"foto-1-oke-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:23:\"foto-1-oke-
1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:22:\"foto-1-oke-
768x800.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:800;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:23:\"foto-1-oke-
1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:22:\"foto-1-oke-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:23:\"foto-1-oke-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1397403080\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s
:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:
11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(713,2414,'_wp_att
ached_file','2016/04/gedung-
baru.jpg'),(714,2414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s
:6:\"height\";i:2749;s:4:\"file\";s:23:\"2016/04/gedung-
baru.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"g
edung-baru-
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:\"gedung-
baru-131x300.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:300;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"
gedung-baru-
768x1759.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1759;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"gedung-
baru-447x1024.jpg\";s:5:\"width\";i:447;s:6:\"height\";i:1024;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:22:\"gedung-baru-
64x146.jpg\";s:5:\"width\";i:64;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:21:\"gedung-
baru-22x50.jpg\";s:5:\"width\";i:22;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:21:\"gedung-baru-
33x75.jpg\";s:5:\"width\";i:33;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:24:\"gedung-baru-
1200x860.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:21:\"
gedung-baru-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:21:\"gedung-baru-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:25:\"gedung-baru-
1200x1000.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:24:\"gedung-baru-
1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:24:\"gedung-baru-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:24:\"gedung-baru-
1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:23:\"gedung-baru-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:24:\"gedung-baru-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1388772470\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:
\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(719,2418,'_wp_attach
ed_file','2016/04/8bad84a4-961e-4508-8a42-e22c8acadfd4-
e1461902279301.jpg'),(720,2418,'_wp_attachment_metadata','a:5:{s:5:\"width\
";i:150;s:6:\"height\";i:200;s:4:\"file\";s:63:\"2016/04/8bad84a4-961e-
4508-8a42-e22c8acadfd4-
e1461902279301.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\"
;s:48:\"8bad84a4-961e-4508-8a42-e22c8acadfd4-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:48:\"8bad84a4-961e-4508-8a42-e22c8acadfd4-
110x146.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:46:\"8bad84a4
-961e-4508-8a42-e22c8acadfd4-
38x50.jpg\";s:5:\"width\";i:38;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:46:\"8bad84a4-961e-4508-8a42-e22c8acadfd4-
56x75.jpg\";s:5:\"width\";i:56;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:46:\"
8bad84a4-961e-4508-8a42-e22c8acadfd4-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:46:\"8bad84a4-961e-4508-8a42-e22c8acadfd4-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(721,2418,'_edit_lock','1461902172:1'),(722,2419,'_wp_attached
_file','2016/04/gambar-
depan.jpg'),(723,2419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1895;
s:6:\"height\";i:910;s:4:\"file\";s:24:\"2016/04/gambar-
depan.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"
gambar-depan-
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:\"gambar-
depan-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"
gambar-depan-
768x369.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:369;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"gambar-
depan-1024x492.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:492;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:24:\"gambar-depan-
260x125.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:125;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:22:\"gambar-
depan-50x24.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:24;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:23:\"gambar-depan-
150x72.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:25:\"gambar-depan-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:22:\"
gambar-depan-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:22:\"gambar-depan-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:25:\"gambar-depan-
1280x910.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:910;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:25:\"gambar-depan-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:24:\"gambar-depan-
768x910.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:910;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:25:\"gambar-depan-
1895x750.jpg\";s:5:\"width\";i:1895;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:24:\"gambar-depan-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:25:\"gambar-depan-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(724,2420,'_wp_attached_file','2016/04/3142fd64-b4e6-4ab2-
8777-d080180d1fe5-
e1461921668342.jpg'),(725,2420,'_wp_attachment_metadata','a:5:{s:5:\"width\
";i:200;s:6:\"height\";i:200;s:4:\"file\";s:63:\"2016/04/3142fd64-b4e6-
4ab2-8777-d080180d1fe5-
e1461921668342.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\"
;s:48:\"3142fd64-b4e6-4ab2-8777-d080180d1fe5-
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:48:\"3142fd6
4-b4e6-4ab2-8777-d080180d1fe5-
300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:48:\"3142fd64-b4e6-4ab2-8777-d080180d1fe5-
146x146.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:46:\"3142fd64
-b4e6-4ab2-8777-d080180d1fe5-
50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:46:\"3142fd64-b4e6-4ab2-8777-d080180d1fe5-
75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:46:\"
3142fd64-b4e6-4ab2-8777-d080180d1fe5-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:46:\"3142fd64-b4e6-4ab2-8777-d080180d1fe5-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:48:\"3142fd64-b4e6-4ab2-8777-d080180d1fe5-
480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\
";a:0:{}}}'),(726,2418,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-
orig\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:200;s:4:\"file\";s:40:\"8b
ad84a4-961e-4508-8a42-
e22c8acadfd4.jpg\";}}'),(727,2421,'_wp_attached_file','2016/04/a1085709-
2209-4986-912a-b0b6b36ef225-
e1461922535227.jpg'),(728,2421,'_wp_attachment_metadata','a:5:{s:5:\"width\
";i:231;s:6:\"height\";i:200;s:4:\"file\";s:63:\"2016/04/a1085709-2209-
4986-912a-b0b6b36ef225-
e1461922535227.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"ap
erture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"ca
ption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0
:\"\";s:12:\"focal_length\";s:1:\"0\";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:{}}}'),(729,2422,'_wp_attached_file','2016/04/gambar-
depan-
2.jpg'),(730,2422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1383;s:6:
\"height\";i:910;s:4:\"file\";s:26:\"2016/04/gambar-depan-
2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"gamb
ar-depan-2-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"gambar-
depan-2-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"
gambar-depan-2-
768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"gambar-
depan-2-
1024x674.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:674;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:26:\"gambar-depan-2-
222x146.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"gambar-
depan-2-50x33.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:33;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:25:\"gambar-depan-2-
114x75.jpg\";s:5:\"width\";i:114;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:27:\"gambar-depan-2-
1383x860.jpg\";s:5:\"width\";i:1383;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
gambar-depan-2-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"gambar-depan-2-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:27:\"gambar-depan-2-
1280x910.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:910;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:27:\"gambar-depan-2-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:26:\"gambar-depan-2-
768x910.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:910;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:27:\"gambar-depan-2-
1383x750.jpg\";s:5:\"width\";i:1383;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:26:\"gambar-depan-2-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:27:\"gambar-depan-2-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(731,2423,'_wp_attached_file','2016/04/slogan.png'),(732,2423,
'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1589;s:6:\"height\";i:696;s
:4:\"file\";s:18:\"2016/04/slogan.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail
\";a:4:{s:4:\"file\";s:18:\"slogan-
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:18:\"slogan-
300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"sl
ogan-768x336.png\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"slogan-
1024x449.png\";s:5:\"width\";i:1024;s:6:\"height\";i:449;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:18:\"slogan-
260x114.png\";s:5:\"width\";i:260;s:6:\"height\";i:114;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:16:\"slogan-
50x22.png\";s:5:\"width\";i:50;s:6:\"height\";i:22;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:17:\"slogan-
150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:16:\"sl
ogan-85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:16:\"slogan-
80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:19:\"slogan-
1280x696.png\";s:5:\"width\";i:1280;s:6:\"height\";i:696;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:19:\"slogan-
1280x500.png\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:18:\"slogan-
768x696.png\";s:5:\"width\";i:768;s:6:\"height\";i:696;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:18:\"slogan-
960x696.png\";s:5:\"width\";i:960;s:6:\"height\";i:696;s:9:\"mime-
type\";s:9:\"image/png\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:19:\"slogan-
1200x480.png\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\
"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"
\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(733,2424,'_wp_attached_file','2016/04/slogan-
1.png'),(734,2424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\
"height\";i:183;s:4:\"file\";s:20:\"2016/04/slogan-
1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sloga
n-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slogan-1-
300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:20:\"slogan-1-
260x109.png\";s:5:\"width\";i:260;s:6:\"height\";i:109;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:18:\"slogan-1-
50x21.png\";s:5:\"width\";i:50;s:6:\"height\";i:21;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:19:\"slogan-1-
150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:18:\"sl
ogan-1-85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:18:\"slogan-1-
80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(735,2425,'_wp_attached_file','2016/04/dibuka-
pendaftaran.png'),(736,2425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i
:436;s:6:\"height\";i:183;s:4:\"file\";s:30:\"2016/04/dibuka-
pendaftaran.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:
30:\"dibuka-pendaftaran-
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:\"dibuka-
pendaftaran-
300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:30:\"dibuka-pendaftaran-
260x109.png\";s:5:\"width\";i:260;s:6:\"height\";i:109;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:28:\"dibuka-
pendaftaran-50x21.png\";s:5:\"width\";i:50;s:6:\"height\";i:21;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:29:\"dibuka-pendaftaran-
150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:28:\"di
buka-pendaftaran-
85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:28:\"dibuka-pendaftaran-
80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(737,2426,'_wp_attached_file','2016/04/welcome.png'),(738,2426,'
_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\"height\";i:137;s:4
:\"file\";s:19:\"2016/04/welcome.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\"
;a:4:{s:4:\"file\";s:19:\"welcome-
150x137.png\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-
type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"welcome-
300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:18:\"welcome-
260x82.png\";s:5:\"width\";i:260;s:6:\"height\";i:82;s:9:\"mime-
type\";s:9:\"image/png\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:17:\"welcome-
50x16.png\";s:5:\"width\";i:50;s:6:\"height\";i:16;s:9:\"mime-
type\";s:9:\"image/png\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:18:\"welcome-
150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-
type\";s:9:\"image/png\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:17:\"we
lcome-85x85.png\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:9:\"image/png\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:17:\"welcome-
80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;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:\"f
ocal_length\";s:1:\"0\";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:{}}}'),(739,2427,'_wp_attached_file','2016/04/broadcasting-
stikom.jpg'),(740,2427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000
;s:6:\"height\";i:728;s:4:\"file\";s:31:\"2016/04/broadcasting-
stikom.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\
"broadcasting-stikom-
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:\"broadca
sting-stikom-
300x109.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"
broadcasting-stikom-
768x280.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:280;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"broadcas
ting-stikom-
1024x373.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:373;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:30:\"broadcasting-stikom-
260x95.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:95;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:29:\"broadcas
ting-stikom-50x18.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:18;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:30:\"broadcasting-stikom-
150x55.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:32:\"broadcasting-stikom-
1630x728.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:728;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:29:\"
broadcasting-stikom-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:29:\"broadcasting-stikom-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:32:\"broadcasting-stikom-
1280x728.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:728;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:32:\"broadcasting-stikom-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:31:\"broadcasting-stikom-
768x728.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:728;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:32:\"broadcasting-stikom-
1920x728.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:728;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:31:\"broadcasting-stikom-
960x728.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:728;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:32:\"broadcasting-stikom-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(741,2420,'_edit_lock','1461922084:1'),(742,2420,'_wp_attachme
nt_backup_sizes','a:1:{s:9:\"full-
orig\";a:3:{s:5:\"width\";i:480;s:6:\"height\";i:480;s:4:\"file\";s:40:\"31
42fd64-b4e6-4ab2-8777-
d080180d1fe5.jpg\";}}'),(743,2420,'_edit_last','1'),(744,2421,'_edit_lock',
'1461922546:1'),(745,2421,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-
orig\";a:3:{s:5:\"width\";i:339;s:6:\"height\";i:293;s:4:\"file\";s:40:\"a1
085709-2209-4986-912a-b0b6b36ef225.jpg\";}s:18:\"full-
1461922450853\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:173;s:4:\"file\";
s:55:\"a1085709-2209-4986-912a-b0b6b36ef225-
e1461922280874.jpg\";}s:18:\"full-
1461922469291\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:173;s:4:\"file\";
s:55:\"a1085709-2209-4986-912a-b0b6b36ef225-
e1461922450853.jpg\";}s:18:\"full-
1461922519282\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:173;s:4:\"file\";
s:55:\"a1085709-2209-4986-912a-b0b6b36ef225-
e1461922469291.jpg\";}s:18:\"full-
1461922524846\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:173;s:4:\"file\";
s:55:\"a1085709-2209-4986-912a-b0b6b36ef225-
e1461922519282.jpg\";}}'),(746,2421,'_edit_last','1'),(747,2345,'_wp_trash_
meta_status','publish'),(748,2345,'_wp_trash_meta_time','1461923122'),(749,
2345,'_wp_desired_post_slug','marketing-
communications'),(750,2433,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:
0:{}}'),(751,2433,'_edit_lock','1461925137:1'),(752,2433,'_edit_last','1'),
(753,2434,'_wp_attached_file','2016/04/pengabdian-dosen-
1.jpg'),(754,2434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:
\"height\";i:1078;s:4:\"file\";s:30:\"2016/04/pengabdian-dosen-
1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"peng
abdian-dosen-1-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"pengabd
ian-dosen-1-
300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"
pengabdian-dosen-1-
768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"pengabdi
an-dosen-1-
1024x613.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:613;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:30:\"pengabdian-dosen-1-
244x146.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:28:\"pengabdi
an-dosen-1-50x30.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:30;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:29:\"pengabdian-dosen-1-
125x75.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:31:\"pengabdian-dosen-1-
1630x860.jpg\";s:5:\"width\";i:1630;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:28:\"
pengabdian-dosen-1-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:28:\"pengabdian-dosen-1-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:32:\"pengabdian-dosen-1-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:31:\"pengabdian-dosen-1-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:31:\"pengabdian-dosen-1-
768x1078.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1078;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:31:\"pengabdian-dosen-1-
1800x750.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:30:\"pengabdian-dosen-1-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:31:\"pengabdian-dosen-1-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS
600D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"145380439
3\";s:9:\"copyright\";s:4:\"02/8\";s:12:\"focal_length\";s:2:\"18\";s:3:\"i
so\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"
\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(755,2433,'_t
humbnail_id','2434'),(758,2433,'slide_template','default'),(759,2433,'mfn-
post-hide-content','0'),(760,2433,'mfn-post-sidebar','0'),(761,2433,'mfn-
post-sidebar2','0'),(762,2433,'mfn-post-slider','0'),(763,2433,'mfn-post-
slider-layer','0'),(764,2433,'mfn-post-hide-title','0'),(765,2433,'mfn-
post-remove-padding','0'),(766,2433,'mfn-post-hide-
image','0'),(767,2433,'mfn-post-
love','0'),(770,2438,'_wp_attached_file','2015/03/kumpul-di-
gedung.jpg'),(771,2438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1417
;s:6:\"height\";i:2126;s:4:\"file\";s:28:\"2015/03/kumpul-di-
gedung.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\
"kumpul-di-gedung-
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:\"kumpul-
di-gedung-
200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"
kumpul-di-gedung-
768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"kumpul-
di-gedung-
683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:27:\"kumpul-di-gedung-
97x146.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:26:\"kumpul-
di-gedung-33x50.jpg\";s:5:\"width\";i:33;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:26:\"kumpul-di-gedung-
50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:29:\"kumpul-di-gedung-
1417x860.jpg\";s:5:\"width\";i:1417;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:26:\"
kumpul-di-gedung-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:26:\"kumpul-di-gedung-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:30:\"kumpul-di-gedung-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:29:\"kumpul-di-gedung-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:29:\"kumpul-di-gedung-
768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:29:\"kumpul-di-gedung-
1417x750.jpg\";s:5:\"width\";i:1417;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:28:\"kumpul-di-gedung-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:29:\"kumpul-di-gedung-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1448732377\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";
s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(772,24
41,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(773,2441,'_edit
_lock','1461930689:1'),(774,2441,'_edit_last','1'),(775,2442,'_wp_attached_
file','2016/04/sponsor.jpg'),(776,2442,'_wp_attachment_metadata','a:5:{s:5:
\"width\";i:1018;s:6:\"height\";i:901;s:4:\"file\";s:19:\"2016/04/sponsor.j
pg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"sponsor
-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"sponsor
-300x266.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"
sponsor-768x680.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:680;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:19:\"sponsor-
165x146.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:17:\"sponsor-
50x44.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:44;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:17:\"sponsor-
85x75.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:20:\"sponsor-
1018x860.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:17:\"
sponsor-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:17:\"sponsor-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:20:\"sponsor-
1018x500.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:19:\"sponsor-
768x901.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:901;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:20:\"sponsor-
1018x750.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:19:\"sponsor-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:20:\"sponsor-
1018x480.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"2.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"HM
NOTE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"
copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.81\";s:3:\"iso\";s:3:\"1
00\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orie
ntation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(780,2441,'slide_template',
'default'),(781,2441,'mfn-post-hide-content','0'),(782,2441,'mfn-post-
sidebar','0'),(783,2441,'mfn-post-sidebar2','0'),(784,2441,'mfn-post-
slider','0'),(785,2441,'mfn-post-slider-layer','0'),(786,2441,'mfn-post-
hide-title','0'),(787,2441,'mfn-post-remove-padding','0'),(788,2441,'mfn-
post-hide-image','0'),(789,2441,'mfn-post-
love','0'),(790,2445,'_wp_attached_file','2016/04/sponsor-
2.jpg'),(791,2445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1018;s:6:
\"height\";i:721;s:4:\"file\";s:21:\"2016/04/sponsor-
2.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"spon
sor-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"sponsor
-2-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"
sponsor-2-
768x544.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:21:\"sponsor-2-
206x146.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:19:\"sponsor-
2-50x35.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:35;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:20:\"sponsor-2-
106x75.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:19:\"
sponsor-2-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:19:\"sponsor-2-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:22:\"sponsor-2-
1018x500.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:21:\"sponsor-2-
768x721.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:721;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:21:\"sponsor-2-
960x721.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:721;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:22:\"sponsor-2-
1018x480.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"2.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"HM
NOTE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"
copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.81\";s:3:\"iso\";s:3:\"1
00\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orie
ntation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(792,2441,'_thumbnail_id','
2445'),(795,2283,'_edit_last','1'),(798,2285,'_edit_lock','1461931056:1'),(
799,2285,'_edit_last','1'),(802,2285,'mfn-post-
sidebar2','0'),(803,2285,'mfn-post-remove-
padding','0'),(804,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{
}}'),(805,2448,'_edit_lock','1461934220:1'),(806,2448,'_edit_last','1'),(80
7,2449,'_wp_attached_file','2016/04/sponsor-
3.jpg'),(808,2449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1417;s:6:
\"height\";i:791;s:4:\"file\";s:21:\"2016/04/sponsor-
3.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"spon
sor-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"sponsor
-3-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"
sponsor-3-
768x429.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"sponsor-
3-1024x572.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:21:\"sponsor-3-
260x146.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:19:\"sponsor-
3-50x28.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:28;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:20:\"sponsor-3-
134x75.jpg\";s:5:\"width\";i:134;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:19:\"
sponsor-3-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:19:\"sponsor-3-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:22:\"sponsor-3-
1280x791.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:791;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:22:\"sponsor-3-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:21:\"sponsor-3-
768x791.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:791;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:22:\"sponsor-3-
1417x750.jpg\";s:5:\"width\";i:1417;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:21:\"sponsor-3-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:22:\"sponsor-3-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON
D5300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"13971600
80\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\
";s:4:\"1250\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"titl
e\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(80
9,2448,'_thumbnail_id','2449'),(812,2448,'slide_template','default'),(813,2
448,'mfn-post-hide-content','0'),(814,2448,'mfn-post-
sidebar','0'),(815,2448,'mfn-post-sidebar2','0'),(816,2448,'mfn-post-
slider','0'),(817,2448,'mfn-post-slider-layer','0'),(818,2448,'mfn-post-
hide-title','0'),(819,2448,'mfn-post-remove-padding','0'),(820,2448,'mfn-
post-hide-image','0'),(821,2448,'mfn-post-
love','0'),(823,2453,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'
),(824,2453,'_edit_lock','1461933386:1'),(825,2453,'_edit_last','1'),(829,2
453,'slide_template','default'),(830,2453,'mfn-post-hide-
content','0'),(831,2453,'mfn-post-sidebar','0'),(832,2453,'mfn-post-
sidebar2','0'),(833,2453,'mfn-post-slider','0'),(834,2453,'mfn-post-slider-
layer','0'),(835,2453,'mfn-post-hide-title','0'),(836,2453,'mfn-post-
remove-padding','0'),(837,2453,'mfn-post-hide-image','0'),(838,2453,'mfn-
post-love','0'),(839,2456,'_wp_attached_file','2016/04/kumpul-
kreatif.jpg'),(840,2456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141
7;s:6:\"height\";i:1199;s:4:\"file\";s:26:\"2016/04/kumpul-
kreatif.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:
\"kumpul-kreatif-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"kumpul-
kreatif-300x254.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"
kumpul-kreatif-
768x650.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:650;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"kumpul-
kreatif-
1024x866.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:866;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:26:\"kumpul-kreatif-
173x146.jpg\";s:5:\"width\";i:173;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"kumpul-
kreatif-50x42.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:42;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:24:\"kumpul-kreatif-
89x75.jpg\";s:5:\"width\";i:89;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"slider-
content\";a:4:{s:4:\"file\";s:27:\"kumpul-kreatif-
1417x860.jpg\";s:5:\"width\";i:1417;s:6:\"height\";i:860;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
kumpul-kreatif-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"kumpul-kreatif-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"portfolio-
mf\";a:4:{s:4:\"file\";s:28:\"kumpul-kreatif-
1280x1000.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
w\";a:4:{s:4:\"file\";s:27:\"kumpul-kreatif-
1280x500.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-mf-
t\";a:4:{s:4:\"file\";s:27:\"kumpul-kreatif-
768x1199.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1199;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"portfolio-
list\";a:4:{s:4:\"file\";s:27:\"kumpul-kreatif-
1417x750.jpg\";s:5:\"width\";i:1417;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"blog-
portfolio\";a:4:{s:4:\"file\";s:26:\"kumpul-kreatif-
960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:11:\"blog-
single\";a:4:{s:4:\"file\";s:27:\"kumpul-kreatif-
1200x480.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3
:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS
7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1448732377\
";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s
:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";
s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(841,24
53,'_thumbnail_id','2456'),(846,2457,'_wp_attached_file','2016/04/Ketua.jpg
'),(847,2457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"heig
ht\";i:233;s:4:\"file\";s:17:\"2016/04/Ketua.jpg\";s:5:\"sizes\";a:6:{s:9:\
"thumbnail\";a:4:{s:4:\"file\";s:17:\"Ketua-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:17:\"Ketua-
182x146.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:15:\"Ketua-
50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:15:\"Ketua-
94x75.jpg\";s:5:\"width\";i:94;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:15:\"
Ketua-85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:15:\"Ketua-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:15:\"Anggoro
Santoso\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_t
imestamp\";s:10:\"1461969879\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_leng
th\";s:1:\"0\";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:{}}}'
),(849,2460,'_wp_attached_file','2016/04/20160503000719-
e1462325276297.jpg'),(850,2460,'_wp_attachment_metadata','a:5:{s:5:\"width\
";i:200;s:6:\"height\";i:213;s:4:\"file\";s:41:\"2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\"
;s:26:\"20160503000719-
150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"2016050
3000719-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:26:\"20160503000719-
137x146.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:24:\"20160503
000719-47x50.jpg\";s:5:\"width\";i:47;s:6:\"height\";i:50;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:24:\"20160503000719-
71x75.jpg\";s:5:\"width\";i:71;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:24:\"
20160503000719-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:24:\"20160503000719-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:
\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\
";a:0:{}}}'),(851,2460,'_edit_lock','1462325300:2'),(852,2460,'_wp_attachme
nt_backup_sizes','a:1:{s:9:\"full-
orig\";a:3:{s:5:\"width\";i:393;s:6:\"height\";i:418;s:4:\"file\";s:18:\"20
160503000719.jpg\";}}'),(853,2460,'_edit_last','2'),(854,2462,'_vc_post_set
tings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(855,2463,'_vc_post_settings','a
:1:{s:10:\"vc_grid_id\";a:0:{}}'),(856,2463,'_edit_lock','1462952562:1'),(8
57,2463,'_edit_last','1'),(858,2463,'_wp_page_template','default'),(859,246
3,'slide_template','default'),(860,2463,'mfn-page-
items','a:1:{i:0;a:2:{s:4:\"attr\";a:15:{s:5:\"title\";s:0:\"\";s:8:\"bg_co
lor\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:11:\"bg_position\";s:22:\"no-
repeat;center
top;;\";s:12:\"bg_video_mp4\";s:0:\"\";s:12:\"bg_video_ogv\";s:0:\"\";s:11:
\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:7:\"divider\"
;s:0:\"\";s:10:\"navigation\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"class\"
;s:0:\"\";s:10:\"section_id\";s:0:\"\";s:10:\"visibility\";s:0:\"\";s:4:\"h
ide\";s:0:\"\";}s:5:\"wraps\";a:2:{i:0;a:3:{s:4:\"size\";s:3:\"1/2\";s:5:\"
items\";a:3:{i:0;a:3:{s:4:\"type\";s:13:\"our_team_list\";s:4:\"size\";s:3:
\"1/1\";s:6:\"fields\";a:14:{s:5:\"image\";s:82:\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"title\";s:4:\"Bram\";s:8:\"subtitle\";s:11:\"lor
em ipsum\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:203:\"Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Nullam congue porttitor erat, at
porttitor nulla iaculis in. Nulla vel mattis justo. Quisque vel elit
fermentum, euismod lorem a, suscipit nulla.
\";s:10:\"blockquote\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0
:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:
\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:7:\"classes\";s:0:\"\
";}}i:1;a:3:{s:4:\"type\";s:13:\"our_team_list\";s:4:\"size\";s:3:\"1/1\";s
:6:\"fields\";a:14:{s:5:\"image\";s:82:\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"title\";s:4:\"Bram\";s:8:\"subtitle\";s:11:\"lor
em ipsum\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:203:\"Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Nullam congue porttitor erat, at
porttitor nulla iaculis in. Nulla vel mattis justo. Quisque vel elit
fermentum, euismod lorem a, suscipit nulla.
\";s:10:\"blockquote\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0
:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:
\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:7:\"classes\";s:0:\"\
";}}i:2;a:3:{s:4:\"type\";s:13:\"our_team_list\";s:4:\"size\";s:3:\"1/1\";s
:6:\"fields\";a:14:{s:5:\"image\";s:82:\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"title\";s:4:\"Bram\";s:8:\"subtitle\";s:11:\"lor
em ipsum\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:203:\"Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Nullam congue porttitor erat, at
porttitor nulla iaculis in. Nulla vel mattis justo. Quisque vel elit
fermentum, euismod lorem a, suscipit nulla.
\";s:10:\"blockquote\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0
:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:
\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:7:\"classes\";s:0:\"\
";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";
s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}i:1;a:3:{s:4:\"size\";s:
3:\"1/2\";s:5:\"items\";a:3:{i:0;a:3:{s:4:\"type\";s:13:\"our_team_list\";s
:4:\"size\";s:3:\"1/1\";s:6:\"fields\";a:14:{s:5:\"image\";s:82:\"http://13
9.59.234.208/wp-content/uploads/2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"title\";s:4:\"Bram\";s:8:\"subtitle\";s:11:\"lor
em ipsum\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:203:\"Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Nullam congue porttitor erat, at
porttitor nulla iaculis in. Nulla vel mattis justo. Quisque vel elit
fermentum, euismod lorem a, suscipit nulla.
\";s:10:\"blockquote\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0
:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:
\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:7:\"classes\";s:0:\"\
";}}i:1;a:3:{s:4:\"type\";s:13:\"our_team_list\";s:4:\"size\";s:3:\"1/1\";s
:6:\"fields\";a:14:{s:5:\"image\";s:82:\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"title\";s:4:\"Bram\";s:8:\"subtitle\";s:11:\"lor
em ipsum\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:203:\"Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Nullam congue porttitor erat, at
porttitor nulla iaculis in. Nulla vel mattis justo. Quisque vel elit
fermentum, euismod lorem a, suscipit nulla.
\";s:10:\"blockquote\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0
:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:
\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:7:\"classes\";s:0:\"\
";}}i:2;a:3:{s:4:\"type\";s:13:\"our_team_list\";s:4:\"size\";s:3:\"1/1\";s
:6:\"fields\";a:14:{s:5:\"image\";s:82:\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-
e1462325276297.jpg\";s:5:\"title\";s:4:\"Bram\";s:8:\"subtitle\";s:11:\"lor
em ipsum\";s:5:\"phone\";s:0:\"\";s:7:\"content\";s:203:\"Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Nullam congue porttitor erat, at
porttitor nulla iaculis in. Nulla vel mattis justo. Quisque vel elit
fermentum, euismod lorem a, suscipit nulla.
\";s:10:\"blockquote\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"facebook\";s:0
:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:5:\"vcard\";s:0:
\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:1:\"0\";s:7:\"classes\";s:0:\"\
";}}}s:4:\"attr\";a:7:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";
s:11:\"bg_position\";s:22:\"no-repeat;center
top;;\";s:7:\"padding\";s:0:\"\";s:13:\"column_margin\";s:0:\"\";s:14:\"ver
tical_align\";s:3:\"top\";s:5:\"class\";s:0:\"\";}}}}}'),(861,2463,'mfn-
page-items-seo','<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-e1462325276297.jpg\"
alt=\"\"/>\n\nBram\n\nlorem ipsum\n\nLorem ipsum dolor sit amet,
consectetur adipiscing elit. Nullam congue porttitor erat, at porttitor
nulla iaculis in. Nulla vel mattis justo. Quisque vel elit fermentum,
euismod lorem a, suscipit nulla.\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-e1462325276297.jpg\"
alt=\"\"/>\n\nBram\n\nlorem ipsum\n\nLorem ipsum dolor sit amet,
consectetur adipiscing elit. Nullam congue porttitor erat, at porttitor
nulla iaculis in. Nulla vel mattis justo. Quisque vel elit fermentum,
euismod lorem a, suscipit nulla.\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-e1462325276297.jpg\"
alt=\"\"/>\n\nBram\n\nlorem ipsum\n\nLorem ipsum dolor sit amet,
consectetur adipiscing elit. Nullam congue porttitor erat, at porttitor
nulla iaculis in. Nulla vel mattis justo. Quisque vel elit fermentum,
euismod lorem a, suscipit nulla.\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-e1462325276297.jpg\"
alt=\"\"/>\n\nBram\n\nlorem ipsum\n\nLorem ipsum dolor sit amet,
consectetur adipiscing elit. Nullam congue porttitor erat, at porttitor
nulla iaculis in. Nulla vel mattis justo. Quisque vel elit fermentum,
euismod lorem a, suscipit nulla.\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-e1462325276297.jpg\"
alt=\"\"/>\n\nBram\n\nlorem ipsum\n\nLorem ipsum dolor sit amet,
consectetur adipiscing elit. Nullam congue porttitor erat, at porttitor
nulla iaculis in. Nulla vel mattis justo. Quisque vel elit fermentum,
euismod lorem a, suscipit nulla.\n\n<img src=\"http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719-e1462325276297.jpg\"
alt=\"\"/>\n\nBram\n\nlorem ipsum\n\nLorem ipsum dolor sit amet,
consectetur adipiscing elit. Nullam congue porttitor erat, at porttitor
nulla iaculis in. Nulla vel mattis justo. Quisque vel elit fermentum,
euismod lorem a, suscipit nulla.\n\n'),(862,2463,'mfn-post-hide-
content','0'),(863,2463,'mfn-post-sidebar','0'),(864,2463,'mfn-post-
sidebar2','0'),(865,2463,'mfn-post-slider','0'),(866,2463,'mfn-post-slider-
layer','0'),(867,2463,'mfn-post-custom-layout','0'),(868,2463,'mfn-post-
one-page','0'),(869,2463,'mfn-post-hide-title','0'),(870,2463,'mfn-post-
remove-padding','0'),(871,2463,'mfn-post-
menu','0'),(872,2463,'_wpb_vc_js_status','false'),(873,2466,'_vc_post_setti
ngs','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(874,2466,'_menu_item_type','post_
type'),(875,2466,'_menu_item_menu_item_parent','2327'),(876,2466,'_menu_ite
m_object_id','2463'),(877,2466,'_menu_item_object','page'),(878,2466,'_menu
_item_target',''),(879,2466,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(88
0,2466,'_menu_item_xfn',''),(881,2466,'_menu_item_url',''),(883,2466,'menu-
item-mfn-megamenu',''),(884,2466,'menu-item-mfn-bg',''),(885,2341,'mfn-
post-css','.infobox {\r\nmin-height:
450px;\r\n}'),(886,2468,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{
}}'),(887,2468,'_edit_lock','1462954243:1'),(888,2468,'_edit_last','1'),(88
9,2469,'_wp_attached_file','2016/05/symbolssymbols20121128133033.jpg'),(890
,2469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:
175;s:4:\"file\";s:40:\"2016/05/symbolssymbols20121128133033.jpg\";s:5:\"si
zes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"symbolssymbols2012112
8133033-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"post-
thumbnail\";a:4:{s:4:\"file\";s:40:\"symbolssymbols20121128133033-
158x146.jpg\";s:5:\"width\";i:158;s:6:\"height\";i:146;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:5:\"50x50\";a:4:{s:4:\"file\";s:38:\"symbolss
ymbols20121128133033-
50x46.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:46;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:14:\"clients-
slider\";a:4:{s:4:\"file\";s:38:\"symbolssymbols20121128133033-
81x75.jpg\";s:5:\"width\";i:81;s:6:\"height\";i:75;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:12:\"testimonials\";a:4:{s:4:\"file\";s:38:\"
symbolssymbols20121128133033-
85x85.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:85;s:9:\"mime-
type\";s:10:\"image/jpeg\";}s:9:\"blog-
navi\";a:4:{s:4:\"file\";s:38:\"symbolssymbols20121128133033-
80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-
type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1
:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:
\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\
"focal_length\";s:1:\"0\";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:{}}}'),(891,2468,'_wp_page_template','default'),(892,2468,'slide_temp
late','default'),(893,2468,'mfn-post-hide-content','0'),(894,2468,'mfn-
post-sidebar','0'),(895,2468,'mfn-post-sidebar2','0'),(896,2468,'mfn-post-
slider','0'),(897,2468,'mfn-post-slider-layer','0'),(898,2468,'mfn-post-
custom-layout','0'),(899,2468,'mfn-post-one-page','0'),(900,2468,'mfn-post-
hide-title','0'),(901,2468,'mfn-post-remove-padding','0'),(902,2468,'mfn-
post-
menu','0'),(903,2468,'_wpb_vc_js_status','false'),(904,2472,'_vc_post_setti
ngs','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(905,2472,'_menu_item_type','post_
type'),(906,2472,'_menu_item_menu_item_parent','2327'),(907,2472,'_menu_ite
m_object_id','2468'),(908,2472,'_menu_item_object','page'),(909,2472,'_menu
_item_target',''),(910,2472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(91
1,2472,'_menu_item_xfn',''),(912,2472,'_menu_item_url',''),(914,2472,'menu-
item-mfn-megamenu',''),(915,2472,'menu-item-mfn-bg',''),(916,2343,'mfn-
post-css','.infobox {\r\nmin-height: 450px;\r\n}'),(917,2339,'mfn-post-
css','.infobox {\r\nmin-height: 450px;\r\n}');
/*!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=2473 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-04-21 09:48:47','2016-04-21
09:48:47','Welcome to WordPress. This is your first post. Edit or delete
it, then start writing!','Hello world!','','trash','open','open','','hello-
world__trashed','','','2016-04-21 10:31:30','2016-04-21
10:31:30','',0,'http://139.59.234.208/?p=1',0,'post','',1),(2,1,'2016-04-21
09:48:47','2016-04-21 09:48:47','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&#241;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://139.59.234.208/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-04-21
09:48:47','2016-04-21
09:48:47','',0,'http://139.59.234.208/?page_id=2',0,'page','',0),(5,1,'2016
-04-21 09:59:49','2016-04-21 09:59:49','<p>Your Name (required)<br />\n
[text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-
email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your
Message<br />\n [textarea your-message] </p>\n\n<p>[submit
\"Send\"]</p>\nSTIKOM PROSIA \"[your-subject]\"\n[your-name]
<wordpress@139.59.234.208>\nFrom: [your-name] <[your-email]>\nSubject:
[your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent
from a contact form on STIKOM PROSIA
(http://139.59.234.208)\naris@rubyh.co\nReply-To: [your-
email]\n\n0\n0\n\nSTIKOM PROSIA \"[your-subject]\"\nSTIKOM PROSIA
<wordpress@139.59.234.208>\nMessage Body:\n[your-message]\n\n--\nThis e-
mail was sent from a contact form on STIKOM PROSIA
(http://139.59.234.208)\n[your-email]\nReply-To:
aris@rubyh.co\n\n0\n0\nThank you for your message. It has been sent.\nThere
was an error trying to send your message. Please try again later.\nOne or
more fields have an error. Please check and try again.\nThere was an error
trying to send your message. Please try again later.\nYou must accept the
terms and conditions before sending your message.\nThe field is
required.\nThe field is too long.\nThe field is too short.','Contact form
1','','publish','closed','closed','','contact-form-1','','','2016-04-21
09:59:49','2016-04-21
09:59:49','',0,'http://139.59.234.208/?post_type=wpcf7_contact_form&p=5',0,
'wpcf7_contact_form','',0),(9,1,'2015-03-02 10:42:07','2015-03-02
10:42:07','','home_university_slider_apply','','inherit','open','open','','
home_university_slider_apply','','','2015-03-02 10:42:07','2015-03-02
10:42:07','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_slider_apply.png',0,'attachment','i
mage/png',0),(10,1,'2015-03-02 10:42:26','2015-03-02
10:42:26','','home_university_slide','','inherit','open','open','','home_un
iversity_slide','','','2015-03-02 10:42:26','2015-03-02
10:42:26','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_slide.jpg',0,'attachment','image/jp
eg',0),(11,1,'2015-03-02 10:42:46','2015-03-02 10:42:46','','retina-
university','','inherit','open','open','','retina-university','','','2015-
03-02 10:42:46','2015-03-02 10:42:46','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/retina-
university.png',0,'attachment','image/png',0),(12,1,'2015-03-02
10:42:47','2015-03-02
10:42:47','','university','','inherit','open','open','','university','','',
'2015-03-02 10:42:47','2015-03-02 10:42:47','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/university.png',0,'attachment','image/png',0),(13,1
,'2015-03-02 10:46:16','2015-03-02
10:46:16','','home_university_tabber_1','','inherit','open','open','','home
_university_tabber_1','','','2015-03-02 10:46:16','2015-03-02
10:46:16','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_tabber_1.jpg',0,'attachment','image
/jpeg',0),(14,1,'2015-03-02 10:47:03','2015-03-02
10:47:03','','home_university_tabber_2','','inherit','open','open','','home
_university_tabber_2','','','2015-03-02 10:47:03','2015-03-02
10:47:03','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_tabber_2.jpg',0,'attachment','image
/jpeg',0),(15,1,'2015-03-02 10:47:03','2015-03-02
10:47:03','','home_university_tabber_3','','inherit','open','open','','home
_university_tabber_3','','','2015-03-02 10:47:03','2015-03-02
10:47:03','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_tabber_3.jpg',0,'attachment','image
/jpeg',0),(16,1,'2015-03-02 10:47:04','2015-03-02
10:47:04','','home_university_tabber_4','','inherit','open','open','','home
_university_tabber_4','','','2015-03-02 10:47:04','2015-03-02
10:47:04','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_tabber_4.jpg',0,'attachment','image
/jpeg',0),(17,1,'2015-03-02 10:47:04','2015-03-02
10:47:04','','home_university_tabber_5','','inherit','open','open','','home
_university_tabber_5','','','2015-03-02 10:47:04','2015-03-02
10:47:04','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_tabber_5.jpg',0,'attachment','image
/jpeg',0),(18,1,'2015-03-02 10:48:07','2015-03-02
10:48:07','','home_university_students','','inherit','open','open','','home
_university_students','','','2015-03-02 10:48:07','2015-03-02
10:48:07','',2324,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_students.png',0,'attachment','image
/png',0),(2283,1,'2014-05-05 09:34:27','2014-05-05 09:34:27','<h5>Praesent
consequat. Cum sociis natoque penatibus et magnis dis parturient montes,
nascetur ridiculus mus. Vestibulum massa dui sed nulla ut nulla a mi. Fusce
wisi nibh malesuada aliquet, lacus vitae mauris. Nam sit amet justo.
Vestibulum ante ipsum eleifend adipiscing elit. Mauris viverra
nunc.</h5>\r\n<big>Maecenas tincidunt. Aliquam semper. Sed eget nisl.
Aenean gravida vitae, consequat lorem fermentum rutrum. Nunc id risus.
Donec ullamcorper convallis. Donec urna quis sollicitudin mi eget ipsum
adipiscing non, iaculis scelerisque. Duis sodales at, elit. Sed dignissim
justo. Suspendisse fermentum erat. Duis consequat tortor. Mauris ut tellus
a dolor. Suspendisse nec tellus.</big>\r\n\r\n[blockquote author=\"\"
link=\"\" target=\"_blank\"]Praesent dapibus, neque id cursus faucibus,
tortor neque egestas augue, eu vulputate magna eros eu erat. Vitae
adipiscing turpis. Aenean ligula nibh, molestie id viverra a, dapibus at
dolor. In iaculis viverra neque, ac eleifend ante lobortis id. In viverra
ipsum ...[/blockquote]\r\n\r\nPellentesque suscipit urna mauris, interdum
dapibus ac, rhoncus purus, dictum a, euismod id, felis. Fusce blandit eu,
ullamcorper in, iaculis et, ultricies lobortis velit. Mauris imperdiet,
urna mi, gravida sodales. Vivamus hendrerit nulla erat ornare tortor in
vestibulum id, eleifend neque odio fermentum vel, consectetuer at,
imperdiet sapien. Donec blandit, dui eu diam. In gravida ornare. Nullam
accumsan. In hac habitasse platea dictumst. Praesent feugiat. Cum sociis
natoque.\r\n<ul class=\"list_mixed\">\r\n <li
class=\"list_check\">Suspendisse a pellentesque dui, non felis.</li>\r\n <li class=\
dolor lacus, suscipit adipiscing.</li>\r\n</ul>\r\nSed dignissim justo.
Suspendisse fermentum erat. Duis consequat tortor. Mauris ut tellus a
dolor. Suspendisse nec tellus. Donec quis lacus magna, sollicitudin id,
turpis. Mauris in velit vel sollicitudin justo. Proin vitae massa nec
cursus magna.\r\n\r\n<!--nextpage-->\r\n\r\n<big>Vestibulum ante ipsum
primis in faucibus orci luctus et ultrices posuere cubilia Curae; Praesent
lobortis lacus id quam volutpat mattis. Donec id nunc pretium, ultrices
justo vitae, condimentum urna. Mauris egestas, leo sit amet auctor sodales,
nulla enim porttitor metus, quis lacinia quam lorem id arcu. Aenean
facilisis pretium eros, non tempus neque consectetur eu. Nulla vel dolor
non nulla rutrum luctus.</big>\r\n\r\n[hr height=\"15\" style=\"zigzag\"
line=\"default\" themecolor=\"1\"]\r\n\r\nSuspendisse adipiscing. Cum
sociis natoque penatibus et interdum dui ut turpis vulputate sed, rutrum
lorem. Cras a nunc. Donec nisl ac turpis eget massa. Integer magna orci vel
neque ut lacus vestibulum ac, mattis eros. Mauris lobortis facilisis.
Phasellus pulvinar felis, nec malesuada tincidunt, risus libero, pharetra
ante pretium cursus. In hac habitasse platea dictumst. Suspendisse
fermentum suscipit mauris. Praesent consequat. Integer gravida eros ut
ante. Proin vulputate in, odio. Donec eleifend velit. Suspendisse eget
metus. Proin non mattis vel, ornare quam. Aliquam vitae mauris. Nam eu nunc
ut urna. Pellentesque fringilla gravida. Duis luctus metus et velit sit
amet nunc libero, fermentum quis, porttitor ullamcorper, risus arcu erat
volutpat. Phasellus dignissim.\r\n\r\nPellentesque suscipit urna mauris,
interdum dapibus ac, rhoncus purus, dictum a, euismod id, felis. Fusce
blandit eu, ullamcorper in, iaculis et, ultricies lobortis velit. Mauris
imperdiet, urna mi, gravida sodales. Vivamus hendrerit nulla erat ornare
tortor in vestibulum id, eleifend neque odio fermentum vel, consectetuer
at, imperdiet sapien. Donec blandit, dui eu diam. In gravida ornare. Nullam
accumsan. In hac habitasse platea dictumst. Praesent feugiat. Cum sociis
natoque.','Pellentes malesuada fames','Aenean ligula nunc, accumsan quam,
lobortis fringilla, massa. Maecenas pellentesque
dolor.','publish','open','open','','8','','','2016-04-29 11:50:15','2016-
04-29
11:50:15','',0,'http://themes.muffingroup.com/betheme/?p=2283',0,'post','',
0),(2285,1,'2014-05-04 09:36:33','2014-05-04 09:36:33','<h5>Lorem ipsum
dolor sit amet, consectetur adipiscing elit. Quo modo? Et nemo nimium
beatus est. <a href=\"#\">Verum hoc idem saepe faciamus.</a> <b>Duo Reges:
constructio interrete.</b> Suo genere perveniant ad extremum; <i>Sed ille,
ut dixi, vitiose.</i> Negat esse eam, inquit, propter se expetendam. Quid
est, quod ab ea absolvi et perfici debeat?</h5>\r\nUt pulsi recurrant?
Ratio enim nostra consentit, pugnat oratio. Plane idem, inquit, et maxima
quidem, qua fieri nulla maior potest. Diodorus, eius auditor, adiungit ad
honestatem vacuitatem doloris. Qua igitur re ab deo vincitur, si
aeternitate non vincitur?\r\n<ul>\r\n <li>Superiores tres erant, quae esse
possent, quarum est una sola defensa, eaque vehementer.</li>\r\n
<li>Istam voluptatem perpetuam quis potest praestare
sapienti?</li>\r\n <li>Quia dolori non voluptas contraria est, sed
doloris privatio.</li>\r\n</ul>\r\nNon igitur potestis voluptate omnia
dirigentes aut tueri aut retinere virtutem. Summus dolor plures dies manere
non potest? <a href=\"#\">Strato, physicum se voluit</a>, ec vero alia sunt
quaerenda contra Carneadeam illam sententiam. Bonum incolumis acies: misera
caecitas. Aliter enim nosmet ipsos nosse non possumus.\r\n<h3>Inde igitur,
inquit, ordiendum est.</h3>\r\nAt, si voluptas esset bonum, desideraret.
Aliter philosophos loqui putas oportere? <i>Ratio enim nostra consentit,
pugnat oratio.</i> <a href=\"#\">Comprehensum, quod cognitum non habet?</a>
Nam aliquando posse recte fieri dicunt nulla expectata nec quaesita
voluptate. Primum quid tu dicis breve? Eam si varietatem diceres,
intellegerem, ut etiam non dicente te intellego; Quae qui non vident, nihil
umquam magnum ac cognitione dignum amaverunt. <a href=\"#\">Praeclare hoc
quidem.</a> Quo plebiscito decreta a senatu est consuli quaestio
Cn.\r\n[blockquote author=\"\" link=\"\" target=\"_blank\"]Lorem ipsum
dolor sit amet enim. Etiam ullamcorper. Suspendisse a pellentesque dui, non
felis. Maecenas malesuada elit lectus felis, malesuada ultricies. Curabitur
et ligula. Ut molestie a, ultricies porta urna.[/blockquote]\r\nMihi vero,
inquit, placet agi subtilius et, ut ipse dixisti, pressius. Inquit, an
parum disserui non verbis Stoicos a Peripateticis, sed universa re et tota
sententia dissidere? Ego vero volo in virtute vim esse quam maximam; Si
enim ad populum me vocas, eum. Videamus animi partes, quarum est conspectus
illustrior; Et nemo nimium beatus est.','Aenean ligula mol stie
viver','Duis porttitor vel, eros. Mauris nec adipiscing elit. Nam sed porta
eget, neque. Pellentesque fringilla neque quis blandit
venenatis.','publish','open','open','','9','','','2016-04-29
11:51:24','2016-04-29
11:51:24','',0,'http://themes.muffingroup.com/betheme/?p=2285',0,'post','',
0),(2287,1,'2014-05-03 09:37:11','2014-05-03 09:37:11','<h5>Lorem ipsum
dolor sit amet neque vitae mauris. Etiam malesuada ultricies. Nullam ut
nunc odio eget volutpat a, rutrum ac, magna. Nulla facilisi. Nullam justo.
Sed leo tristique senectus et ultrices sit amet, consectetuer adipiscing
ornare. Nullam vulputate luctus. Nulla interdum
libero.</h5>\n<center>\n[video_embed video=\"100779503\" width=\"700\"
height=\"400\"]</center>\n[divider height=\"30\"]\nPraesent odio ac turpis
luctus eu, ornare varius, leo. Suspendisse sed metus. Class aptent taciti
sociosqu ad litora torquent per inceptos hymenaeos. Sed sed est. Sed
venenatis. Morbi tincidunt. Nullam justo. Vestibulum ut justo a odio. Etiam
et pede eget metus nonummy at, rhoncus dolor in interdum pellentesque quis,
lacinia aliquet. In mauris sit amet leo. Aliquam erat consectetuer
vestibulum varius. Cras ut orci at lorem odio tellus hendrerit sed, congue
fringilla.\n\n[divider height=\"30\" style=\"dots\" line=\"default\"
themecolor=\"1\"]\n\nClass aptent taciti sociosqu ad litora torquent per
inceptos hymenaeos. Maecenas vehicula, dui nulla, egestas sodales, augue
commodo nec, ullamcorper ligula lorem odio sit amet, vestibulum wisi
ultricies eu, magna. Fusce aliquet elit, gravida tellus tristique eget,
porta eget, eros. In hac habitasse platea dictumst. Proin cursus magna. Sed
placerat. Mauris vel risus. Nunc accumsan dictum, laoreet viverra. Cras
tempus purus at risus auctor tincidunt. Sed sed tortor. In venenatis
consequat. Donec iaculis. Curabitur est pretium wisi, sed leo. Sed
tincidunt risus neque ultrices consectetuer. Etiam mollis ut, dolor.
Maecenas.','Vitae adipiscing turpis
aenean','','publish','open','open','','10','','','2014-05-03
09:37:11','2014-05-03
09:37:11','',0,'http://themes.muffingroup.com/betheme/?p=2287',0,'post','',
0),(2289,1,'2014-05-02 09:38:31','2014-05-02 09:38:31','<p
class=\"big\">Lorem ipsum dolor sit amet neque vitae mauris. Etiam
malesuada ultricies. Nullam ut nunc odio eget volutpat a, rutrum ac, magna.
Nulla facilisi. Nullam justo. Sed leo tristique senectus et ultrices sit
amet, consectetuer adipiscing ornare. Nullam vulputate luctus. Nulla
interdum libero. Maecenas tincidunt. Pellentesque dolor. In urna.
Suspendisse sollicitudin. Vestibulum tempus purus fermentum imperdiet
tincidunt, risus pede, luctus laoreet. Aenean ac eros quis eleifend congue.
Nam dolor eget velit. Suspendisse at</p>\n[one_third][quick_fact
heading=\"\" number=\"35\" title=\"countries\" animate=\"\"]Donec
vestibulum justo a diam ultricies pel lentesque. Quisque mattis diam vel
lac.[/quick_fact][/one_third][one_third][quick_fact heading=\"\"
number=\"142\" title=\"articles\" animate=\"\"]Donec vestibulum justo a
diam ultricies pel lentesque. Quisque mattis diam vel
lac.[/quick_fact][/one_third][one_third][quick_fact heading=\"\"
number=\"89\" title=\"projects\" animate=\"\"]Donec vestibulum justo a diam
ultricies pel lentesque. Quisque mattis diam vel
lac.[/quick_fact][/one_third]\n\n[divider height=\"30\" style=\"dots\"
line=\"default\" themecolor=\"1\"]\n\nPraesent odio ac turpis luctus eu,
ornare varius, leo. Suspendisse sed metus. Class aptent taciti sociosqu ad
litora torquent per inceptos hymenaeos. Sed sed est. Sed venenatis. Morbi
tincidunt. Nullam justo. Vestibulum ut justo a odio. Etiam et pede eget
metus nonummy at, rhoncus dolor in interdum pellentesque quis, lacinia
aliquet. In mauris sit amet leo. Aliquam erat consectetuer vestibulum
varius. Cras ut orci at lorem odio tellus hendrerit sed, congue
fringilla.\n\nClass aptent taciti sociosqu ad litora torquent per inceptos
hymenaeos. Maecenas vehicula, dui nulla, egestas sodales, augue commodo
nec, ullamcorper ligula lorem odio sit amet, vestibulum wisi ultricies eu,
magna. Fusce aliquet elit, gravida tellus tristique eget, porta eget, eros.
In hac habitasse platea dictumst. Proin cursus magna. Sed placerat. Mauris
vel risus. Nunc accumsan dictum, laoreet viverra. Cras tempus purus at
risus auctor tincidunt. Sed sed tortor. In venenatis consequat. Donec
iaculis. Curabitur est pretium wisi, sed leo. Sed tincidunt risus neque
ultrices consectetuer. Etiam mollis ut, dolor. Maecenas.','Donec tempus
urna risus','Donec tempus, urna risus nec mauris. Lorem ipsum primis in
nulla ac arcu vitae augue. Vivamus nec elit a dui. Morbi id leo nec dui.
Maecenas.','publish','open','open','','11','','','2014-05-02
09:38:31','2014-05-02
09:38:31','',0,'http://themes.muffingroup.com/betheme/?p=2289',0,'post','',
0),(2295,1,'2015-03-02 11:16:06','2015-03-02
11:16:06','','home_university_blog_1','','inherit','open','open','','home_u
niversity_blog_1','','','2015-03-02 11:16:06','2015-03-02
11:16:06','',2283,'http://139.59.234.208/wp-
content/uploads/2014/05/home_university_blog_1.jpg',0,'attachment','image/j
peg',0),(2296,1,'2015-03-02 11:20:50','2015-03-02
11:20:50','','home_university_blog_2','','inherit','open','open','','home_u
niversity_blog_2','','','2015-03-02 11:20:50','2015-03-02
11:20:50','',2285,'http://139.59.234.208/wp-
content/uploads/2014/05/home_university_blog_2.jpg',0,'attachment','image/j
peg',0),(2297,1,'2015-03-02 11:21:09','2015-03-02
11:21:09','','home_university_blog_3','','inherit','open','open','','home_u
niversity_blog_3','','','2015-03-02 11:21:09','2015-03-02
11:21:09','',2287,'http://139.59.234.208/wp-
content/uploads/2014/05/home_university_blog_3.jpg',0,'attachment','image/j
peg',0),(2298,1,'2015-03-02 11:21:27','2015-03-02
11:21:27','','home_university_blog_4','','inherit','open','open','','home_u
niversity_blog_4','','','2015-03-02 11:21:27','2015-03-02
11:21:27','',2289,'http://139.59.234.208/wp-
content/uploads/2014/05/home_university_blog_4.jpg',0,'attachment','image/j
peg',0),(2307,1,'2015-03-02 11:46:04','2015-03-02 11:46:04','','Tentang
Kami','','publish','open','open','','tentang-kami','','','2016-05-12
07:56:36','2016-05-12
07:56:36','',0,'http://themes.muffingroup.com/be/university/?page_id=2307',
0,'page','',0),(2309,1,'2015-03-02 11:46:14','2015-03-02 11:46:14','','News
&amp; Events','','publish','open','open','','news-events','','','2015-03-02
11:46:14','2015-03-02
11:46:14','',0,'http://themes.muffingroup.com/be/university/?page_id=2309',
0,'page','',0),(2311,1,'2015-03-02 11:46:37','2015-03-02
11:46:37','','Program','','publish','open','open','','program','','','2016-
04-29 09:09:52','2016-04-29
09:09:52','',0,'http://themes.muffingroup.com/be/university/?page_id=2311',
0,'page','',0),(2313,1,'2015-03-02 11:46:46','2015-03-02
11:46:46','','Hubungi Kami','','publish','open','open','','hubungi-
kami','','','2016-04-22 05:05:27','2016-04-22
05:05:27','',0,'http://themes.muffingroup.com/be/university/?page_id=2313',
0,'page','',0),(2319,1,'2015-03-03 11:16:52','2015-03-03 11:16:52','<div
class=\"column one-second\">[text* your-name placeholder \"Your name\"]
</div>\n<div class=\"column one-second\">[email* your-email placeholder
\"Your e-mail\"] </div>\n<div class=\"column one\">[text your-subject
placeholder \"Subject\"] </div>\n<div class=\"column one\">[textarea your-
message placeholder \"Message\"]</div>\n<div class=\"column one\">[submit
\"SEND A MESSAGE\"]</div>\n[your-subject]\n[your-name]
<wordpress@themes.muffingroup.com>\nFrom: [your-name] <[your-
email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--
\nThis e-mail was sent from a contact form on BeUniversity - BeTheme
(http://themes.muffingroup.com/be/university)\nnoreply@gmail.com\nReply-To:
[your-email]\n\n\n\n\n[your-subject]\nBeUniversity - BeTheme
<wordpress@themes.muffingroup.com>\nMessage Body:\n[your-message]\n\n--
\nThis e-mail was sent from a contact form on BeUniversity - BeTheme
(http://themes.muffingroup.com/be/university)\n[your-email]\nReply-To:
noreply@gmail.com\n\n\n\nYour message was sent successfully.
Thanks.\nFailed to send your message. Please try later or contact the
administrator by another method.\nValidation errors occurred. Please
confirm the fields and submit it again.\nFailed to send your message.
Please try later or contact the administrator by another method.\nPlease
accept the terms to proceed.\nPlease fill in the required field.\nThis
input is too long.\nThis input is too short.\nYour entered code is
incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis
number is too large.\nEmail address seems invalid.\nURL seems
invalid.\nTelephone number seems invalid.\nYour answer is not
correct.\nDate format seems invalid.\nThis date is too early.\nThis date is
too late.\nFailed to upload file.\nThis file type is not allowed.\nThis
file is too large.\nFailed to upload file. Error occurred.','Contact
page','','publish','open','open','','contact-page','','','2015-03-03
11:16:52','2015-03-03
11:16:52','',0,'http://themes.muffingroup.com/be/university/?post_type=wpcf
7_contact_form&#038;p=2319',0,'wpcf7_contact_form','',0),(2320,1,'2015-03-
03 11:18:23','2015-03-03
11:18:23','','our_team_1','','inherit','open','open','','our_team_1','','',
'2015-03-03 11:18:23','2015-03-03
11:18:23','',2313,'http://139.59.234.208/wp-
content/uploads/2015/03/our_team_1.jpg',0,'attachment','image/jpeg',0),(232
1,1,'2015-03-03 11:21:20','2015-03-03
11:21:20','','home_university_pin','','inherit','open','open','','home_univ
ersity_pin','','','2015-03-03 11:21:20','2015-03-03
11:21:20','',2313,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_pin.png',0,'attachment','image/png'
,0),(2322,1,'2015-03-03 11:32:43','2015-03-03
11:32:43','','home_business_signature','','inherit','open','open','','home_
business_signature','','','2015-03-03 11:32:43','2015-03-03
11:32:43','',0,'http://139.59.234.208/wp-
content/uploads/2015/03/home_business_signature.png',0,'attachment','image/
png',0),(2323,1,'2015-03-03 11:44:14','2015-03-03
11:44:14','','home_university_about_photo','','inherit','open','open','','h
ome_university_about_photo','','','2015-03-03 11:44:14','2015-03-03
11:44:14','',2307,'http://139.59.234.208/wp-
content/uploads/2015/03/home_university_about_photo.jpg',0,'attachment','im
age/jpeg',0),(2324,1,'2015-03-02 07:41:42','2015-03-02
07:41:42','','Home','','publish','open','open','','sample-page-
2','','','2016-05-13 03:08:34','2016-05-13
03:08:34','',0,'http://themes.muffingroup.com/be/university/?page_id=2',0,'
page','',0),(2325,1,'2016-04-21 10:15:46','2016-04-21 10:15:46','
','','','publish','closed','closed','','2325','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/2016/04/21/',7,'nav_menu_item','',0),
(2326,1,'2016-04-21 10:15:46','2016-04-21 10:15:46',' ','News &
Events','','publish','closed','closed','','2326','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/2016/04/21/',11,'nav_menu_item','',0)
,(2327,1,'2016-04-21 10:15:46','2016-04-21 10:15:46','
','','','publish','closed','closed','','2327','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/2016/04/21/',2,'nav_menu_item','',0),
(2328,1,'2016-04-21 10:15:46','2016-04-21 10:15:46','
','','','publish','closed','closed','','2328','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/2016/04/21/2328/',1,'nav_menu_item','
',0),(2329,1,'2016-04-21 10:15:46','2016-04-21 10:15:46','
','','','publish','closed','closed','','2329','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/2016/04/21/2329/',14,'nav_menu_item',
'',0),(2330,1,'2016-04-21 10:30:44','2016-04-21
10:30:44','','home_university_slide.jpg','','inherit','closed','closed','',
'home-university-slide-jpg','','','2016-04-21 10:30:44','2016-04-21
10:30:44','',0,'http://139.59.234.208/wp-
content/uploads/revslider/university/home_university_slide.jpg',0,'attachme
nt','image/jpeg',0),(2331,1,'2016-04-21 10:30:46','2016-04-21
10:30:46','','home_university_slider_apply.png','','inherit','closed','clos
ed','','home-university-slider-apply-png','','','2016-04-21
10:30:46','2016-04-21 10:30:46','',0,'http://139.59.234.208/wp-
content/uploads/revslider/university/home_university_slider_apply.png',0,'a
ttachment','image/png',0),(2332,1,'2016-04-21 10:31:30','2016-04-21
10:31:30','Welcome to WordPress. This is your first post. Edit or delete
it, then start writing!','Hello
world!','','inherit','closed','closed','','1-revision-v1','','','2016-04-21
10:31:30','2016-04-21 10:31:30','',1,'http://139.59.234.208/2016/04/21/1-
revision-v1/',0,'revision','',0),(2333,1,'2016-04-21 10:32:38','2016-04-21
10:32:38','','Home','','inherit','closed','closed','','2324-revision-
v1','','','2016-04-21 10:32:38','2016-04-21
10:32:38','',2324,'http://139.59.234.208/2016/04/21/2324-revision-
v1/',0,'revision','',0),(2335,1,'2016-04-22 01:30:29','2016-04-22
01:30:29','','logo-stikom','','inherit','open','closed','','logo-
stikom','','','2016-04-22 01:30:29','2016-04-22
01:30:29','',0,'http://139.59.234.208/wp-content/uploads/2016/04/logo-
stikom.jpg',0,'attachment','image/jpeg',0),(2336,1,'2016-04-22
01:31:03','2016-04-22 01:31:03','','logo-
retina','','inherit','open','closed','','logo-retina','','','2016-04-22
01:31:03','2016-04-22 01:31:03','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/logo-
retina.jpg',0,'attachment','image/jpeg',0),(2337,1,'2016-04-22
02:25:11','2016-04-22 02:25:11','','Tentang
Kami','','inherit','closed','closed','','2307-revision-v1','','','2016-04-
22 02:25:11','2016-04-22
02:25:11','',2307,'http://139.59.234.208/2016/04/22/2307-revision-
v1/',0,'revision','',0),(2339,1,'2016-04-22 02:53:15','2016-04-22
02:53:15','','Public Relations','','publish','open','open','','public-
relations','','','2016-05-12 07:43:07','2016-05-12
07:43:07','',0,'http://139.59.234.208/?page_id=2339',0,'page','',0),(2340,1
,'2016-04-22 02:53:15','2016-04-22 02:53:15','','Public
Relations','','inherit','closed','closed','','2339-revision-
v1','','','2016-04-22 02:53:15','2016-04-22
02:53:15','',2339,'http://139.59.234.208/2016/04/22/2339-revision-
v1/',0,'revision','',0),(2341,1,'2016-04-22 04:07:24','2016-04-22
04:07:24','','Advertising','','publish','open','open','','advertising','','
','2016-05-11 08:00:57','2016-05-11
08:00:57','',0,'http://139.59.234.208/?page_id=2341',0,'page','',0),(2342,1
,'2016-04-22 04:07:24','2016-04-22
04:07:24','','Advertising','','inherit','closed','closed','','2341-
revision-v1','','','2016-04-22 04:07:24','2016-04-22
04:07:24','',2341,'http://139.59.234.208/2016/04/22/2341-revision-
v1/',0,'revision','',0),(2343,1,'2016-04-22 04:10:19','2016-04-22
04:10:19','','Broadcasting','','publish','open','open','','broadcasting',''
,'','2016-05-12 07:42:31','2016-05-12
07:42:31','',0,'http://139.59.234.208/?page_id=2343',0,'page','',0),(2344,1
,'2016-04-22 04:10:19','2016-04-22
04:10:19','','Broadcasting','','inherit','closed','closed','','2343-
revision-v1','','','2016-04-22 04:10:19','2016-04-22
04:10:19','',2343,'http://139.59.234.208/2016/04/22/2343-revision-
v1/',0,'revision','',0),(2345,1,'2016-04-22 04:13:44','2016-04-22
04:13:44','','Marketing
Communications','','trash','open','open','','marketing-
communications__trashed','','','2016-04-29 09:45:22','2016-04-29
09:45:22','',0,'http://139.59.234.208/?page_id=2345',0,'page','',0),(2346,1
,'2016-04-22 04:13:44','2016-04-22 04:13:44','','Marketing
Communications','','inherit','closed','closed','','2345-revision-
v1','','','2016-04-22 04:13:44','2016-04-22
04:13:44','',2345,'http://139.59.234.208/2016/04/22/2345-revision-
v1/',0,'revision','',0),(2348,1,'2016-04-22 04:14:50','2016-04-22
04:14:50',' ','','','publish','closed','closed','','2348','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2348',10,'nav_menu_item','',0),(23
49,1,'2016-04-22 04:14:50','2016-04-22 04:14:50','
','','','publish','closed','closed','','2349','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2349',8,'nav_menu_item','',0),(235
0,1,'2016-04-22 04:14:50','2016-04-22 04:14:50','
','','','publish','closed','closed','','2350','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2350',9,'nav_menu_item','',0),(235
2,1,'2016-04-22 04:17:01','2016-04-22
04:17:01','','Program','','inherit','closed','closed','','2311-revision-
v1','','','2016-04-22 04:17:01','2016-04-22
04:17:01','',2311,'http://139.59.234.208/2016/04/22/2311-revision-
v1/',0,'revision','',0),(2353,1,'2016-04-22 04:57:00','2016-04-22
04:57:00','','Contact','','inherit','closed','closed','','2313-revision-
v1','','','2016-04-22 04:57:00','2016-04-22
04:57:00','',2313,'http://139.59.234.208/2016/04/22/2313-revision-
v1/',0,'revision','',0),(2354,1,'2016-04-22 04:58:05','2016-04-22
04:58:05','','Hubungi Kami','','inherit','closed','closed','','2313-
autosave-v1','','','2016-04-22 04:58:05','2016-04-22
04:58:05','',2313,'http://139.59.234.208/2016/04/22/2313-autosave-
v1/',0,'revision','',0),(2355,1,'2016-04-22 05:05:27','2016-04-22
05:05:27','','Hubungi Kami','','inherit','closed','closed','','2313-
revision-v1','','','2016-04-22 05:05:27','2016-04-22
05:05:27','',2313,'http://139.59.234.208/2016/04/22/2313-revision-
v1/',0,'revision','',0),(2356,1,'2016-04-22 05:20:35','2016-04-22
05:20:35','','Pendahuluan','','publish','open','open','','pendahuluan','','
','2016-04-29 15:50:43','2016-04-29
15:50:43','',0,'http://139.59.234.208/?page_id=2356',0,'page','',0),(2357,1
,'2016-04-22 05:20:35','2016-04-22
05:20:35','','Pendahuluan','','inherit','closed','closed','','2356-
revision-v1','','','2016-04-22 05:20:35','2016-04-22
05:20:35','',2356,'http://139.59.234.208/2016/04/22/2356-revision-
v1/',0,'revision','',0),(2358,1,'2016-04-22 05:21:50','2016-04-22
05:21:50',' ','','','publish','closed','closed','','2358','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2358',3,'nav_menu_item','',0),(236
0,1,'2016-04-22 06:51:53','2016-04-22 06:51:53','','Job
Vacancies','','publish','closed','closed','','job-vacancies','','','2016-
04-22 11:32:37','2016-04-22
11:32:37','',0,'http://139.59.234.208/?page_id=2360',0,'page','',0),(2361,1
,'2016-04-22 06:51:53','2016-04-22 06:51:53','','Job
Vacancies','','inherit','closed','closed','','2360-revision-
v1','','','2016-04-22 06:51:53','2016-04-22
06:51:53','',2360,'http://139.59.234.208/2016/04/22/2360-revision-
v1/',0,'revision','',0),(2362,1,'2016-04-22 10:43:55','2016-04-22
10:43:55','[catlist name=job]','Job
Vacancies','','inherit','closed','closed','','2360-autosave-
v1','','','2016-04-22 10:43:55','2016-04-22
10:43:55','',2360,'http://139.59.234.208/2016/04/22/2360-autosave-
v1/',0,'revision','',0),(2363,1,'2016-04-22 10:44:04','2016-04-22
10:44:04','[catlist name=job_vacancy]','Job
Vacancies','','inherit','closed','closed','','2360-revision-
v1','','','2016-04-22 10:44:04','2016-04-22
10:44:04','',2360,'http://139.59.234.208/2016/04/22/2360-revision-
v1/',0,'revision','',0),(2364,1,'2016-04-22 10:45:06','2016-04-22
10:45:06','Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Pellentesque congue nunc quis justo rhoncus, quis dapibus tellus auctor.
Pellentesque eget ultrices libero. Quisque vulputate eleifend arcu ut
venenatis. Etiam euismod sollicitudin tortor ut luctus. Vestibulum ante
ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;
Nulla ultrices facilisis ultricies. In id nisi a urna hendrerit semper in
in odio. Donec efficitur, orci non tristique tristique, arcu arcu
vestibulum quam, vitae placerat risus odio sit amet magna. Maecenas sed
justo vel felis scelerisque vehicula. Nam sed consectetur odio, id
elementum orci. Duis laoreet at est in ornare. Curabitur in leo non magna
pretium fermentum. Mauris ultrices a arcu lacinia aliquam. Donec vitae eros
augue. Cras iaculis suscipit blandit.\r\n\r\nMauris lacinia odio non dictum
vulputate. Cras cursus sit amet nunc eu efficitur. Nullam eros ante, porta
a sapien quis, ornare rutrum felis. Praesent consequat leo purus, sed
laoreet est eleifend eu. Aenean eleifend sapien ac dictum varius. Quisque
nec purus nec velit feugiat pretium. Donec metus eros, dignissim nec sapien
id, aliquet laoreet mauris. Maecenas sed volutpat nunc. Proin eu tempus
ante. Donec venenatis placerat metus, eu commodo urna varius at. Ut ac arcu
dolor.','Senior Account Executive','','publish','open','open','','senior-
account-executive','','','2016-04-22 10:45:06','2016-04-22
10:45:06','',0,'http://139.59.234.208/?p=2364',0,'post','',0),(2365,1,'2016
-04-22 10:45:06','2016-04-22 10:45:06','Lorem ipsum dolor sit amet,
consectetur adipiscing elit. Pellentesque congue nunc quis justo rhoncus,
quis dapibus tellus auctor. Pellentesque eget ultrices libero. Quisque
vulputate eleifend arcu ut venenatis. Etiam euismod sollicitudin tortor ut
luctus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Nulla ultrices facilisis ultricies. In id nisi a
urna hendrerit semper in in odio. Donec efficitur, orci non tristique
tristique, arcu arcu vestibulum quam, vitae placerat risus odio sit amet
magna. Maecenas sed justo vel felis scelerisque vehicula. Nam sed
consectetur odio, id elementum orci. Duis laoreet at est in ornare.
Curabitur in leo non magna pretium fermentum. Mauris ultrices a arcu
lacinia aliquam. Donec vitae eros augue. Cras iaculis suscipit
blandit.\r\n\r\nMauris lacinia odio non dictum vulputate. Cras cursus sit
amet nunc eu efficitur. Nullam eros ante, porta a sapien quis, ornare
rutrum felis. Praesent consequat leo purus, sed laoreet est eleifend eu.
Aenean eleifend sapien ac dictum varius. Quisque nec purus nec velit
feugiat pretium. Donec metus eros, dignissim nec sapien id, aliquet laoreet
mauris. Maecenas sed volutpat nunc. Proin eu tempus ante. Donec venenatis
placerat metus, eu commodo urna varius at. Ut ac arcu dolor.','Senior
Account Executive','','inherit','closed','closed','','2364-revision-
v1','','','2016-04-22 10:45:06','2016-04-22
10:45:06','',2364,'http://139.59.234.208/2016/04/22/2364-revision-
v1/',0,'revision','',0),(2366,1,'2016-04-22 11:05:21','2016-04-22
11:05:21','','Job Vacancies','','inherit','closed','closed','','2360-
revision-v1','','','2016-04-22 11:05:21','2016-04-22
11:05:21','',2360,'http://139.59.234.208/2016/04/22/2360-revision-
v1/',0,'revision','',0),(2367,1,'2016-04-22 11:25:00','2016-04-22
11:25:00','','Alumni','','publish','closed','closed','','alumni','','','201
6-05-04 01:29:05','2016-05-04
01:29:05','',0,'http://139.59.234.208/?page_id=2367',0,'page','',0),(2368,1
,'2016-04-22 11:25:00','2016-04-22
11:25:00','','Alumni','','inherit','closed','closed','','2367-revision-
v1','','','2016-04-22 11:25:00','2016-04-22
11:25:00','',2367,'http://139.59.234.208/2016/04/22/2367-revision-
v1/',0,'revision','',0),(2369,1,'2016-04-22 11:29:21','2016-04-22
11:29:21',' ','','','publish','closed','closed','','2369','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2369',12,'nav_menu_item','',0),(23
70,1,'2016-04-22 11:29:21','2016-04-22 11:29:21','
','','','publish','closed','closed','','2370','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2370',13,'nav_menu_item','',0),(23
71,1,'2016-04-22 11:30:03','2016-04-22 11:30:03','Lorem ipsum dolor sit
amet, consectetur adipiscing elit. Pellentesque congue nunc quis justo
rhoncus, quis dapibus tellus auctor. Pellentesque eget ultrices libero.
Quisque vulputate eleifend arcu ut venenatis. Etiam euismod sollicitudin
tortor ut luctus. Vestibulum ante ipsum primis in faucibus orci luctus et
ultrices posuere cubilia Curae; Nulla ultrices facilisis ultricies. In id
nisi a urna hendrerit semper in in odio. Donec efficitur, orci non
tristique tristique, arcu arcu vestibulum quam, vitae placerat risus odio
sit amet magna. Maecenas sed justo vel felis scelerisque vehicula. Nam sed
consectetur odio, id elementum orci. Duis laoreet at est in ornare.
Curabitur in leo non magna pretium fermentum. Mauris ultrices a arcu
lacinia aliquam. Donec vitae eros augue. Cras iaculis suscipit
blandit.','Account Manager','','publish','open','open','','account-
manager','','','2016-04-22 11:30:03','2016-04-22
11:30:03','',0,'http://139.59.234.208/?p=2371',0,'post','',0),(2372,1,'2016
-04-22 11:30:03','2016-04-22 11:30:03','Lorem ipsum dolor sit amet,
consectetur adipiscing elit. Pellentesque congue nunc quis justo rhoncus,
quis dapibus tellus auctor. Pellentesque eget ultrices libero. Quisque
vulputate eleifend arcu ut venenatis. Etiam euismod sollicitudin tortor ut
luctus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Nulla ultrices facilisis ultricies. In id nisi a
urna hendrerit semper in in odio. Donec efficitur, orci non tristique
tristique, arcu arcu vestibulum quam, vitae placerat risus odio sit amet
magna. Maecenas sed justo vel felis scelerisque vehicula. Nam sed
consectetur odio, id elementum orci. Duis laoreet at est in ornare.
Curabitur in leo non magna pretium fermentum. Mauris ultrices a arcu
lacinia aliquam. Donec vitae eros augue. Cras iaculis suscipit
blandit.','Account Manager','','inherit','closed','closed','','2371-
revision-v1','','','2016-04-22 11:30:03','2016-04-22
11:30:03','',2371,'http://139.59.234.208/2016/04/22/2371-revision-
v1/',0,'revision','',0),(2373,1,'2016-04-22 11:33:56','2016-04-22
11:33:56','','Our Research','','publish','closed','closed','','our-
research','','','2016-04-22 11:36:29','2016-04-22
11:36:29','',0,'http://139.59.234.208/?page_id=2373',0,'page','',0),(2374,1
,'2016-04-22 11:33:56','2016-04-22 11:33:56','','Our
Research','','inherit','closed','closed','','2373-revision-v1','','','2016-
04-22 11:33:56','2016-04-22
11:33:56','',2373,'http://139.59.234.208/2016/04/22/2373-revision-
v1/',0,'revision','',0),(2375,1,'2016-04-22 11:36:12','2016-04-22
11:36:12','Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Pellentesque congue nunc quis justo rhoncus, quis dapibus tellus auctor.
Pellentesque eget ultrices libero. Quisque vulputate eleifend arcu ut
venenatis. Etiam euismod sollicitudin tortor ut luctus. Vestibulum ante
ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;
Nulla ultrices facilisis ultricies. In id nisi a urna hendrerit semper in
in odio. Donec efficitur, orci non tristique tristique, arcu arcu
vestibulum quam, vitae placerat risus odio sit amet magna. Maecenas sed
justo vel felis scelerisque vehicula. Nam sed consectetur odio, id
elementum orci. Duis laoreet at est in ornare. Curabitur in leo non magna
pretium fermentum. Mauris ultrices a arcu lacinia aliquam. Donec vitae eros
augue. Cras iaculis suscipit blandit.','Research
A','','publish','open','open','','research-a','','','2016-04-22
11:36:12','2016-04-22
11:36:12','',0,'http://139.59.234.208/?p=2375',0,'post','',0),(2376,1,'2016
-04-22 11:36:12','2016-04-22 11:36:12','Lorem ipsum dolor sit amet,
consectetur adipiscing elit. Pellentesque congue nunc quis justo rhoncus,
quis dapibus tellus auctor. Pellentesque eget ultrices libero. Quisque
vulputate eleifend arcu ut venenatis. Etiam euismod sollicitudin tortor ut
luctus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Nulla ultrices facilisis ultricies. In id nisi a
urna hendrerit semper in in odio. Donec efficitur, orci non tristique
tristique, arcu arcu vestibulum quam, vitae placerat risus odio sit amet
magna. Maecenas sed justo vel felis scelerisque vehicula. Nam sed
consectetur odio, id elementum orci. Duis laoreet at est in ornare.
Curabitur in leo non magna pretium fermentum. Mauris ultrices a arcu
lacinia aliquam. Donec vitae eros augue. Cras iaculis suscipit
blandit.','Research A','','inherit','closed','closed','','2375-revision-
v1','','','2016-04-22 11:36:12','2016-04-22
11:36:12','',2375,'http://139.59.234.208/2016/04/22/2375-revision-
v1/',0,'revision','',0),(2377,1,'2016-04-22 11:37:18','2016-04-22
11:37:18','Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Pellentesque congue nunc quis justo rhoncus, quis dapibus tellus auctor.
Pellentesque eget ultrices libero. Quisque vulputate eleifend arcu ut
venenatis. Etiam euismod sollicitudin tortor ut luctus. Vestibulum ante
ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;
Nulla ultrices facilisis ultricies. In id nisi a urna hendrerit semper in
in odio. Donec efficitur, orci non tristique tristique, arcu arcu
vestibulum quam, vitae placerat risus odio sit amet magna. Maecenas sed
justo vel felis scelerisque vehicula. Nam sed consectetur odio, id
elementum orci. Duis laoreet at est in ornare. Curabitur in leo non magna
pretium fermentum. Mauris ultrices a arcu lacinia aliquam. Donec vitae eros
augue. Cras iaculis suscipit blandit.','Research
B','','publish','open','open','','research-b','','','2016-04-22
11:37:18','2016-04-22
11:37:18','',0,'http://139.59.234.208/?p=2377',0,'post','',0),(2378,1,'2016
-04-22 11:37:18','2016-04-22 11:37:18','Lorem ipsum dolor sit amet,
consectetur adipiscing elit. Pellentesque congue nunc quis justo rhoncus,
quis dapibus tellus auctor. Pellentesque eget ultrices libero. Quisque
vulputate eleifend arcu ut venenatis. Etiam euismod sollicitudin tortor ut
luctus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Nulla ultrices facilisis ultricies. In id nisi a
urna hendrerit semper in in odio. Donec efficitur, orci non tristique
tristique, arcu arcu vestibulum quam, vitae placerat risus odio sit amet
magna. Maecenas sed justo vel felis scelerisque vehicula. Nam sed
consectetur odio, id elementum orci. Duis laoreet at est in ornare.
Curabitur in leo non magna pretium fermentum. Mauris ultrices a arcu
lacinia aliquam. Donec vitae eros augue. Cras iaculis suscipit
blandit.','Research B','','inherit','closed','closed','','2377-revision-
v1','','','2016-04-22 11:37:18','2016-04-22
11:37:18','',2377,'http://139.59.234.208/2016/04/22/2377-revision-
v1/',0,'revision','',0),(2379,1,'2016-04-22 11:38:10','2016-04-22
11:38:10',' ','','','publish','closed','closed','','2379','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2379',6,'nav_menu_item','',0),(238
1,1,'2016-04-25 05:45:50','2016-04-25 05:45:50','','favicon-
32x32','','inherit','open','closed','','favicon-32x32','','','2016-04-25
05:45:50','2016-04-25 05:45:50','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/favicon-
32x32.png',0,'attachment','image/png',0),(2382,1,'2016-04-25
05:46:08','2016-04-25 05:46:08','','apple-icon-
180x180','','inherit','open','closed','','apple-icon-180x180','','','2016-
04-25 05:46:08','2016-04-25 05:46:08','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/apple-icon-
180x180.png',0,'attachment','image/png',0),(2383,1,'2016-04-27
11:04:33','2016-04-27 11:04:33','','LOGO-STIKOM-VERSI-
2','','inherit','open','closed','','logo-stikom-versi-2','','','2016-04-27
11:04:33','2016-04-27 11:04:33','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/LOGO-STIKOM-VERSI-
2.jpg',0,'attachment','image/jpeg',0),(2384,1,'2016-04-27 11:04:53','2016-
04-27 11:04:53','','LOGO-STIKOM-VERSI-
2x','','inherit','open','closed','','logo-stikom-versi-2x','','','2016-04-
27 11:04:53','2016-04-27 11:04:53','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/LOGO-STIKOM-VERSI-
2x.jpg',0,'attachment','image/jpeg',0),(2386,1,'2016-04-27 11:08:10','2016-
04-27 11:08:10','','di-depan-kampus','','inherit','open','closed','','di-
depan-kampus-2','','','2016-04-27 11:08:10','2016-04-27
11:08:10','',0,'http://139.59.234.208/wp-content/uploads/2016/04/di-depan-
kampus-1.jpg',0,'attachment','image/jpeg',0),(2387,1,'2016-04-27
11:09:40','2016-04-27
11:09:40','','stikom','','inherit','open','closed','','stikom','','','2016-
04-27 11:09:40','2016-04-27 11:09:40','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/stikom.jpg',0,'attachment','image/jpeg',0),(2388,1,
'2016-04-28 07:21:37','2016-04-28 07:21:37','Mahasiswa Stikom Prosia,
khususnya pada konsentrasi Public Relations (PR), mendapatkan berbagai
bekal ilmu pengetahuan dan keterampilan sebelum terjun sebagai praktisi PR
professional. Mereka tidak hanya dituntut cakap dalam membuat program-
program PR, namun perlu modal percaya diri. Untuk menumbuhkan rasa percaya
diri tersebut, PR harus bisa tampil elegan, baik dalam berbusana maupun
tata riasnya. Busana dan tata rias yang proporsional bisa meningkatkan rasa
percaya diri seorang PR.\r\n\r\nDi Stikom Prosia, belum lama ini menggelar
acara Beauty Class, yang bertujuan untuk melatih para mahasiswa agar dapat
melakukan teknik tata rias yang baik sesuai kebutuhan. Acara ini digelar
oleh mahasiswa sebagai bagian dari tugas mata kuliah Manajemen Event. Pada
tugas tersebut mahasiswa dituntut dapat menyelenggarakan berbagai event
yang baik dan yang pada gilirannya, pengalaman dalam penyelenggaraan acara
menjadi sebuah porto folio mahasiswa jika mereka lulus
nantinya.\r\n\r\n&nbsp;','Beauty Class, Pelatihan untuk para calon Public
Relations Officer','','publish','open','open','','beauty-class-pelatihan-
untuk-para-calon-public-relations-officer','','','2016-04-28
07:21:37','2016-04-28
07:21:37','',0,'http://139.59.234.208/?p=2388',0,'post','',0),(2389,1,'2016
-04-28 07:21:17','2016-04-28 07:21:17','','beauty class
2','','inherit','open','closed','','beauty-class-2','','','2016-04-28
07:21:17','2016-04-28 07:21:17','',2388,'http://139.59.234.208/wp-
content/uploads/2016/04/beauty-class-
2.jpg',0,'attachment','image/jpeg',0),(2390,1,'2016-04-28 07:21:37','2016-
04-28 07:21:37','Mahasiswa Stikom Prosia, khususnya pada konsentrasi Public
Relations (PR), mendapatkan berbagai bekal ilmu pengetahuan dan
keterampilan sebelum terjun sebagai praktisi PR professional. Mereka tidak
hanya dituntut cakap dalam membuat program-program PR, namun perlu modal
percaya diri. Untuk menumbuhkan rasa percaya diri tersebut, PR harus bisa
tampil elegan, baik dalam berbusana maupun tata riasnya. Busana dan tata
rias yang proporsional bisa meningkatkan rasa percaya diri seorang
PR.\r\n\r\nDi Stikom Prosia, belum lama ini menggelar acara Beauty Class,
yang bertujuan untuk melatih para mahasiswa agar dapat melakukan teknik
tata rias yang baik sesuai kebutuhan. Acara ini digelar oleh mahasiswa
sebagai bagian dari tugas mata kuliah Manajemen Event. Pada tugas tersebut
mahasiswa dituntut dapat menyelenggarakan berbagai event yang baik dan yang
pada gilirannya, pengalaman dalam penyelenggaraan acara menjadi sebuah
porto folio mahasiswa jika mereka lulus nantinya.\r\n\r\n&nbsp;','Beauty
Class, Pelatihan untuk para calon Public Relations
Officer','','inherit','closed','closed','','2388-revision-v1','','','2016-
04-28 07:21:37','2016-04-28
07:21:37','',2388,'http://139.59.234.208/2016/04/28/2388-revision-
v1/',0,'revision','',0),(2391,1,'2016-04-28 07:30:21','0000-00-00
00:00:00','','Sambutan Ketua STIKOM
PROSIA','','draft','closed','closed','','','','','2016-04-28
07:30:21','2016-04-28
07:30:21','',0,'http://139.59.234.208/?page_id=2391',0,'page','',0),(2392,1
,'2016-04-28 07:39:56','2016-04-28 07:39:56','','POTO
KIPAS','','inherit','open','closed','','poto-kipas','','','2016-04-28
07:39:56','2016-04-28 07:39:56','',2324,'http://139.59.234.208/wp-
content/uploads/2015/03/POTO-
KIPAS.jpg',0,'attachment','image/jpeg',0),(2393,1,'2016-04-28
07:45:52','2016-04-28 07:45:52','','banner
stikom','','inherit','open','closed','','banner-stikom','','','2016-04-28
07:45:52','2016-04-28 07:45:52','',2324,'http://139.59.234.208/wp-
content/uploads/2015/03/banner-
stikom.jpg',0,'attachment','image/jpeg',0),(2394,1,'2016-04-28
07:54:38','2016-04-28 07:54:38','Kampus Stikom Prosia, beberapa waktu lalu
kedatangan Fachry Latief, seorang fotografer professional. Beliau datang
untuk berbagi ilmu dan pengalaman dengan mahasiswa Stikom Prosia dalam
rangkaian acara workshop fotografi dengan tema Human Interest di lantai 5
Kampus B Stikom Prosia.\r\n\r\nAcara yang dirangkai dengan acara music
akustik ini beelangsung interaktif. Mahasiswa pencinta fotografi tak
melewati kesempatan tersebut dengan bertukar info dan pengalaman selama
workshop berlangsung. Mumpung ada Ahlinya, saya mau belajar fotografi yang
baik, kata seorang Mahasiswa yang serius mengikuti kegiatan
tersebut.\r\n\r\nAcara yang berlangsung sekitar 2 jam tersebut, diisi juga
dengan beberapa penampilan music dari mahasiswa. Sambil menikmati alunan
music dan suara merdu penyanyi, para peserta workshop bisa berjalan-jalan
di ruang pameran foto yang berada di sekeliling area acara.','Berguru
Fotografi Langsung dari Ahlinya','','publish','open','open','','berguru-
fotografi-langsung-dengan-ahlinya','','','2016-04-29 10:07:59','2016-04-29
10:07:59','',0,'http://139.59.234.208/?p=2394',0,'post','',0),(2395,1,'2016
-04-28 07:54:13','2016-04-28 07:54:13','','fotografi
2','','inherit','open','closed','','fotografi-2','','','2016-04-28
07:54:13','2016-04-28 07:54:13','',2394,'http://139.59.234.208/wp-
content/uploads/2016/04/fotografi-
2.jpg',0,'attachment','image/jpeg',0),(2396,1,'2016-04-28 07:54:38','2016-
04-28 07:54:38','Kampus Stikom Prosia, beberapa waktu lalu kedatangan ..,
seorang fotografer professional. Beliau datang untuk berbagi ilmu dan
pengalaman dengan mahasiswa Stikom Prosia dalam rangkaian acara workshop
fotografi di lantai 5 Kampus B.\r\n\r\nAcara yang dirangkai dengan acara
music akustik ini beelangsung interaktif. Mahasiswa pencinta fotografi tak
melewati kesempatan tersebut dengan bertukar info dan pengalaman selama
workshop berlangsung. Mumpung ada Ahlinya, saya mau belajar fotografi yang
baik, kata seorang Mahasiswa yang serius mengikuti kegiatan
tersebut.\r\n\r\nAcara yang berlangsung sekitar 2 jam tersebut, diisi juga
dengan beberapa penampilan music dari mahasiswa. Sambil menikmati alunan
music dan suara merdu penyanyi, para peserta workshop bisa berjalan-jalan
di ruang pameran foto yang berada di sekeliling area acara.<img
class=\"alignnone size-medium wp-image-2395\"
src=\"http://139.59.234.208/wp-content/uploads/2016/04/fotografi-2-
300x263.jpg\" alt=\"fotografi 2\" width=\"300\" height=\"263\" />','Berguru
Fotografi Langsung dengan Ahlinya','','inherit','closed','closed','','2394-
revision-v1','','','2016-04-28 07:54:38','2016-04-28
07:54:38','',2394,'http://139.59.234.208/2016/04/28/2394-revision-
v1/',0,'revision','',0),(2397,1,'2016-04-28 07:55:34','2016-04-28
07:55:34','Kampus Stikom Prosia, beberapa waktu lalu kedatangan ..,
seorang fotografer professional. Beliau datang untuk berbagi ilmu dan
pengalaman dengan mahasiswa Stikom Prosia dalam rangkaian acara workshop
fotografi di lantai 5 Kampus B.\r\n\r\nAcara yang dirangkai dengan acara
music akustik ini beelangsung interaktif. Mahasiswa pencinta fotografi tak
melewati kesempatan tersebut dengan bertukar info dan pengalaman selama
workshop berlangsung. Mumpung ada Ahlinya, saya mau belajar fotografi yang
baik, kata seorang Mahasiswa yang serius mengikuti kegiatan
tersebut.\r\n\r\nAcara yang berlangsung sekitar 2 jam tersebut, diisi juga
dengan beberapa penampilan music dari mahasiswa. Sambil menikmati alunan
music dan suara merdu penyanyi, para peserta workshop bisa berjalan-jalan
di ruang pameran foto yang berada di sekeliling area acara.','Berguru
Fotografi Langsung dengan Ahlinya','','inherit','closed','closed','','2394-
revision-v1','','','2016-04-28 07:55:34','2016-04-28
07:55:34','',2394,'http://139.59.234.208/2016/04/28/2394-revision-
v1/',0,'revision','',0),(2398,1,'2016-04-28 09:16:06','2016-04-28
09:16:06','Kampus Stikom Prosia, beberapa waktu lalu kedatangan Fachry
Latief, seorang fotografer professional. Beliau datang untuk berbagi ilmu
dan pengalaman dengan mahasiswa Stikom Prosia dalam rangkaian acara
workshop fotografi di lantai 5 Kampus B.\n\nAcara yang dirangkai dengan
acara music akustik ini beelangsung interaktif. Mahasiswa pencinta
fotografi tak melewati kesempatan tersebut dengan bertukar info dan
pengalaman selama workshop berlangsung. Mumpung ada Ahlinya, saya mau
belajar fotografi yang baik, kata seorang Mahasiswa yang serius mengikuti
kegiatan tersebut.\n\nAcara yang berlangsung sekitar 2 jam tersebut, diisi
juga dengan beberapa penampilan music dari mahasiswa. Sambil menikmati
alunan music dan suara merdu penyanyi, para peserta workshop bisa berjalan-
jalan di ruang pameran foto yang berada di sekeliling area acara.','Berguru
Fotografi Langsung dengan Ahlinya','','inherit','closed','closed','','2394-
autosave-v1','','','2016-04-28 09:16:06','2016-04-28
09:16:06','',2394,'http://139.59.234.208/2016/04/28/2394-autosave-
v1/',0,'revision','',0),(2399,1,'2016-04-28 07:59:32','2016-04-28
07:59:32','','fotografi 2','','inherit','open','closed','','fotografi-2-
2','','','2016-04-28 07:59:32','2016-04-28
07:59:32','',2394,'http://139.59.234.208/wp-
content/uploads/2016/04/fotografi-2-
1.jpg',0,'attachment','image/jpeg',0),(2400,1,'2016-04-28 09:16:39','2016-
04-28 09:16:39','Kampus Stikom Prosia, beberapa waktu lalu kedatangan
Fachry Latief, seorang fotografer professional. Beliau datang untuk berbagi
ilmu dan pengalaman dengan mahasiswa Stikom Prosia dalam rangkaian acara
workshop fotografi dengan tema Human Interest di lantai 5 Kampus B Stikom
Prosia.\r\n\r\nAcara yang dirangkai dengan acara music akustik ini
beelangsung interaktif. Mahasiswa pencinta fotografi tak melewati
kesempatan tersebut dengan bertukar info dan pengalaman selama workshop
berlangsung. Mumpung ada Ahlinya, saya mau belajar fotografi yang baik,
kata seorang Mahasiswa yang serius mengikuti kegiatan
tersebut.\r\n\r\nAcara yang berlangsung sekitar 2 jam tersebut, diisi juga
dengan beberapa penampilan music dari mahasiswa. Sambil menikmati alunan
music dan suara merdu penyanyi, para peserta workshop bisa berjalan-jalan
di ruang pameran foto yang berada di sekeliling area acara.','Berguru
Fotografi Langsung dengan Ahlinya','','inherit','closed','closed','','2394-
revision-v1','','','2016-04-28 09:16:39','2016-04-28
09:16:39','',2394,'http://139.59.234.208/2016/04/28/2394-revision-
v1/',0,'revision','',0),(2401,1,'2016-04-28 09:20:37','2016-04-28
09:20:37','Sebagai bentuk kepedulian, para mahasiswa Stikom Prosia
menggelar aksi social dengan memberikan santunan kepada yayasan Yatim Piatu
yang berada di lingkungan Kampus Stikom Prosia di Tegalan, Matraman,
Jakarta Timur.\r\n\r\nRaut muka bahagia terpancara dari anak-anak yayasan
Yatim Piatu ketika menerima bingkisan dan santunan dari mahasiswa.
Kegiatan yang kami selenggarakan ini merupakan wujud kepedulian kami pada
anak yatim piatu yang berada di lingkungan kampus. Di samping itu acara ini
adalah salah satu dari tugas mata kuliah Event Management. Ini menambah
wawasan dan pengalaman kami dalam mengelola sebuah kegiatan, jelas salah
satu mahasiswa yang ikut dalam penyelenggaraan
acara.\r\n\r\n&nbsp;','Berbagi Rezeki dengan Anak Yatim
Piatu','','publish','open','open','','berbagi-rezeki-dengan-anak-yatim-
piatu','','','2016-04-28 09:20:37','2016-04-28
09:20:37','',0,'http://139.59.234.208/?p=2401',0,'post','',0),(2402,1,'2016
-04-28 09:20:08','2016-04-28 09:20:08','','santunan
1','','inherit','open','closed','','santunan-1','','','2016-04-28
09:20:08','2016-04-28 09:20:08','',2401,'http://139.59.234.208/wp-
content/uploads/2016/04/santunan-
1.jpg',0,'attachment','image/jpeg',0),(2403,1,'2016-04-28 09:20:37','2016-
04-28 09:20:37','Sebagai bentuk kepedulian, para mahasiswa Stikom Prosia
menggelar aksi social dengan memberikan santunan kepada yayasan Yatim Piatu
yang berada di lingkungan Kampus Stikom Prosia di Tegalan, Matraman,
Jakarta Timur.\r\n\r\nRaut muka bahagia terpancara dari anak-anak yayasan
Yatim Piatu ketika menerima bingkisan dan santunan dari mahasiswa.
Kegiatan yang kami selenggarakan ini merupakan wujud kepedulian kami pada
anak yatim piatu yang berada di lingkungan kampus. Di samping itu acara ini
adalah salah satu dari tugas mata kuliah Event Management. Ini menambah
wawasan dan pengalaman kami dalam mengelola sebuah kegiatan, jelas salah
satu mahasiswa yang ikut dalam penyelenggaraan
acara.\r\n\r\n&nbsp;','Berbagi Rezeki dengan Anak Yatim
Piatu','','inherit','closed','closed','','2401-revision-v1','','','2016-04-
28 09:20:37','2016-04-28
09:20:37','',2401,'http://139.59.234.208/2016/04/28/2401-revision-
v1/',0,'revision','',0),(2404,1,'2016-04-28 09:35:01','2016-04-28
09:35:01','','dikelas','','inherit','open','closed','','dikelas','','','201
6-04-28 09:35:01','2016-04-28 09:35:01','',2341,'http://139.59.234.208/wp-
content/uploads/2016/04/dikelas.jpg',0,'attachment','image/jpeg',0),(2405,1
,'2016-04-28 22:52:28','2016-04-28 22:52:28','','ruang
komputer','','inherit','open','closed','','ruang-komputer','','','2016-04-
28 22:52:28','2016-04-28 22:52:28','',2341,'http://139.59.234.208/wp-
content/uploads/2016/04/ruang-
komputer.jpg',0,'attachment','image/jpeg',0),(2406,1,'2016-04-28
23:36:00','2016-04-28 23:36:00','','foto
panjang','','inherit','open','closed','','foto-panjang','','','2016-04-28
23:36:00','2016-04-28 23:36:00','',2324,'http://139.59.234.208/wp-
content/uploads/2015/03/foto-
panjang.jpg',0,'attachment','image/jpeg',0),(2407,1,'2016-04-28
23:45:30','2016-04-28 23:45:30','','foto
panjang','','inherit','open','closed','','foto-panjang-2','','','2016-04-28
23:45:30','2016-04-28 23:45:30','',2324,'http://139.59.234.208/wp-
content/uploads/2015/03/foto-panjang-
1.jpg',0,'attachment','image/jpeg',0),(2409,1,'2016-04-29 01:08:01','2016-
04-29 01:08:01','Bertempat di ruang auditorium lantai 5, gedung B, STIKOM
PROSIA, para Dosen diberi pembekalan wawasan dalam metode penelitian
kuantitatif dan kualitatif. Pelatihan ini dimaksudkan untuk merefreshing
pengetahuan tentang metode penelitian sekaligus mempertajam ilmu tersebut
bagi setiap dosen dalam membuat proyek penelitian dan melakukan bimbingan
skripsi mahasiswa.\r\n\r\nPada pelatihan tersebut hadir sebagai narasumber
adalah Prof. Dr. Ernawati Sinaga dan Jemmy Jeremias, MM. Materi pelatihan
dititik beratkan pada poin-poin penting pada metode penelitian baik
kualitatif maupun kuantitatif. Para dosen yang hadir pada acara itu sangat
mengapresiasi pelatihan yang berlansung satu hari itu. \"Pelatihan ini
seakan membawa kita kembali pada dasar-dasar metode penelitian yang kadang
perlu diingatkan kembali agar kita paham pada prinsip-prinsip elementer
dalam sebuah metode penelitian\", jelas Dosen Stikom Prosia, Bintang
Nurijadi.','Mempertajam Wawasan Metode
Penelitian','','publish','open','open','','mempertajam-wawasan-metode-
penelitian','','','2016-04-29 01:08:01','2016-04-29
01:08:01','',0,'http://139.59.234.208/?p=2409',0,'post','',0),(2410,1,'2016
-04-29 01:06:37','2016-04-29 01:06:37','','pelatihan dosen
1','','inherit','open','closed','','pelatihan-dosen-1','','','2016-04-29
01:06:37','2016-04-29 01:06:37','',2409,'http://139.59.234.208/wp-
content/uploads/2016/04/pelatihan-dosen-
1.jpg',0,'attachment','image/jpeg',0),(2411,1,'2016-04-29 01:08:01','2016-
04-29 01:08:01','Bertempat di ruang auditorium lantai 5, gedung B, STIKOM
PROSIA, para Dosen diberi pembekalan wawasan dalam metode penelitian
kuantitatif dan kualitatif. Pelatihan ini dimaksudkan untuk merefreshing
pengetahuan tentang metode penelitian sekaligus mempertajam ilmu tersebut
bagi setiap dosen dalam membuat proyek penelitian dan melakukan bimbingan
skripsi mahasiswa.\r\n\r\nPada pelatihan tersebut hadir sebagai narasumber
adalah Prof. Dr. Ernawati Sinaga dan Jemmy Jeremias, MM. Materi pelatihan
dititik beratkan pada poin-poin penting pada metode penelitian baik
kualitatif maupun kuantitatif. Para dosen yang hadir pada acara itu sangat
mengapresiasi pelatihan yang berlansung satu hari itu. \"Pelatihan ini
seakan membawa kita kembali pada dasar-dasar metode penelitian yang kadang
perlu diingatkan kembali agar kita paham pada prinsip-prinsip elementer
dalam sebuah metode penelitian\", jelas Dosen Stikom Prosia, Bintang
Nurijadi.','Mempertajam Wawasan Metode
Penelitian','','inherit','closed','closed','','2409-revision-
v1','','','2016-04-29 01:08:01','2016-04-29
01:08:01','',2409,'http://139.59.234.208/2016/04/29/2409-revision-
v1/',0,'revision','',0),(2412,1,'2016-04-29 01:47:16','2016-04-29
01:47:16','','foto broadcast','','inherit','open','closed','','foto-
broadcast','','','2016-04-29 01:47:16','2016-04-29
01:47:16','',0,'http://139.59.234.208/wp-content/uploads/2016/04/foto-
broadcast.jpg',0,'attachment','image/jpeg',0),(2413,1,'2016-04-29
01:57:21','2016-04-29 01:57:21','','foto 1
oke','','inherit','open','closed','','foto-1-oke','','','2016-04-29
01:57:21','2016-04-29 01:57:21','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/foto-1-
oke.jpg',0,'attachment','image/jpeg',0),(2414,1,'2016-04-29
01:59:58','2016-04-29 01:59:58','','gedung
baru','','inherit','open','closed','','gedung-baru','','','2016-04-29
01:59:58','2016-04-29 01:59:58','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/gedung-
baru.jpg',0,'attachment','image/jpeg',0),(2418,1,'2016-04-29
03:39:37','2016-04-29 03:39:37','','8bad84a4-961e-4508-8a42-
e22c8acadfd4','','inherit','open','closed','','8bad84a4-961e-4508-8a42-
e22c8acadfd4','','','2016-04-29 03:39:37','2016-04-29
03:39:37','',2367,'http://139.59.234.208/wp-
content/uploads/2016/04/8bad84a4-961e-4508-8a42-
e22c8acadfd4.jpg',0,'attachment','image/jpeg',0),(2419,1,'2016-04-29
03:50:18','2016-04-29 03:50:18','','gambar
depan','','inherit','open','closed','','gambar-depan','','','2016-04-29
03:50:18','2016-04-29 03:50:18','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/gambar-
depan.jpg',0,'attachment','image/jpeg',0),(2420,1,'2016-04-29
03:53:39','2016-04-29 03:53:39','','3142fd64-b4e6-4ab2-8777-
d080180d1fe5','','inherit','open','closed','','3142fd64-b4e6-4ab2-8777-
d080180d1fe5','','','2016-04-29 09:26:25','2016-04-29
09:26:25','',2367,'http://139.59.234.208/wp-
content/uploads/2016/04/3142fd64-b4e6-4ab2-8777-
d080180d1fe5.jpg',0,'attachment','image/jpeg',0),(2421,1,'2016-04-29
04:05:53','2016-04-29 04:05:53','','a1085709-2209-4986-912a-
b0b6b36ef225','','inherit','open','closed','','a1085709-2209-4986-912a-
b0b6b36ef225','','','2016-04-29 09:35:45','2016-04-29
09:35:45','',2367,'http://139.59.234.208/wp-
content/uploads/2016/04/a1085709-2209-4986-912a-
b0b6b36ef225.jpg',0,'attachment','image/jpeg',0),(2422,1,'2016-04-29
04:22:54','2016-04-29 04:22:54','','gambar depan
2','','inherit','open','closed','','gambar-depan-2','','','2016-04-29
04:22:54','2016-04-29 04:22:54','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/gambar-depan-
2.jpg',0,'attachment','image/jpeg',0),(2423,1,'2016-04-29 07:40:48','2016-
04-29
07:40:48','','slogan','','inherit','open','closed','','slogan','','','2016-
04-29 07:40:48','2016-04-29 07:40:48','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/slogan.png',0,'attachment','image/png',0),(2424,1,'
2016-04-29 07:44:21','2016-04-29 07:44:21','','slogan
1','','inherit','open','closed','','slogan-1','','','2016-04-29
07:44:21','2016-04-29 07:44:21','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/slogan-
1.png',0,'attachment','image/png',0),(2425,1,'2016-04-29 07:51:25','2016-
04-29 07:51:25','','dibuka
pendaftaran','','inherit','open','closed','','dibuka-
pendaftaran','','','2016-04-29 07:51:25','2016-04-29
07:51:25','',0,'http://139.59.234.208/wp-content/uploads/2016/04/dibuka-
pendaftaran.png',0,'attachment','image/png',0),(2426,1,'2016-04-29
08:09:54','2016-04-29
08:09:54','','welcome','','inherit','open','closed','','welcome','','','201
6-04-29 08:09:54','2016-04-29 08:09:54','',0,'http://139.59.234.208/wp-
content/uploads/2016/04/welcome.png',0,'attachment','image/png',0),(2427,1,
'2016-04-29 08:43:19','2016-04-29 08:43:19','','broadcasting
stikom','','inherit','open','closed','','broadcasting-stikom','','','2016-
04-29 08:43:19','2016-04-29 08:43:19','',2343,'http://139.59.234.208/wp-
content/uploads/2016/04/broadcasting-
stikom.jpg',0,'attachment','image/jpeg',0),(2432,1,'2016-04-29
09:36:51','2016-04-29
09:36:51','','Alumni','','inherit','closed','closed','','2367-autosave-
v1','','','2016-04-29 09:36:51','2016-04-29
09:36:51','',2367,'http://139.59.234.208/2016/04/29/2367-autosave-
v1/',0,'revision','',0),(2433,1,'2016-04-29 10:03:20','2016-04-29
10:03:20','Program pengabdian masyarakat merupakan salah satu dari tridarma
perguruan tinggi. Oleh karena itu sejak beberapa tahun belakangan ini, para
dosen STIKOM PROSIA ambil bagian dalam program pengabdian masyarakat dengan
memberikan pelatihan dan ketrampilan dalam bidang komunikasi dan
motivasi.\r\n\r\nBeberapa sekolah di lingkungan kampus telah mendapatkan
bagian dalam program tersebut. Para siswa SMK di kawasan Bekasi dan Jakarta
Timur mengaku antusias dalam mengikuti kegiatan yang diberikan oleh dosen
STIKOM PROSIA. Banyak manfaat yang diperoleh mulai dari bagaiman memotivasi
diri, semnagat pantang menyerah dan ketrampilan berbicara di depan
public.\r\n\r\nRencananya program ini menjadi agenda tahunan yang akan
melibatkan seluruh dosen dan menjangkau sekolah dan daerah di seluruh
wilayah Jabodetabek. (as)','Dosen STIKOM PROSIA Aktif dalam Program
Pengabdian Masyarakat','','publish','open','open','','dosen-stikom-prosia-
aktif-dalam-program-pengabdian-masyarakat','','','2016-04-29
10:03:20','2016-04-29
10:03:20','',0,'http://139.59.234.208/?p=2433',0,'post','',0),(2434,1,'2016
-04-29 10:03:06','2016-04-29 10:03:06','','pengabdian dosen
1','','inherit','open','closed','','pengabdian-dosen-1','','','2016-04-29
10:03:06','2016-04-29 10:03:06','',2433,'http://139.59.234.208/wp-
content/uploads/2016/04/pengabdian-dosen-
1.jpg',0,'attachment','image/jpeg',0),(2435,1,'2016-04-29 10:03:20','2016-
04-29 10:03:20','Program pengabdian masyarakat merupakan salah satu dari
tridarma perguruan tinggi. Oleh karena itu sejak beberapa tahun belakangan
ini, para dosen STIKOM PROSIA ambil bagian dalam program pengabdian
masyarakat dengan memberikan pelatihan dan ketrampilan dalam bidang
komunikasi dan motivasi.\r\n\r\nBeberapa sekolah di lingkungan kampus telah
mendapatkan bagian dalam program tersebut. Para siswa SMK di kawasan Bekasi
dan Jakarta Timur mengaku antusias dalam mengikuti kegiatan yang diberikan
oleh dosen STIKOM PROSIA. Banyak manfaat yang diperoleh mulai dari bagaiman
memotivasi diri, semnagat pantang menyerah dan ketrampilan berbicara di
depan public.\r\n\r\nRencananya program ini menjadi agenda tahunan yang
akan melibatkan seluruh dosen dan menjangkau sekolah dan daerah di seluruh
wilayah Jabodetabek. (as)','Dosen STIKOM PROSIA Aktif dalam Program
Pengabdian Masyarakat','','inherit','closed','closed','','2433-revision-
v1','','','2016-04-29 10:03:20','2016-04-29
10:03:20','',2433,'http://139.59.234.208/2016/04/29/2433-revision-
v1/',0,'revision','',0),(2437,1,'2016-04-29 10:07:59','2016-04-29
10:07:59','Kampus Stikom Prosia, beberapa waktu lalu kedatangan Fachry
Latief, seorang fotografer professional. Beliau datang untuk berbagi ilmu
dan pengalaman dengan mahasiswa Stikom Prosia dalam rangkaian acara
workshop fotografi dengan tema Human Interest di lantai 5 Kampus B Stikom
Prosia.\r\n\r\nAcara yang dirangkai dengan acara music akustik ini
beelangsung interaktif. Mahasiswa pencinta fotografi tak melewati
kesempatan tersebut dengan bertukar info dan pengalaman selama workshop
berlangsung. Mumpung ada Ahlinya, saya mau belajar fotografi yang baik,
kata seorang Mahasiswa yang serius mengikuti kegiatan
tersebut.\r\n\r\nAcara yang berlangsung sekitar 2 jam tersebut, diisi juga
dengan beberapa penampilan music dari mahasiswa. Sambil menikmati alunan
music dan suara merdu penyanyi, para peserta workshop bisa berjalan-jalan
di ruang pameran foto yang berada di sekeliling area acara.','Berguru
Fotografi Langsung dari Ahlinya','','inherit','closed','closed','','2394-
revision-v1','','','2016-04-29 10:07:59','2016-04-29
10:07:59','',2394,'http://139.59.234.208/2016/04/29/2394-revision-
v1/',0,'revision','',0),(2438,1,'2016-04-29 10:14:35','2016-04-29
10:14:35','','kumpul di gedung','','inherit','open','closed','','kumpul-di-
gedung','','','2016-04-29 10:14:35','2016-04-29
10:14:35','',2324,'http://139.59.234.208/wp-content/uploads/2015/03/kumpul-
di-gedung.jpg',0,'attachment','image/jpeg',0),(2441,1,'2016-04-29
11:40:01','2016-04-29 11:40:01','Evan Lysandra, perwakilan Kota Bandung,
akhirnya terpilih sebagai Putri Indonesia Jawa Barat 2016 pada Grand Final
Pemilihan Putri Indonesia Jawa Barat di Grage City Mall Kota Cirebon, Jumat
(4/11/2015). STIKOM PROSIA dipilih menjadi salah satu sponsor dalam ajang
lomba putri Indonesia Jawa Barat 2016.\r\n\r\nMenurut Ketua Stikom Prosia,
Hj. Hurdatul Ainiah, MM, partisipasi STIKOM PROSIA dalam kegiatan ini
adalah sebagai wujud kepedulian kami dalam mendorong generasi muda
khususnya putri Indonesia agar dapat berkembang dan mandiri dalam mengisi
pembangunan Indonesia masa depan. Disamping itu, kami sebagai institusi di
bidang pendidikan ikut berperan dalam memajukan bangsa Indonesia melalui
pendidikan, salah satunya dengan ikut menjadi bagian dalam kegiatan ini
dengan memberikan bantuan beasiswa. (as)','Beasiswa untuk Putri Indonesia
Jawa Barat 2016','','publish','open','open','','beasiswa-untuk-putri-
indonesia-jawa-barat-2016','','','2016-04-29 11:44:27','2016-04-29
11:44:27','',0,'http://139.59.234.208/?p=2441',0,'post','',0),(2442,1,'2016
-04-29 11:39:53','2016-04-29
11:39:53','','sponsor','','inherit','open','closed','','sponsor','','','201
6-04-29 11:39:53','2016-04-29 11:39:53','',2441,'http://139.59.234.208/wp-
content/uploads/2016/04/sponsor.jpg',0,'attachment','image/jpeg',0),(2443,1
,'2016-04-29 11:40:01','2016-04-29 11:40:01','Evan Lysandra, perwakilan
Kota Bandung, akhirnya terpilih sebagai Putri Indonesia Jawa Barat 2016
pada Grand Final Pemilihan Putri Indonesia Jawa Barat di Grage City Mall
Kota Cirebon, Jumat (4/11/2015). STIKOM PROSIA dipilih menjadi salah satu
sponsor dalam ajang lomba putri Indonesia Jawa Barat 2016.\r\n\r\nMenurut
Ketua Stikom Prosia, Hj. Hurdatul Ainiah, MM, partisipasi STIKOM PROSIA
dalam kegiatan ini adalah sebagai wujud kepedulian kami dalam mendorong
generasi muda khususnya putri Indonesia agar dapat berkembang dan mandiri
dalam mengisi pembangunan Indonesia masa depan. Disamping itu, kami sebagai
institusi di bidang pendidikan ikut berperan dalam memajukan bangsa
Indonesia melalui pendidikan, salah satunya dengan ikut menjadi bagian
dalam kegiatan ini dengan memberikan bantuan beasiswa. (as)','Beasiswa
untuk Putri Indonesia Jawa Barat
2016','','inherit','closed','closed','','2441-revision-v1','','','2016-04-
29 11:40:01','2016-04-29
11:40:01','',2441,'http://139.59.234.208/2016/04/29/2441-revision-
v1/',0,'revision','',0),(2444,1,'2016-04-29 11:40:31','2016-04-29
11:40:31','Evan Lysandra, perwakilan Kota Bandung, akhirnya terpilih
sebagai Putri Indonesia Jawa Barat 2016 pada Grand Final Pemilihan Putri
Indonesia Jawa Barat di Grage City Mall Kota Cirebon, Jumat (4/11/2015).
STIKOM PROSIA dipilih menjadi salah satu sponsor dalam ajang lomba putri
Indonesia Jawa Barat 2016.\r\n\r\nMenurut Ketua Stikom Prosia, Hj. Hurdatul
Ainiah, MM, partisipasi STIKOM PROSIA dalam kegiatan ini adalah sebagai
wujud kepedulian kami dalam mendorong generasi muda khususnya putri
Indonesia agar dapat berkembang dan mandiri dalam mengisi pembangunan
Indonesia masa depan. Disamping itu, kami sebagai institusi di bidang
pendidikan ikut berperan dalam memajukan bangsa Indonesia melalui
pendidikan, salah satunya dengan ikut menjadi bagian dalam kegiatan ini
dengan memberikan bantuan beasiswa. (as)','Beasiswa untuk Putri Indonesia
Jawa Barat 2016','','inherit','closed','closed','','2441-autosave-
v1','','','2016-04-29 11:40:31','2016-04-29
11:40:31','',2441,'http://139.59.234.208/2016/04/29/2441-autosave-
v1/',0,'revision','',0),(2445,1,'2016-04-29 11:44:13','2016-04-29
11:44:13','','sponsor 2','','inherit','open','closed','','sponsor-
2','','','2016-04-29 11:44:13','2016-04-29
11:44:13','',2441,'http://139.59.234.208/wp-
content/uploads/2016/04/sponsor-
2.jpg',0,'attachment','image/jpeg',0),(2446,1,'2016-04-29 11:50:15','2016-
04-29 11:50:15','<h5>Praesent consequat. Cum sociis natoque penatibus et
magnis dis parturient montes, nascetur ridiculus mus. Vestibulum massa dui
sed nulla ut nulla a mi. Fusce wisi nibh malesuada aliquet, lacus vitae
mauris. Nam sit amet justo. Vestibulum ante ipsum eleifend adipiscing elit.
Mauris viverra nunc.</h5>\r\n<big>Maecenas tincidunt. Aliquam semper. Sed
eget nisl. Aenean gravida vitae, consequat lorem fermentum rutrum. Nunc id
risus. Donec ullamcorper convallis. Donec urna quis sollicitudin mi eget
ipsum adipiscing non, iaculis scelerisque. Duis sodales at, elit. Sed
dignissim justo. Suspendisse fermentum erat. Duis consequat tortor. Mauris
ut tellus a dolor. Suspendisse nec tellus.</big>\r\n\r\n[blockquote
author=\"\" link=\"\" target=\"_blank\"]Praesent dapibus, neque id cursus
faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat.
Vitae adipiscing turpis. Aenean ligula nibh, molestie id viverra a, dapibus
at dolor. In iaculis viverra neque, ac eleifend ante lobortis id. In
viverra ipsum ...[/blockquote]\r\n\r\nPellentesque suscipit urna mauris,
interdum dapibus ac, rhoncus purus, dictum a, euismod id, felis. Fusce
blandit eu, ullamcorper in, iaculis et, ultricies lobortis velit. Mauris
imperdiet, urna mi, gravida sodales. Vivamus hendrerit nulla erat ornare
tortor in vestibulum id, eleifend neque odio fermentum vel, consectetuer
at, imperdiet sapien. Donec blandit, dui eu diam. In gravida ornare. Nullam
accumsan. In hac habitasse platea dictumst. Praesent feugiat. Cum sociis
natoque.\r\n<ul class=\"list_mixed\">\r\n <li
class=\"list_check\">Suspendisse a pellentesque dui, non felis.</li>\r\n <li class=\
dolor lacus, suscipit adipiscing.</li>\r\n</ul>\r\nSed dignissim justo.
Suspendisse fermentum erat. Duis consequat tortor. Mauris ut tellus a
dolor. Suspendisse nec tellus. Donec quis lacus magna, sollicitudin id,
turpis. Mauris in velit vel sollicitudin justo. Proin vitae massa nec
cursus magna.\r\n\r\n<!--nextpage-->\r\n\r\n<big>Vestibulum ante ipsum
primis in faucibus orci luctus et ultrices posuere cubilia Curae; Praesent
lobortis lacus id quam volutpat mattis. Donec id nunc pretium, ultrices
justo vitae, condimentum urna. Mauris egestas, leo sit amet auctor sodales,
nulla enim porttitor metus, quis lacinia quam lorem id arcu. Aenean
facilisis pretium eros, non tempus neque consectetur eu. Nulla vel dolor
non nulla rutrum luctus.</big>\r\n\r\n[hr height=\"15\" style=\"zigzag\"
line=\"default\" themecolor=\"1\"]\r\n\r\nSuspendisse adipiscing. Cum
sociis natoque penatibus et interdum dui ut turpis vulputate sed, rutrum
lorem. Cras a nunc. Donec nisl ac turpis eget massa. Integer magna orci vel
neque ut lacus vestibulum ac, mattis eros. Mauris lobortis facilisis.
Phasellus pulvinar felis, nec malesuada tincidunt, risus libero, pharetra
ante pretium cursus. In hac habitasse platea dictumst. Suspendisse
fermentum suscipit mauris. Praesent consequat. Integer gravida eros ut
ante. Proin vulputate in, odio. Donec eleifend velit. Suspendisse eget
metus. Proin non mattis vel, ornare quam. Aliquam vitae mauris. Nam eu nunc
ut urna. Pellentesque fringilla gravida. Duis luctus metus et velit sit
amet nunc libero, fermentum quis, porttitor ullamcorper, risus arcu erat
volutpat. Phasellus dignissim.\r\n\r\nPellentesque suscipit urna mauris,
interdum dapibus ac, rhoncus purus, dictum a, euismod id, felis. Fusce
blandit eu, ullamcorper in, iaculis et, ultricies lobortis velit. Mauris
imperdiet, urna mi, gravida sodales. Vivamus hendrerit nulla erat ornare
tortor in vestibulum id, eleifend neque odio fermentum vel, consectetuer
at, imperdiet sapien. Donec blandit, dui eu diam. In gravida ornare. Nullam
accumsan. In hac habitasse platea dictumst. Praesent feugiat. Cum sociis
natoque.','Pellentes malesuada fames','Aenean ligula nunc, accumsan quam,
lobortis fringilla, massa. Maecenas pellentesque
dolor.','inherit','closed','closed','','2283-revision-v1','','','2016-04-29
11:50:15','2016-04-29
11:50:15','',2283,'http://139.59.234.208/2016/04/29/2283-revision-
v1/',0,'revision','',0),(2447,1,'2016-04-29 11:51:24','2016-04-29
11:51:24','<h5>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quo
modo? Et nemo nimium beatus est. <a href=\"#\">Verum hoc idem saepe
faciamus.</a> <b>Duo Reges: constructio interrete.</b> Suo genere
perveniant ad extremum; <i>Sed ille, ut dixi, vitiose.</i> Negat esse eam,
inquit, propter se expetendam. Quid est, quod ab ea absolvi et perfici
debeat?</h5>\r\nUt pulsi recurrant? Ratio enim nostra consentit, pugnat
oratio. Plane idem, inquit, et maxima quidem, qua fieri nulla maior potest.
Diodorus, eius auditor, adiungit ad honestatem vacuitatem doloris. Qua
igitur re ab deo vincitur, si aeternitate non vincitur?\r\n<ul>\r\n
<li>Superiores tres erant, quae esse possent, quarum est una sola
defensa, eaque vehementer.</li>\r\n <li>Istam voluptatem perpetuam quis
potest praestare sapienti?</li>\r\n <li>Quia dolori non voluptas
contraria est, sed doloris privatio.</li>\r\n</ul>\r\nNon igitur potestis
voluptate omnia dirigentes aut tueri aut retinere virtutem. Summus dolor
plures dies manere non potest? <a href=\"#\">Strato, physicum se
voluit</a>, ec vero alia sunt quaerenda contra Carneadeam illam sententiam.
Bonum incolumis acies: misera caecitas. Aliter enim nosmet ipsos nosse non
possumus.\r\n<h3>Inde igitur, inquit, ordiendum est.</h3>\r\nAt, si
voluptas esset bonum, desideraret. Aliter philosophos loqui putas oportere?
<i>Ratio enim nostra consentit, pugnat oratio.</i> <a
href=\"#\">Comprehensum, quod cognitum non habet?</a> Nam aliquando posse
recte fieri dicunt nulla expectata nec quaesita voluptate. Primum quid tu
dicis breve? Eam si varietatem diceres, intellegerem, ut etiam non dicente
te intellego; Quae qui non vident, nihil umquam magnum ac cognitione dignum
amaverunt. <a href=\"#\">Praeclare hoc quidem.</a> Quo plebiscito decreta a
senatu est consuli quaestio Cn.\r\n[blockquote author=\"\" link=\"\"
target=\"_blank\"]Lorem ipsum dolor sit amet enim. Etiam ullamcorper.
Suspendisse a pellentesque dui, non felis. Maecenas malesuada elit lectus
felis, malesuada ultricies. Curabitur et ligula. Ut molestie a, ultricies
porta urna.[/blockquote]\r\nMihi vero, inquit, placet agi subtilius et, ut
ipse dixisti, pressius. Inquit, an parum disserui non verbis Stoicos a
Peripateticis, sed universa re et tota sententia dissidere? Ego vero volo
in virtute vim esse quam maximam; Si enim ad populum me vocas, eum.
Videamus animi partes, quarum est conspectus illustrior; Et nemo nimium
beatus est.','Aenean ligula mol stie viver','Duis porttitor vel, eros.
Mauris nec adipiscing elit. Nam sed porta eget, neque. Pellentesque
fringilla neque quis blandit
venenatis.','inherit','closed','closed','','2285-revision-v1','','','2016-
04-29 11:51:24','2016-04-29
11:51:24','',2285,'http://139.59.234.208/2016/04/29/2285-revision-
v1/',0,'revision','',0),(2448,1,'2016-04-29 08:10:01','2016-04-29
08:10:01','Para Dosen dan mahasiswa STIKOM PROSIA hadir dalam acara try out
UN yang diselenggarakan oleh Nurul Fikri yang bekerjasama dengan RRI
Jakarta. Berlokasi di auditorium RRI, para peserta yang telah mengikuti
ujian try out diberikan berbagai informasi dari panitia tentang tips dan
trik memasuki perguruan tinggi negeri.\r\n\r\nAcara juga dimeriahkan oleh
penampilan Dosen dan mahasiswa STIJKOM PROSIA yang saat itu hadir dengan
memberikan olah tubuh senam otak. Para peserta yang sejak pagi sudah stress
menghadapi ujian try out, menjadi rileks dengan mengikuti gerakan senam
otak yang menghibur.\r\n\r\nTak hanya senam, para dosen STIKOM PROSIA juga
membekali siswa dengan motivasi dalam menghadapi perjuangan masuk perguruan
tinggi. Di akhir acara, mahasiswa STIKOM PROSIA memberikan door prize dan
hadiah hiburan kepada siswa peserta ujian try out yang berhasil menjawab
pertanyaan dan dapat mengikuti gerakan senam otak. (as)','Beri Motivasi
Peserta Try Out UN di RRI','','publish','open','open','','beri-motivasi-
peserta-try-out-un-di-rri','','','2016-04-29 12:37:48','2016-04-29
12:37:48','',0,'http://139.59.234.208/?p=2448',0,'post','',0),(2449,1,'2016
-04-29 12:09:51','2016-04-29 12:09:51','','sponsor
3','','inherit','open','closed','','sponsor-3','','','2016-04-29
12:09:51','2016-04-29 12:09:51','',2448,'http://139.59.234.208/wp-
content/uploads/2016/04/sponsor-
3.jpg',0,'attachment','image/jpeg',0),(2450,1,'2016-04-29 12:10:01','2016-
04-29 12:10:01','Para Dosen dan mahasiswa STIKOM PROSIA hadir dalam acara
try out UN yang diselenggarakan oleh Nurul Fikri yang bekerjasama dengan
RRI Jakarta. Berlokasi di auditorium RRI, para peserta yang telah mengikuti
ujian try out diberikan berbagai informasi dari panitia tentang tips dan
trik memasuki perguruan tinggi negeri.\r\n\r\nAcara juga dimeriahkan oleh
penampilan Dosen dan mahasiswa STIJKOM PROSIA yang saat itu hadir dengan
memberikan olah tubuh senam otak. Para peserta yang sejak pagi sudah stress
menghadapi ujian try out, menjadi rileks dengan mengikuti gerakan senam
otak yang menghibur.\r\n\r\nTak hanya senam, para dosen STIKOM PROSIA juga
membekali siswa dengan motivasi dalam menghadapi perjuangan masuk perguruan
tinggi. Di akhir acara, mahasiswa STIKOM PROSIA memberikan door prize dan
hadiah hiburan kepada siswa peserta ujian try out yang berhasil menjawab
pertanyaan dan dapat mengikuti gerakan senam otak. (as)','Beri Motivasi
Peserta Try Out UN di RRI','','inherit','closed','closed','','2448-
revision-v1','','','2016-04-29 12:10:01','2016-04-29
12:10:01','',2448,'http://139.59.234.208/2016/04/29/2448-revision-
v1/',0,'revision','',0),(2453,1,'2016-04-29 12:23:09','2016-04-29
12:23:09','Hari Sabtu sore, di tengah waktu istirahat kuliah, ada saja yang
dilakukan mahasiswa. Salah satunya yang dilakukan oleh anggota dari Unit
Kegiatan Mahasiswa Prosinema. Sabtu itu, para prosian (panggilan mahasiswa
STIKOM PROSIA), melakukan kegiatan shooting untuk sebuah program tayangan
anak muda seputar penampilan dan gaya hidup. Dengan bermodal kamera DSLR
dan microfon, mereka mencoba teknik wawancara on the street.\r\n\r\nSeperti
biasa, hasil video mereka selanjutnya diunggah di you tube dan ternyata
hasilnya sangat kreatif. Kalo dilihat sepintas seperti tayangan liputan di
salah satu televise swasta. Angle pengambilan gambar dan teknik editingnya
cukup menarik dan tak kalah dengan tayangan tv sesungguhnya.\r\n\r\nMemang
kumpul-kumpul mahasiswa mesti seperti ini. Kreatif. (as)','Kumpul Kreatif
ala Prosian','','publish','open','open','','kumpul-kreatif-ala-
prosian','','','2016-04-29 12:25:45','2016-04-29
12:25:45','',0,'http://139.59.234.208/?p=2453',0,'post','',0),(2454,1,'2016
-04-29 12:23:09','2016-04-29 12:23:09','Hari Sabtu sore, di tengah waktu
istirahat kuliah, ada saja yang dilakukan mahasiswa. Salah satunya yang
dilakukan oleh anggota dari Unit Kegiatan Mahasiswa Prosinema. Sabtu itu,
para prosian (panggilan mahasiswa STIKOM PROSIA), melakukan kegiatan
shooting untuk sebuah program tayangan anak muda seputar penampilan dan
gaya hidup. Dengan bermodal kamera DSLR dan microfon, mereka mencoba teknik
wawancara on the street.\r\n\r\nSeperti biasa, hasil video mereka
selanjutnya diunggah di you tube dan ternyata hasilnya sangat kreatif. Kalo
dilihat sepintas seperti tayangan liputan di salah satu televise swasta.
Angle pengambilan gambar dan teknik editingnya cukup menarik dan tak kalah
dengan tayangan tv sesungguhnya.\r\n\r\nMemang kumpul-kumpul mahasiswa
mesti seperti ini. Kreatif. (as)','Kumpul Kreatif ala
Prosian','','inherit','closed','closed','','2453-revision-v1','','','2016-
04-29 12:23:09','2016-04-29
12:23:09','',2453,'http://139.59.234.208/2016/04/29/2453-revision-
v1/',0,'revision','',0),(2456,1,'2016-04-29 12:25:34','2016-04-29
12:25:34','','kumpul kreatif','','inherit','open','closed','','kumpul-
kreatif','','','2016-04-29 12:25:34','2016-04-29
12:25:34','',2453,'http://139.59.234.208/wp-content/uploads/2016/04/kumpul-
kreatif.jpg',0,'attachment','image/jpeg',0),(2457,1,'2016-04-29
15:46:51','2016-04-29
15:46:51','','Ketua','','inherit','open','closed','','ketua','','','2016-
04-29 15:46:51','2016-04-29 15:46:51','',2356,'http://139.59.234.208/wp-
content/uploads/2016/04/Ketua.jpg',0,'attachment','image/jpeg',0),(2458,1,'
2016-04-29 15:51:58','2016-04-29
15:51:58','','Pendahuluan','','inherit','closed','closed','','2356-
autosave-v1','','','2016-04-29 15:51:58','2016-04-29
15:51:58','',2356,'http://139.59.234.208/2016/04/29/2356-autosave-
v1/',0,'revision','',0),(2460,1,'2016-05-03 07:15:00','2016-05-03
07:15:00','','20160503000719','','inherit','open','closed','','201605030007
19','','','2016-05-04 01:28:04','2016-05-04
01:28:04','',2367,'http://139.59.234.208/wp-
content/uploads/2016/04/20160503000719.jpg',0,'attachment','image/jpeg',0),
(2461,2,'2016-05-04 01:29:26','2016-05-04
01:29:26','','Alumni','','inherit','closed','closed','','2367-autosave-
v1','','','2016-05-04 01:29:26','2016-05-04
01:29:26','',2367,'http://139.59.234.208/2016/05/04/2367-autosave-
v1/',0,'revision','',0),(2462,1,'2016-05-11 02:49:05','0000-00-00
00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2016-
05-11 02:49:05','0000-00-00
00:00:00','',0,'http://139.59.234.208/?p=2462',0,'post','',0),(2463,1,'2016
-05-11 07:38:15','2016-05-11
07:38:15','','Lecturers','','publish','closed','closed','','lecturers','','
','2016-05-11 07:43:16','2016-05-11
07:43:16','',0,'http://139.59.234.208/?page_id=2463',0,'page','',0),(2464,1
,'2016-05-11 07:38:15','2016-05-11
07:38:15','','Lecturers','','inherit','closed','closed','','2463-revision-
v1','','','2016-05-11 07:38:15','2016-05-11
07:38:15','',2463,'http://139.59.234.208/2016/05/11/2463-revision-
v1/',0,'revision','',0),(2466,1,'2016-05-11 07:45:27','2016-05-11
07:45:27',' ','','','publish','closed','closed','','2466','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2466',5,'nav_menu_item','',0),(246
8,1,'2016-05-11 08:10:15','2016-05-11 08:10:15','<img class=\"size-full wp-
image-2469 aligncenter\" src=\"http://139.59.234.208/wp-
content/uploads/2016/05/symbolssymbols20121128133033.jpg\"
alt=\"symbolssymbols20121128133033\" width=\"189\" height=\"175\"
/>\r\n<ol>\r\n <li>Four points in a circle Mean: The communication has
dealt with in varieties of sciences or interdisciplinary.</li>\r\n
<li>Book and Pen Mean: The educational symbol and training as the
intelligence of Indonesians description.</li>\r\n <li>Five circles
within Mean: As the filter of official in communication and five rights of
Pancasila include Indonesian educational thoroughly.</li>\r\n
<li>Block points faces Mean: As the model of communication process
which has a mean that the relation of two ways communication in directly
among academic activities gathered with commonly.</li>\r\n</ol>','Symbols &
Value','','publish','closed','closed','','2468-2','','','2016-05-11
08:10:43','2016-05-11
08:10:43','',0,'http://139.59.234.208/?page_id=2468',0,'page','',0),(2469,1
,'2016-05-11 08:09:59','2016-05-11
08:09:59','','symbolssymbols20121128133033','','inherit','open','closed',''
,'symbolssymbols20121128133033','','','2016-05-11 08:09:59','2016-05-11
08:09:59','',2468,'http://139.59.234.208/wp-
content/uploads/2016/05/symbolssymbols20121128133033.jpg',0,'attachment','i
mage/jpeg',0),(2470,1,'2016-05-11 08:10:15','2016-05-11 08:10:15','<img
class=\"size-full wp-image-2469 aligncenter\"
src=\"http://139.59.234.208/wp-
content/uploads/2016/05/symbolssymbols20121128133033.jpg\"
alt=\"symbolssymbols20121128133033\" width=\"189\" height=\"175\"
/>\r\n<ol>\r\n <li>Four points in a circle Mean: The communication has
dealt with in varieties of sciences or interdisciplinary.</li>\r\n
<li>Book and Pen Mean: The educational symbol and training as the
intelligence of Indonesians description.</li>\r\n <li>Five circles
within Mean: As the filter of official in communication and five rights of
Pancasila include Indonesian educational thoroughly.</li>\r\n
<li>Block points faces Mean: As the model of communication process
which has a mean that the relation of two ways communication in directly
among academic activities gathered with
commonly.</li>\r\n</ol>','','','inherit','closed','closed','','2468-
revision-v1','','','2016-05-11 08:10:15','2016-05-11
08:10:15','',2468,'http://139.59.234.208/2016/05/11/2468-revision-
v1/',0,'revision','',0),(2471,1,'2016-05-11 08:10:43','2016-05-11
08:10:43','<img class=\"size-full wp-image-2469 aligncenter\"
src=\"http://139.59.234.208/wp-
content/uploads/2016/05/symbolssymbols20121128133033.jpg\"
alt=\"symbolssymbols20121128133033\" width=\"189\" height=\"175\"
/>\r\n<ol>\r\n <li>Four points in a circle Mean: The communication has
dealt with in varieties of sciences or interdisciplinary.</li>\r\n
<li>Book and Pen Mean: The educational symbol and training as the
intelligence of Indonesians description.</li>\r\n <li>Five circles
within Mean: As the filter of official in communication and five rights of
Pancasila include Indonesian educational thoroughly.</li>\r\n
<li>Block points faces Mean: As the model of communication process
which has a mean that the relation of two ways communication in directly
among academic activities gathered with commonly.</li>\r\n</ol>','Symbols &
Value','','inherit','closed','closed','','2468-revision-v1','','','2016-05-
11 08:10:43','2016-05-11
08:10:43','',2468,'http://139.59.234.208/2016/05/11/2468-revision-
v1/',0,'revision','',0),(2472,1,'2016-05-11 08:11:50','2016-05-11
08:11:50',' ','','','publish','closed','closed','','2472','','','2016-05-11
08:11:50','2016-05-11
08:11:50','',0,'http://139.59.234.208/?p=2472',4,'nav_menu_item','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`settings` longtext,
`hover` longtext,
`params` text NOT NULL,
`advanced` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;


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

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`params` text NOT NULL,
`settings` text,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

LOCK TABLES `wp_revslider_layer_animations` WRITE;


/*!40000 ALTER TABLE `wp_revslider_layer_animations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL,
`handle` varchar(191) NOT NULL,
`css` longtext NOT NULL,
`markup` longtext NOT NULL,
`settings` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

LOCK TABLES `wp_revslider_navigations` WRITE;


/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`title` tinytext NOT NULL,
`alias` tinytext,
`params` longtext NOT NULL,
`settings` text,
`type` varchar(191) NOT NULL DEFAULT '',
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;


/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'Home
University','university','{\"title\":\"Home
University\",\"alias\":\"university\",\"shortcode\":\"[rev_slider
university]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_ca
tegory\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"ma
x_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\
",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_con
tainer\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\
",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_
width\":\"off\",\"width\":\"1180\",\"height\":\"850\",\"responsitive_w1\":\
"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsit
ive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",
\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"
0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6
\":\"0\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use
_wpml\":\"off\",\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_sl
ide\":2,\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"marg
in_left\":0,\"margin_right\":0,\"shadow_type\":\"0\",\"show_timerbar\":\"hi
de\",\"padding\":0,\"background_color\":\"\",\"background_dotted_overlay\":
\"none\",\"show_background_image\":\"false\",\"background_image\":\"http:\\
/\\/themes.muffingroup.com\\/betheme\\/wp-
content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-
repeat\",\"bg_position\":\"center
top\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parall
ax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5
\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level
_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"paral
lax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\
",\"parallax_level_10\":\"50\",\"use_spinner\":\"0\",\"spinner_color\":\"#F
FFFFF\",\"stop_on_hover\":\"off\",\"keyboard_navigation\":\"off\",\"navigat
ion_style\":\"round\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"n
one\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_ali
gn_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_
hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\
"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_
offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\
":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"th
umb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"touchenabled\":\"o
n\",\"swipe_velocity\":0.7,\"swipe_min_touches\":1,\"swipe_max_touches\":1,
\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"hide_slid
er_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"
hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_t
humbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_
delay_mobile\":1500,\"loop_slide\":\"noloop\",\"start_with_slide\":\"1\",\"
first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_
transition_slot_amount\":7,\"reset_transitions\":\"\",\"reset_transition_du
ration\":0,\"0\":\"Execute settings on all
slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_typ
e\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"
false\",\"version\":\"\"}','{\"version\":\"5.0.7\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`slider_id` int(9) NOT NULL,
`slide_order` int(11) NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;


/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES
(1,1,1,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/139.59.234.20
8\\/wp-content\\/uploads\\/2016\\/04\\/gambar-depan-
2.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"da
te_to\":\"\",\"slide_transition\":[\"fade\"],\"0\":\"Clear\",\"slot_amount\
":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"]
,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\
":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"
front\",\"slide_thumb\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg
_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"
no-repeat\",\"bg_position\":\"center
top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\"
:\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center
top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"
100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"save_per
formance\":\"off\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",
\"data_attr\":\"\",\"rs-gallery-
type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg
_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide
_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"ful
l\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920
\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\
":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"vid
eo_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_l
oop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"
video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arg
uments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"
title=0&byline=0&portrait=0&api=1\",\"kb_start_offset_x\":\"0\",\"kb_end_of
fset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_s
tart_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"image_id\":\"2422\",\"stoponp
urpose\":\"false\",\"invisibleslide\":\"false\",\"hideslideafter\":\"0\",\"
hideslideonmobile\":\"off\",\"thumb_dimension\":\"slider\",\"thumb_for_admi
n\":\"off\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\
"default\"],\"ph-round-arrows-bg-color-custom-slide\":\"off\",\"ph-round-
arrows-bg-color-custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-
slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-
arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-
color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-
slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-
arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-
bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-
slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-
bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-
top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-
slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-
color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-
slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-
round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-
size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-
slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-
color\":\"#666666\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\
":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\
",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_
chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\
",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"p
arams_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_cha
rs\":\"10\",\"slide_description\":\"\",\"0\":\"Clear\"}','[{\"style\":\"\",
\"text\":\"Image
6\",\"type\":\"image\",\"image_url\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/slogan-
1.png\",\"scaleX\":{\"desktop\":\"492\"},\"scaleY\":{\"desktop\":\"217\"},\
"originalWidth\":436,\"originalHeight\":183,\"special_type\":null,\"subtype
\":\"\",\"specialsettings\":{},\"unique_id\":7,\"left\":{\"desktop\":560},\
"top\":{\"desktop\":2},\"internal_class\":\"\",\"hover\":false,\"alias\":\"
image
6\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_s
peed\":\"2\",\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\
"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"h
tml_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse
\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\
":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\
"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_e
nd_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\"
:false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scal
e_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_rever
se\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask
_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_revers
e\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_star
t\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"in
herit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"al
t\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\
":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"a
ctioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[]
,\"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"deskt
op\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desk
top\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":0,\"2
d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},
\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},
\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":tru
e,\"seo-
optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"
visible-desktop\":true,\"visible-notebook\":true,\"visible-
tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":492,\"height\":217,\"
cover_mode\":\"custom\",\"static_styles\":{\"font-
size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-
weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_sta
rt\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":
\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\
"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\
":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\
"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":
\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"sca
le_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inhe
rit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\"
:{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-
style\":\"normal\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"text-align\":\"left\",\"text-
transform\":\"none\",\"background-color\":\"transparent\",\"background-
transparency\":\"1\",\"border-color\":\"transparent\",\"border-
transparency\":\"1\",\"border-style\":\"none\",\"border-
width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\"
:\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"paralla
x\":\"-\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-
transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-
dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-
color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-
hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-
hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#ffffff\",\"color-
transparency\":\"1\",\"text-decoration\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":\"0\",\"border-
color\":\"transparent\",\"border-transparency\":\"1\",\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":5
0,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\
"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\
",\"serial\":0,\"split_in_extratime\":-10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"text
toggle\":\"\",\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\
":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-
selectable\":\"default\",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_spe
ed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"link\":\"\",\"link
_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\
"static_styles\":{\"font-size\":{\"desktop\":\"\"},\"line-
height\":{\"desktop\":\"\"},\"font-
weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"\"}},\"deformation\
":{\"background-color\":\"#f9f9f9\",\"background-
transparency\":\"0.5\",\"border-color\":\"#000000\",\"border-
opacity\":\"0.5\",\"border-transparency\":\"0.5\",\"border-
width\":\"0\",\"border-style\":\"solid\",\"border-
radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-
family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-
style\":\"normal\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"text-align\":\"left\",\"text-
transform\":\"none\",\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\
",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrota
te\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"cor
ner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-
\"},\"deformation-hover\":{\"color\":\"#ffffff\",\"color-
transparency\":\"1\",\"text-decoration\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":\"0\",\"border-
color\":\"transparent\",\"border-transparency\":\"1\",\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":5
0,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\
"text\":\"
\",\"alias\":\"Shape\",\"type\":\"shape\",\"style\":\"\",\"internal_class\"
:\"tp-shape tp-
shapewrapper\",\"autolinebreak\":true,\"max_width\":{\"desktop\":\"590px\"}
,\"max_height\":{\"desktop\":\"139\"},\"subtype\":\"\",\"specialsettings\":
{},\"unique_id\":9,\"left\":{\"desktop\":-
1},\"top\":{\"desktop\":703},\"hover\":false,\"loop_animation\":\"none\",\"
loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\
"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"h
tml_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse
\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\
":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\
"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_e
nd_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\"
:false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scal
e_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_rever
se\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask
_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_revers
e\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_star
t\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"in
herit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"al
t\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\
":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"a
ctioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[]
,\"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"video_width\":{\"desk
top\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":0,\"2
d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},
\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},
\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":tru
e,\"seo-
optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"
visible-desktop\":true,\"visible-notebook\":true,\"visible-
tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":201,\"height\":138,\"
cover_mode\":\"custom\",\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z
_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":
\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\
":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\"
,\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\"
:\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"
scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"in
herit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_en
d\":\"inherit\",\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-
transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-
dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-
color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-
hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-
hover-
width\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_
memory\":\"keep\",\"serial\":1,\"split_in_extratime\":-
10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"text
toggle\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\
"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle
\":\"\",\"attrRel\":\"\",\"layer-
selectable\":\"default\",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_spe
ed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"link\":\"\",\"link
_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\
"style\":\"\",\"text\":\"Image
7\",\"type\":\"image\",\"image_url\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/dibuka-
pendaftaran.png\",\"scaleX\":{\"desktop\":\"326px\"},\"scaleY\":{\"desktop\
":\"137px\"},\"originalWidth\":436,\"originalHeight\":183,\"special_type\":
null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":8,\"left\":{\"de
sktop\":63},\"top\":{\"desktop\":703},\"internal_class\":\"\",\"hover\":fal
se,\"alias\":\"image
7\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_s
peed\":\"2\",\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\
"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"h
tml_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse
\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\
":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\
"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_e
nd_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\"
:false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scal
e_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_rever
se\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask
_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_revers
e\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_star
t\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"in
herit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"al
t\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\
":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"a
ctioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[]
,\"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"deskt
op\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desk
top\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":0,\"2
d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},
\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},
\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":tru
e,\"seo-
optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"
visible-desktop\":true,\"visible-notebook\":true,\"visible-
tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":326,\"height\":137,\"
cover_mode\":\"custom\",\"static_styles\":{\"font-
size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-
weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_sta
rt\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":
\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\
"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\
":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\
"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":
\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"sca
le_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inhe
rit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\"
:{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-
style\":\"normal\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"text-align\":\"left\",\"text-
transform\":\"none\",\"background-color\":\"transparent\",\"background-
transparency\":\"1\",\"border-color\":\"transparent\",\"border-
transparency\":\"1\",\"border-style\":\"none\",\"border-
width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\"
:\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"paralla
x\":\"-\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-
transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-
dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-
color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-
hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-
hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#ffffff\",\"color-
transparency\":\"1\",\"text-decoration\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":\"0\",\"border-
color\":\"transparent\",\"border-transparency\":\"1\",\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":5
0,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\
"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\
",\"serial\":2,\"split_in_extratime\":-10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"text
toggle\":\"\",\"autolinebreak\":true,\"scaleProportional\":false,\"attrID\"
:\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-
selectable\":\"default\",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_spe
ed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"link\":\"\",\"link
_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\
"style\":\"\",\"text\":\"Image
6\",\"type\":\"image\",\"image_url\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/welcome.png\",\"scaleX\":{\"desktop\":436},
\"scaleY\":{\"desktop\":137},\"originalWidth\":436,\"originalHeight\":137,\
"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":
10,\"left\":{\"desktop\":28},\"top\":{\"desktop\":70},\"internal_class\":\"
\",\"hover\":false,\"alias\":\"image
6\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_s
peed\":2,\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":1
,\"loop_zoomend\":1,\"loop_angle\":0,\"loop_radius\":10,\"html_tag\":\"div\
",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_start\":false,\"mask_end\"
:false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\
":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate
_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reve
rse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\
"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_en
d_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":fa
lse,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_en
d_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":f
alse,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_sta
rt\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_star
t\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inhe
rit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\
":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":
[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"act
ioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\
"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":10,\"endsplitdelay\":10,\"max_height\":{\"desktop\":\"a
uto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":48
0},\"video_height\":{\"desktop\":360},\"2d_rotation\":0,\"2d_origin_x\":50,
\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},\"static_end\":\
"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{
\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-
optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"
nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-
notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-
full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":436,\"height\":137,\"
cover_mode\":\"custom\",\"static_styles\":{\"font-
size\":{\"desktop\":20},\"line-height\":{\"desktop\":22},\"font-
weight\":{\"desktop\":400},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\"
:\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"in
herit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\"
,\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"
inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_r
otate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"in
herit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y
_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\
",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"in
herit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-
family\":\"\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-
transparency\":1,\"text-decoration\":\"none\",\"text-
align\":\"left\",\"text-transform\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":1,\"border-
color\":\"transparent\",\"border-transparency\":1,\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[0,0,0,0],\"x\":0,\"y\":0,\"z\":0,\"skewx\":0,\"skewy\":0,\"scalex
\":1,\"scaley\":1,\"opacity\":1,\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\"
:50,\"2d_origin_y\":50,\"pers\":600,\"corner_left\":\"nothing\",\"corner_ri
ght\":\"nothing\",\"parallax\":\"-\"},\"svg\":{\"svgstroke-
color\":\"transparent\",\"svgstroke-transparency\":1,\"svgstroke-
dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-
width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-
transparency\":1,\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-
dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-
hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"background-color\":\"transparent\",\"background-
transparency\":0,\"border-color\":\"transparent\",\"border-
transparency\":\"1\",\"border-style\":\"none\",\"border-width\":0,\"border-
radius\":[0,0,0,0],\"x\":0,\"y\":0,\"z\":0,\"skewx\":0,\"skewy\":0,\"scalex
\":1,\"scaley\":1,\"opacity\":1,\"xrotate\":0,\"yrotate\":0,\"2d_rotation\"
:0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":0,\"easing\":\"Linear.ea
seNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":
\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"split_in_extratime\":-
10,\"split_out_extratime\":-
10,\"endWithSlide\":true}]','\"\"'),(3,1,2,'{\"background_type\":\"image\",
\"image\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/kumpul-
kreatif.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\
",\"date_to\":\"\",\"slide_transition\":[\"crossfade\",\"zoomin\",\"zoomout
\"],\"0\":\"Clear\",\"slot_amount\":[\"default\",\"default\",\"default\"],\
"transition_rotation\":[\"0\",\"0\",\"0\"],\"transition_duration\":[\"defau
lt\",\"default\",\"default\"],\"delay\":\"\",\"enable_link\":\"false\",\"li
nk_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\
":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/139.59.23
4.208\\/wp-
content\\/\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg
_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"
no-repeat\",\"bg_position\":\"center
top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\"
:\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center
top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"
100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"save_per
formance\":\"off\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",
\"data_attr\":\"\",\"rs-gallery-
type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg
_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide
_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"ful
l\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920
\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\
":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"vid
eo_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_l
oop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"
video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arg
uments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"
title=0&byline=0&portrait=0&api=1\",\"kb_start_offset_x\":\"0\",\"kb_end_of
fset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_s
tart_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"image_id\":\"2456\",\"stoponp
urpose\":\"false\",\"invisibleslide\":\"false\",\"hideslideafter\":\"0\",\"
hideslideonmobile\":\"off\",\"thumb_dimension\":\"slider\",\"thumb_for_admi
n\":\"off\",\"transition_ease_in\":[\"default\",\"default\",\"default\"],\"
transition_ease_out\":[\"default\",\"default\",\"default\"],\"ph-round-
arrows-bg-color-custom-slide\":\"off\",\"ph-round-arrows-bg-color-
custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-
slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-
arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-
color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-
slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-
arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-
bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-
slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-
bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-
top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-
slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-
color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-
slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-
round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-
size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-
slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-
color\":\"#666666\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\
":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\
",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_
chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\
",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"p
arams_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_cha
rs\":\"10\",\"slide_description\":\"\",\"0\":\"Clear\"}','[{\"style\":\"\",
\"text\":\"Image
6\",\"type\":\"image\",\"image_url\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/slogan-
1.png\",\"scaleX\":{\"desktop\":\"492\"},\"scaleY\":{\"desktop\":\"217\"},\
"originalWidth\":436,\"originalHeight\":183,\"special_type\":null,\"subtype
\":\"\",\"specialsettings\":{},\"unique_id\":7,\"left\":{\"desktop\":560},\
"top\":{\"desktop\":2},\"internal_class\":\"\",\"hover\":false,\"alias\":\"
image
6\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_s
peed\":\"2\",\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\
"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"h
tml_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse
\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\
":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\
"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_e
nd_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\"
:false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scal
e_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_rever
se\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask
_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_revers
e\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_star
t\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"in
herit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"al
t\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\
":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"a
ctioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[]
,\"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"deskt
op\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desk
top\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":0,\"2
d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},
\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},
\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":tru
e,\"seo-
optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"
visible-desktop\":true,\"visible-notebook\":true,\"visible-
tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":492,\"height\":217,\"
cover_mode\":\"custom\",\"static_styles\":{\"font-
size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-
weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_sta
rt\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":
\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\
"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\
":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\
"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":
\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"sca
le_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inhe
rit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\"
:{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-
style\":\"normal\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"text-align\":\"left\",\"text-
transform\":\"none\",\"background-color\":\"transparent\",\"background-
transparency\":\"1\",\"border-color\":\"transparent\",\"border-
transparency\":\"1\",\"border-style\":\"none\",\"border-
width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\"
:\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"paralla
x\":\"-\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-
transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-
dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-
color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-
hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-
hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#ffffff\",\"color-
transparency\":\"1\",\"text-decoration\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":\"0\",\"border-
color\":\"transparent\",\"border-transparency\":\"1\",\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":5
0,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\
"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\
",\"serial\":0,\"split_in_extratime\":-10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"text
toggle\":\"\",\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\
":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-
selectable\":\"default\",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_spe
ed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"link\":\"\",\"link
_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"s
tatic_start\":\"1\"},{\"static_styles\":{\"font-
size\":{\"desktop\":\"\"},\"line-height\":{\"desktop\":\"\"},\"font-
weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"\"}},\"deformation\
":{\"background-color\":\"#f9f9f9\",\"background-
transparency\":\"0.5\",\"border-color\":\"#000000\",\"border-
opacity\":\"0.5\",\"border-transparency\":\"0.5\",\"border-
width\":\"0\",\"border-style\":\"solid\",\"border-
radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-
family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-
style\":\"normal\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"text-align\":\"left\",\"text-
transform\":\"none\",\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\
",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrota
te\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"cor
ner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-
\"},\"deformation-hover\":{\"color\":\"#ffffff\",\"color-
transparency\":\"1\",\"text-decoration\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":\"0\",\"border-
color\":\"transparent\",\"border-transparency\":\"1\",\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":5
0,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\
"text\":\"
\",\"alias\":\"Shape\",\"type\":\"shape\",\"style\":\"\",\"internal_class\"
:\"tp-shape tp-
shapewrapper\",\"autolinebreak\":true,\"max_width\":{\"desktop\":\"590px\"}
,\"max_height\":{\"desktop\":\"139\"},\"subtype\":\"\",\"specialsettings\":
{},\"unique_id\":9,\"left\":{\"desktop\":-
1},\"top\":{\"desktop\":703},\"hover\":false,\"loop_animation\":\"none\",\"
loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\
"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"h
tml_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse
\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\
":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\
"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_e
nd_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\"
:false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scal
e_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_rever
se\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask
_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_revers
e\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_star
t\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"in
herit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"al
t\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\
":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"a
ctioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[]
,\"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"video_width\":{\"desk
top\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":0,\"2
d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},
\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},
\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":tru
e,\"seo-
optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"
visible-desktop\":true,\"visible-notebook\":true,\"visible-
tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":201,\"height\":138,\"
cover_mode\":\"custom\",\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z
_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":
\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\
":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\"
,\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\"
:\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"
scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"in
herit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_en
d\":\"inherit\",\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-
transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-
dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-
color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-
hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-
hover-
width\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_
memory\":\"keep\",\"serial\":1,\"split_in_extratime\":-
10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"text
toggle\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\
"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle
\":\"\",\"attrRel\":\"\",\"layer-
selectable\":\"default\",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_spe
ed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"link\":\"\",\"link
_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"s
tatic_start\":\"1\"},{\"style\":\"\",\"text\":\"Image
7\",\"type\":\"image\",\"image_url\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/dibuka-
pendaftaran.png\",\"scaleX\":{\"desktop\":\"326px\"},\"scaleY\":{\"desktop\
":\"137px\"},\"originalWidth\":436,\"originalHeight\":183,\"special_type\":
null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":8,\"left\":{\"de
sktop\":63},\"top\":{\"desktop\":703},\"internal_class\":\"\",\"hover\":fal
se,\"alias\":\"image
7\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_s
peed\":\"2\",\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\
"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"h
tml_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse
\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\
":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\
"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_e
nd_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\"
:false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scal
e_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_rever
se\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask
_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_revers
e\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_star
t\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"in
herit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"al
t\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\
":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"a
ctioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[]
,\"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"deskt
op\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desk
top\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":0,\"2
d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},
\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},
\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":tru
e,\"seo-
optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"
visible-desktop\":true,\"visible-notebook\":true,\"visible-
tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":326,\"height\":137,\"
cover_mode\":\"custom\",\"static_styles\":{\"font-
size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-
weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_sta
rt\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":
\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\
"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\
":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\
"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":
\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"sca
le_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inhe
rit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\"
:{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-
style\":\"normal\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"text-align\":\"left\",\"text-
transform\":\"none\",\"background-color\":\"transparent\",\"background-
transparency\":\"1\",\"border-color\":\"transparent\",\"border-
transparency\":\"1\",\"border-style\":\"none\",\"border-
width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\"
:\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"paralla
x\":\"-\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-
transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-
dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-
color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-
hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-
hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#ffffff\",\"color-
transparency\":\"1\",\"text-decoration\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":\"0\",\"border-
color\":\"transparent\",\"border-transparency\":\"1\",\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",
\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrota
te\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":5
0,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\
"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\
",\"serial\":2,\"split_in_extratime\":-10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"text
toggle\":\"\",\"autolinebreak\":true,\"scaleProportional\":false,\"attrID\"
:\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-
selectable\":\"default\",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_spe
ed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"link\":\"\",\"link
_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"s
tatic_start\":\"1\"},{\"style\":\"\",\"text\":\"Image
6\",\"type\":\"image\",\"image_url\":\"http:\\/\\/139.59.234.208\\/wp-
content\\/uploads\\/2016\\/04\\/welcome.png\",\"scaleX\":{\"desktop\":436},
\"scaleY\":{\"desktop\":137},\"originalWidth\":436,\"originalHeight\":137,\
"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":
10,\"left\":{\"desktop\":28},\"top\":{\"desktop\":70},\"internal_class\":\"
\",\"hover\":false,\"alias\":\"image
6\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_s
peed\":2,\"loop_startdeg\":-
20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart
\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":1
,\"loop_zoomend\":1,\"loop_angle\":0,\"loop_radius\":10,\"html_tag\":\"div\
",\"parallax_layer_ddd_zlevel\":\"front\",\"mask_start\":false,\"mask_end\"
:false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\
":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate
_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reve
rse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\
"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_en
d_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":fa
lse,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_en
d_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":f
alse,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_sta
rt\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_star
t\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inhe
rit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\
":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":
[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"act
ioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\
"toggle_layer_type\":[],\"toggle_class\":[]},\"animation\":\"tp-
fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"no
ne\",\"splitdelay\":10,\"endsplitdelay\":10,\"max_height\":{\"desktop\":\"a
uto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":48
0},\"video_height\":{\"desktop\":360},\"2d_rotation\":0,\"2d_origin_x\":50,
\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},\"static_end\":\
"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{
\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-
optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"
nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-
notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-
full\":true,\"show-on-
hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-
load\":\"auto\",\"image-
size\":\"auto\",\"time\":2300,\"endspeed\":300,\"endtime\":9300,\"endanimat
ion\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":436,\"height\":137,\"
cover_mode\":\"custom\",\"static_styles\":{\"font-
size\":{\"desktop\":20},\"line-height\":{\"desktop\":22},\"font-
weight\":{\"desktop\":400},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\"
:\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"in
herit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\"
,\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"
inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_r
otate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"in
herit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y
_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\
",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"in
herit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-
family\":\"\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-
transparency\":1,\"text-decoration\":\"none\",\"text-
align\":\"left\",\"text-transform\":\"none\",\"background-
color\":\"transparent\",\"background-transparency\":1,\"border-
color\":\"transparent\",\"border-transparency\":1,\"border-
style\":\"none\",\"border-width\":\"0\",\"border-
radius\":[0,0,0,0],\"x\":0,\"y\":0,\"z\":0,\"skewx\":0,\"skewy\":0,\"scalex
\":1,\"scaley\":1,\"opacity\":1,\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\"
:50,\"2d_origin_y\":50,\"pers\":600,\"corner_left\":\"nothing\",\"corner_ri
ght\":\"nothing\",\"parallax\":\"-\"},\"svg\":{\"svgstroke-
color\":\"transparent\",\"svgstroke-transparency\":1,\"svgstroke-
dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-
width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-
transparency\":1,\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-
dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-
hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-
decoration\":\"none\",\"background-color\":\"transparent\",\"background-
transparency\":0,\"border-color\":\"transparent\",\"border-
transparency\":\"1\",\"border-style\":\"none\",\"border-width\":0,\"border-
radius\":[0,0,0,0],\"x\":0,\"y\":0,\"z\":0,\"skewx\":0,\"skewy\":0,\"scalex
\":1,\"scaley\":1,\"opacity\":1,\"xrotate\":0,\"yrotate\":0,\"2d_rotation\"
:0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":0,\"easing\":\"Linear.ea
seNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":
\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"split_in_extratime\":-
10,\"split_out_extratime\":-
10,\"endWithSlide\":true,\"static_start\":\"1\"}]','\"\"'),(4,1,3,'{\"backg
round_type\":\"trans\"}','','');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;


/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`slider_id` int(9) NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

LOCK TABLES `wp_revslider_static_slides` WRITE;


/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_static_slides` 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),(2283,3,0),(2283,4,0),(2285,3,0),(2285,5,0),(2287,3,0),(2289,3,0),(
2325,6,0),(2326,6,0),(2327,6,0),(2328,6,0),(2329,6,0),(2348,6,0),(2349,6,0)
,(2350,6,0),(2358,6,0),(2364,7,0),(2369,6,0),(2370,6,0),(2371,7,0),(2375,8,
0),(2377,8,0),(2379,6,0),(2388,2,0),(2394,2,0),(2401,2,0),(2409,2,0),(2433,
2,0),(2441,2,0),(2448,2,0),(2453,2,0),(2466,6,0),(2472,6,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=9 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_taxonomy` WRITE;


/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES
(1,1,'category','',0,0),(2,2,'category','',0,8),(3,3,'category','',0,4),(4,
4,'post_tag','',0,1),(5,5,'post_tag','',0,1),(6,6,'nav_menu','',0,14),(7,7,
'category','',0,2),(8,8,'category','',0,2);
/*!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=9 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,'News','news',0),(3,'Stories','sto
ries',0),(4,'Design','design',0),(5,'Themeforest','themeforest',0),(6,'Main
Menu','main-menu',0),(7,'Job
Vacancies','job_vacancy',0),(8,'Research','research',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=75 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,'d
escription',''),(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_fro
nt','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(1
1,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','vc_pointers_backen
d_editor,vc_pointers_frontend_editor'),(13,1,'show_welcome_panel','0'),(15,
1,'wp_dashboard_quick_press_last_post_id','2462'),(16,1,'wp_user-
settings','libraryContent=browse&editor=tinymce'),(17,1,'wp_user-settings-
time','1461887443'),(20,1,'closedpostboxes_page','a:0:{}'),(21,1,'metaboxhi
dden_page','a:6:{i:0;s:19:\"wpb_visual_composer\";i:1;s:10:\"postcustom\";i
:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i
:5;s:9:\"authordiv\";}'),(22,1,'nav_menu_recently_edited','6'),(23,1,'manag
enav-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\";}'),(24,1,'metaboxhidden_nav-menus','a:14:{i:0;s:20:\"add-post-
type-client\";i:1;s:19:\"add-post-type-offer\";i:2;s:23:\"add-post-type-
portfolio\";i:3;s:19:\"add-post-type-slide\";i:4;s:25:\"add-post-type-
testimonial\";i:5;s:20:\"add-post-type-layout\";i:6;s:22:\"add-post-type-
template\";i:7;s:12:\"add-post_tag\";i:8;s:15:\"add-
post_format\";i:9;s:16:\"add-client-types\";i:10;s:15:\"add-offer-
types\";i:11;s:19:\"add-portfolio-types\";i:12;s:15:\"add-slide-
types\";i:13;s:21:\"add-testimonial-
types\";}'),(25,1,'layerslider_help_wp_pointer','1'),(26,1,'wp_r_tru_u_x','
a:2:{s:2:\"id\";i:0;s:7:\"expires\";i:1461380736;}'),(27,2,'nickname','angg
oro'),(28,2,'first_name',''),(29,2,'last_name',''),(30,2,'description',''),
(31,2,'rich_editing','true'),(32,2,'comment_shortcuts','false'),(33,2,'admi
n_color','fresh'),(34,2,'use_ssl','0'),(35,2,'show_admin_bar_front','true')
,(36,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(37,2,'wp_use
r_level','10'),(38,2,'dismissed_wp_pointers',''),(39,3,'nickname','siska'),
(40,3,'first_name',''),(41,3,'last_name',''),(42,3,'description',''),(43,3,
'rich_editing','true'),(44,3,'comment_shortcuts','false'),(45,3,'admin_colo
r','fresh'),(46,3,'use_ssl','0'),(47,3,'show_admin_bar_front','true'),(48,3
,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(49,3,'wp_user_leve
l','10'),(50,3,'dismissed_wp_pointers',''),(51,4,'nickname','dania'),(52,4,
'first_name',''),(53,4,'last_name',''),(54,4,'description',''),(55,4,'rich_
editing','true'),(56,4,'comment_shortcuts','false'),(57,4,'admin_color','fr
esh'),(58,4,'use_ssl','0'),(59,4,'show_admin_bar_front','true'),(60,4,'wp_c
apabilities','a:1:{s:13:\"administrator\";b:1;}'),(61,4,'wp_user_level','10
'),(62,4,'dismissed_wp_pointers',''),(63,1,'closedpostboxes_dashboard','a:1
:{i:0;s:12:\"gadwp-
widget\";}'),(64,1,'metaboxhidden_dashboard','a:0:{}'),(65,1,'wp_media_libr
ary_mode','grid'),(66,1,'closedpostboxes_attachment','a:0:{}'),(67,1,'metab
oxhidden_attachment','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"comment
sdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(68,2,'default_passwor
d_nag',''),(69,2,'session_tokens','a:1:{s:64:\"23acb43346c9cdd46120974dd2f1
2846d5a5f0b2067273246f07dca2a57f7b58\";a:4:{s:10:\"expiration\";i:146249795
6;s:2:\"ip\";s:13:\"125.161.217.6\";s:2:\"ua\";s:68:\"Mozilla/5.0 (Windows
NT 6.1; WOW64; Trident/7.0; rv:11.0) like
Gecko\";s:5:\"login\";i:1462325156;}}'),(70,2,'wp_dashboard_quick_press_las
t_post_id','2459'),(72,2,'wp_user-
settings','libraryContent=browse'),(73,2,'wp_user-settings-
time','1462325258'),(74,1,'session_tokens','a:1:{s:64:\"296017a1ed76463c8d9
38b18e67b50cc266ed73b66dab271371fc15ed52f6f36\";a:4:{s:10:\"expiration\";i:
1463211697;s:2:\"ip\";s:14:\"101.255.72.178\";s:2:\"ua\";s:120:\"Mozilla/5.
0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/50.0.2661.94 Safari/537.36\";s:5:\"login\";i:1463038897;}}');
/*!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=5 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$B5BXCF3l9PcMe56RIgFLnSxwfmctdZ1','admin','aris@rubyh.co','',
'2016-04-21
09:48:47','',0,'admin'),(2,'anggoro','$P$Ba0gTVkqM1tfQo.vWTNVW7NRI5XBVV/','
anggoro','anggorosantoso2104@gmail.com','','2016-04-28
07:00:53','',0,'anggoro'),(3,'siska','$P$B6MiQULk0w2XFvKf0.aPUW5A1Nf8bY1','
siska','fransiska.yunita@ymail.com','','2016-04-28
07:03:49','1461827029:$P$BqkNkm67r2DtICFSRm4FFxcu8xXMsU0',0,'siska'),(4,'da
nia','$P$BSbnkIOj7Tdoae92uQiLguFCQ6Dfiw.','dania','fwrahmadania@gmail.com',
'','2016-04-28
07:04:23','1461827063:$P$BNc1Q0DW/UKvleRmVLzYkqhhArsU/d1',0,'dania');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;


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

-- Dump completed on 2016-05-13 6:36:31

You might also like