/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2017-05-22 15:35:57 */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wpos_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_datalist` (
  `url` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `keywords` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `content` longtext NOT NULL,
  `full_content` smallint(6) NOT NULL,
  PRIMARY KEY (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wpos_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `hash` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpos_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2009 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3222 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=9906 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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=141 DEFAULT CHARSET=latin1;

CREATE TABLE `wpos_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 AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;

CREATE TABLE `wpos_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `css` mediumtext NOT NULL,
  `markup` mediumtext NOT NULL,
  `settings` mediumtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wpos_revslider_settings` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `general` text NOT NULL,
  `params` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `wpos_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=7 DEFAULT CHARSET=latin1;

CREATE TABLE `wpos_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=36 DEFAULT CHARSET=latin1;

CREATE TABLE `wpos_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;

CREATE TABLE `wpos_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_announcements` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `date` datetime DEFAULT NULL,
  `title` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `announcement` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `published` tinyint(1) NOT NULL,
  `parentid` int(10) NOT NULL,
  `language` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `date` (`date`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_clientgroups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `groupname` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `groupcolour` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `discountpercent` decimal(10,2) unsigned DEFAULT '0.00',
  `susptermexempt` text CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `separateinvoices` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_configuration` (
  `setting` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  KEY `setting` (`setting`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_countries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `country_code` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `country_name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_currencies` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `code` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `prefix` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `suffix` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `format` int(1) NOT NULL,
  `rate` decimal(10,5) NOT NULL DEFAULT '1.00000',
  `default` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_domainpricing` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `extension` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `dnsmanagement` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `emailforwarding` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `idprotection` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `eppcode` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `autoreg` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `order` int(1) NOT NULL DEFAULT '0',
  `group` varchar(5) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'none',
  PRIMARY KEY (`id`),
  KEY `extension_registrationperiod` (`extension`(32)),
  KEY `order` (`order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_pricing` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `type` enum('product','addon','configoptions','domainregister','domaintransfer','domainrenew','domainaddons') CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `currency` int(10) NOT NULL,
  `relid` int(10) NOT NULL,
  `msetupfee` decimal(10,2) NOT NULL,
  `qsetupfee` decimal(10,2) NOT NULL,
  `ssetupfee` decimal(10,2) NOT NULL,
  `asetupfee` decimal(10,2) NOT NULL,
  `bsetupfee` decimal(10,2) NOT NULL,
  `tsetupfee` decimal(10,2) NOT NULL,
  `monthly` decimal(10,2) NOT NULL,
  `quarterly` decimal(10,2) NOT NULL,
  `semiannually` decimal(10,2) NOT NULL,
  `annually` decimal(10,2) NOT NULL,
  `biennially` decimal(10,2) NOT NULL,
  `triennially` decimal(10,2) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_productconfiglinks` (
  `gid` int(10) NOT NULL,
  `pid` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_productconfigoptions` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `gid` int(10) NOT NULL DEFAULT '0',
  `optionname` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `optiontype` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `qtyminimum` int(10) NOT NULL,
  `qtymaximum` int(10) NOT NULL,
  `order` int(1) NOT NULL DEFAULT '0',
  `hidden` int(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `productid` (`gid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_productconfigoptionssub` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `configid` int(10) NOT NULL,
  `optionname` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `sortorder` int(10) NOT NULL DEFAULT '0',
  `hidden` int(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `configid` (`configid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_productgroups` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `headline` text CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `tagline` text CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `orderfrmtpl` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `disabledgateways` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `hidden` tinyint(1) NOT NULL,
  `order` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `order` (`order`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_products` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `type` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `gid` int(10) NOT NULL,
  `name` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `hidden` tinyint(1) NOT NULL,
  `showdomainoptions` tinyint(1) NOT NULL,
  `welcomeemail` int(10) NOT NULL DEFAULT '0',
  `stockcontrol` tinyint(1) NOT NULL,
  `qty` int(10) NOT NULL DEFAULT '0',
  `proratabilling` tinyint(1) NOT NULL,
  `proratadate` int(2) NOT NULL,
  `proratachargenextmonth` int(2) NOT NULL,
  `paytype` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `allowqty` int(1) NOT NULL,
  `subdomain` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `autosetup` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `servertype` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `servergroup` int(10) NOT NULL,
  `configoption1` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption2` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption3` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption4` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption5` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption6` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption7` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption8` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption9` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption10` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption11` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption12` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption13` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption14` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption15` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption16` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption17` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption18` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption19` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption20` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption21` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption22` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption23` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `configoption24` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `freedomain` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `freedomainpaymentterms` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `freedomaintlds` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `recurringcycles` int(2) NOT NULL,
  `autoterminatedays` int(4) NOT NULL,
  `autoterminateemail` int(10) NOT NULL DEFAULT '0',
  `configoptionsupgrade` tinyint(1) NOT NULL,
  `billingcycleupgrade` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `upgradeemail` int(10) NOT NULL DEFAULT '0',
  `overagesenabled` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `overagesdisklimit` int(10) NOT NULL,
  `overagesbwlimit` int(10) NOT NULL,
  `overagesdiskprice` decimal(6,4) NOT NULL,
  `overagesbwprice` decimal(6,4) NOT NULL,
  `tax` tinyint(1) NOT NULL,
  `affiliateonetime` tinyint(1) NOT NULL,
  `affiliatepaytype` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `affiliatepayamount` decimal(10,2) NOT NULL,
  `order` int(10) NOT NULL DEFAULT '0',
  `retired` tinyint(1) NOT NULL,
  `is_featured` tinyint(1) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `gid` (`gid`),
  KEY `name` (`name`(64))
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_search_logs` (
  `id` int(13) NOT NULL AUTO_INCREMENT,
  `search_term` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `search_time` datetime NOT NULL,
  `search_ip` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `domain_available` tinyint(1) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wpos_whmpress_tax` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `level` int(1) NOT NULL,
  `name` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `state` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `country` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `taxrate` decimal(10,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `state_country` (`state`(32),`country`(2))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;


/* INSERT TABLE DATA: wpos_duplicator_packages */
INSERT INTO `wpos_duplicator_packages` VALUES("1", "20170522_mlksolutions", "4ceecfdcf635a8a53833170522153536", "20", "2017-05-22 15:35:57", "apccraimundo", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-05-22 15:35:36\";s:7:\"Version\";s:5:\"1.2.8\";s:9:\"VersionWP\";s:5:\"4.7.5\";s:9:\"VersionDB\";s:6:\"5.6.30\";s:10:\"VersionPHP\";s:6:\"5.6.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:1;s:4:\"Name\";s:21:\"20170522_mlksolutions\";s:4:\"Hash\";s:32:\"4ceecfdcf635a8a53833170522153536\";s:8:\"NameHash\";s:54:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/mlksolut/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"https://mlksolutions.org/wp-snapshots/\";s:8:\"ScanFile\";s:64:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:12:\"apccraimundo\";s:7:\"Archive\";O:11:\"DUP_Archive\":14:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";s:66:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/mlksolut/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-05-22 15:35:36\";s:7:\"Version\";s:5:\"1.2.8\";s:9:\"VersionWP\";s:5:\"4.7.5\";s:9:\"VersionDB\";s:6:\"5.6.30\";s:10:\"VersionPHP\";s:6:\"5.6.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:21:\"20170522_mlksolutions\";s:4:\"Hash\";s:32:\"4ceecfdcf635a8a53833170522153536\";s:8:\"NameHash\";s:54:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/mlksolut/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"https://mlksolutions.org/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:68:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:53;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:67:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:75;s:8:\"Database\";r:88;}");

/* INSERT TABLE DATA: wpos_options */
INSERT INTO `wpos_options` VALUES("1", "siteurl", "https://mlksolutions.org", "yes");
INSERT INTO `wpos_options` VALUES("2", "home", "https://mlksolutions.org", "yes");
INSERT INTO `wpos_options` VALUES("3", "blogname", "MLK Solutions", "yes");
INSERT INTO `wpos_options` VALUES("4", "blogdescription", "Web Host Made Cheap and Easy", "yes");
INSERT INTO `wpos_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wpos_options` VALUES("6", "admin_email", "ar@mlksolutions.org", "yes");
INSERT INTO `wpos_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wpos_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wpos_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wpos_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wpos_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wpos_options` VALUES("12", "posts_per_rss", "6", "yes");
INSERT INTO `wpos_options` VALUES("13", "rss_use_excerpt", "1", "yes");
INSERT INTO `wpos_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wpos_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wpos_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `wpos_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `wpos_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `wpos_options` VALUES("19", "default_comment_status", "closed", "yes");
INSERT INTO `wpos_options` VALUES("20", "default_ping_status", "closed", "yes");
INSERT INTO `wpos_options` VALUES("21", "default_pingback_flag", "1", "yes");
INSERT INTO `wpos_options` VALUES("22", "posts_per_page", "6", "yes");
INSERT INTO `wpos_options` VALUES("23", "date_format", "j F, Y", "yes");
INSERT INTO `wpos_options` VALUES("24", "time_format", "G:i", "yes");
INSERT INTO `wpos_options` VALUES("25", "links_updated_date_format", "j F, Y G:i", "yes");
INSERT INTO `wpos_options` VALUES("26", "comment_moderation", "", "yes");
INSERT INTO `wpos_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wpos_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wpos_options` VALUES("29", "rewrite_rules", "a:240:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:58:\"our-team-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?our-team-category=$matches[1]&feed=$matches[2]\";s:53:\"our-team-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?our-team-category=$matches[1]&feed=$matches[2]\";s:34:\"our-team-category/([^/]+)/embed/?$\";s:50:\"index.php?our-team-category=$matches[1]&embed=true\";s:46:\"our-team-category/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?our-team-category=$matches[1]&paged=$matches[2]\";s:28:\"our-team-category/([^/]+)/?$\";s:39:\"index.php?our-team-category=$matches[1]\";s:59:\"our-works-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?our-works-category=$matches[1]&feed=$matches[2]\";s:54:\"our-works-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?our-works-category=$matches[1]&feed=$matches[2]\";s:35:\"our-works-category/([^/]+)/embed/?$\";s:51:\"index.php?our-works-category=$matches[1]&embed=true\";s:47:\"our-works-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?our-works-category=$matches[1]&paged=$matches[2]\";s:29:\"our-works-category/([^/]+)/?$\";s:40:\"index.php?our-works-category=$matches[1]\";s:62:\"testimonials-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials-category=$matches[1]&feed=$matches[2]\";s:57:\"testimonials-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials-category=$matches[1]&feed=$matches[2]\";s:38:\"testimonials-category/([^/]+)/embed/?$\";s:54:\"index.php?testimonials-category=$matches[1]&embed=true\";s:50:\"testimonials-category/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?testimonials-category=$matches[1]&paged=$matches[2]\";s:32:\"testimonials-category/([^/]+)/?$\";s:43:\"index.php?testimonials-category=$matches[1]\";s:53:\"faq-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq-category=$matches[1]&feed=$matches[2]\";s:48:\"faq-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq-category=$matches[1]&feed=$matches[2]\";s:29:\"faq-category/([^/]+)/embed/?$\";s:45:\"index.php?faq-category=$matches[1]&embed=true\";s:41:\"faq-category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq-category=$matches[1]&paged=$matches[2]\";s:23:\"faq-category/([^/]+)/?$\";s:34:\"index.php?faq-category=$matches[1]\";s:64:\"pricing-tables-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?pricing-tables-category=$matches[1]&feed=$matches[2]\";s:59:\"pricing-tables-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?pricing-tables-category=$matches[1]&feed=$matches[2]\";s:40:\"pricing-tables-category/([^/]+)/embed/?$\";s:56:\"index.php?pricing-tables-category=$matches[1]&embed=true\";s:52:\"pricing-tables-category/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?pricing-tables-category=$matches[1]&paged=$matches[2]\";s:34:\"pricing-tables-category/([^/]+)/?$\";s:45:\"index.php?pricing-tables-category=$matches[1]\";s:60:\"subcribers-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?subcribers-category=$matches[1]&feed=$matches[2]\";s:55:\"subcribers-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?subcribers-category=$matches[1]&feed=$matches[2]\";s:36:\"subcribers-category/([^/]+)/embed/?$\";s:52:\"index.php?subcribers-category=$matches[1]&embed=true\";s:48:\"subcribers-category/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?subcribers-category=$matches[1]&paged=$matches[2]\";s:30:\"subcribers-category/([^/]+)/?$\";s:41:\"index.php?subcribers-category=$matches[1]\";s:36:\"our-team/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"our-team/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"our-team/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"our-team/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"our-team/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"our-team/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"our-team/([^/]+)/embed/?$\";s:41:\"index.php?our-team=$matches[1]&embed=true\";s:29:\"our-team/([^/]+)/trackback/?$\";s:35:\"index.php?our-team=$matches[1]&tb=1\";s:37:\"our-team/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?our-team=$matches[1]&paged=$matches[2]\";s:44:\"our-team/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?our-team=$matches[1]&cpage=$matches[2]\";s:33:\"our-team/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?our-team=$matches[1]&page=$matches[2]\";s:25:\"our-team/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"our-team/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"our-team/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"our-team/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"our-team/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"our-team/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"our-works/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"our-works/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"our-works/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"our-works/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"our-works/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"our-works/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"our-works/([^/]+)/embed/?$\";s:42:\"index.php?our-works=$matches[1]&embed=true\";s:30:\"our-works/([^/]+)/trackback/?$\";s:36:\"index.php?our-works=$matches[1]&tb=1\";s:38:\"our-works/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?our-works=$matches[1]&paged=$matches[2]\";s:45:\"our-works/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?our-works=$matches[1]&cpage=$matches[2]\";s:34:\"our-works/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?our-works=$matches[1]&page=$matches[2]\";s:26:\"our-works/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"our-works/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"our-works/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"our-works/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"our-works/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"our-works/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"faq/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"faq/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"faq/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"faq/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"faq/([^/]+)/embed/?$\";s:36:\"index.php?faq=$matches[1]&embed=true\";s:24:\"faq/([^/]+)/trackback/?$\";s:30:\"index.php?faq=$matches[1]&tb=1\";s:32:\"faq/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&paged=$matches[2]\";s:39:\"faq/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&cpage=$matches[2]\";s:28:\"faq/([^/]+)(?:/([0-9]+))?/?$\";s:42:\"index.php?faq=$matches[1]&page=$matches[2]\";s:20:\"faq/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"faq/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"faq/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"faq/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"pricing-tables/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"pricing-tables/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"pricing-tables/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"pricing-tables/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"pricing-tables/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"pricing-tables/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"pricing-tables/([^/]+)/embed/?$\";s:47:\"index.php?pricing-tables=$matches[1]&embed=true\";s:35:\"pricing-tables/([^/]+)/trackback/?$\";s:41:\"index.php?pricing-tables=$matches[1]&tb=1\";s:43:\"pricing-tables/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?pricing-tables=$matches[1]&paged=$matches[2]\";s:50:\"pricing-tables/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?pricing-tables=$matches[1]&cpage=$matches[2]\";s:39:\"pricing-tables/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?pricing-tables=$matches[1]&page=$matches[2]\";s:31:\"pricing-tables/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"pricing-tables/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"pricing-tables/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"pricing-tables/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"pricing-tables/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"pricing-tables/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"subcribers/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"subcribers/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"subcribers/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"subcribers/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"subcribers/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"subcribers/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"subcribers/([^/]+)/embed/?$\";s:43:\"index.php?subcribers=$matches[1]&embed=true\";s:31:\"subcribers/([^/]+)/trackback/?$\";s:37:\"index.php?subcribers=$matches[1]&tb=1\";s:39:\"subcribers/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?subcribers=$matches[1]&paged=$matches[2]\";s:46:\"subcribers/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?subcribers=$matches[1]&cpage=$matches[2]\";s:35:\"subcribers/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?subcribers=$matches[1]&page=$matches[2]\";s:27:\"subcribers/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"subcribers/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"subcribers/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"subcribers/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"subcribers/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"subcribers/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1189&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}", "yes");
INSERT INTO `wpos_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `wpos_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `wpos_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `wpos_options` VALUES("33", "active_plugins", "a:12:{i:0;s:35:\"arkahost-helper/arkahost-helper.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:29:\"easy-wp-smtp/easy-wp-smtp.php\";i:4;s:45:\"email-encoder-bundle/email-encoder-bundle.php\";i:5;s:27:\"js_composer/js_composer.php\";i:6;s:21:\"whmpress/whmpress.php\";i:7;s:27:\"powies-uptime-robot/pum.php\";i:8;s:23:\"revslider/revslider.php\";i:9;s:36:\"whmpress-client-area/client-area.php\";i:10;s:41:\"wordpress-importer/wordpress-importer.php\";i:11;s:24:\"wordpress-seo/wp-seo.php\";}", "yes");
INSERT INTO `wpos_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wpos_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wpos_options` VALUES("36", "comment_max_links", "2", "yes");
INSERT INTO `wpos_options` VALUES("37", "gmt_offset", "0", "yes");
INSERT INTO `wpos_options` VALUES("38", "default_email_category", "1", "yes");
INSERT INTO `wpos_options` VALUES("39", "recently_edited", "a:4:{i:0;s:73:\"/home/mlksolut/public_html/wp-content/themes/arkahost/options/options.php\";i:2;s:64:\"/home/mlksolut/public_html/wp-content/themes/arkahost/header.php\";i:3;s:63:\"/home/mlksolut/public_html/wp-content/themes/arkahost/style.css\";i:4;s:0:\"\";}", "no");
INSERT INTO `wpos_options` VALUES("40", "template", "arkahost", "yes");
INSERT INTO `wpos_options` VALUES("41", "stylesheet", "arkahost", "yes");
INSERT INTO `wpos_options` VALUES("42", "comment_whitelist", "1", "yes");
INSERT INTO `wpos_options` VALUES("43", "blacklist_keys", "", "no");
INSERT INTO `wpos_options` VALUES("44", "comment_registration", "", "yes");
INSERT INTO `wpos_options` VALUES("45", "html_type", "text/html", "yes");
INSERT INTO `wpos_options` VALUES("46", "use_trackback", "0", "yes");
INSERT INTO `wpos_options` VALUES("47", "default_role", "subscriber", "yes");
INSERT INTO `wpos_options` VALUES("48", "db_version", "38590", "yes");
INSERT INTO `wpos_options` VALUES("49", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wpos_options` VALUES("50", "upload_path", "", "yes");
INSERT INTO `wpos_options` VALUES("51", "blog_public", "1", "yes");
INSERT INTO `wpos_options` VALUES("52", "default_link_category", "2", "yes");
INSERT INTO `wpos_options` VALUES("53", "show_on_front", "page", "yes");
INSERT INTO `wpos_options` VALUES("54", "tag_base", "", "yes");
INSERT INTO `wpos_options` VALUES("55", "show_avatars", "1", "yes");
INSERT INTO `wpos_options` VALUES("56", "avatar_rating", "G", "yes");
INSERT INTO `wpos_options` VALUES("57", "upload_url_path", "", "yes");
INSERT INTO `wpos_options` VALUES("58", "thumbnail_size_w", "150", "yes");
INSERT INTO `wpos_options` VALUES("59", "thumbnail_size_h", "150", "yes");
INSERT INTO `wpos_options` VALUES("60", "thumbnail_crop", "1", "yes");
INSERT INTO `wpos_options` VALUES("61", "medium_size_w", "300", "yes");
INSERT INTO `wpos_options` VALUES("62", "medium_size_h", "300", "yes");
INSERT INTO `wpos_options` VALUES("63", "avatar_default", "mystery", "yes");
INSERT INTO `wpos_options` VALUES("64", "large_size_w", "1024", "yes");
INSERT INTO `wpos_options` VALUES("65", "large_size_h", "1024", "yes");
INSERT INTO `wpos_options` VALUES("66", "image_default_link_type", "none", "yes");
INSERT INTO `wpos_options` VALUES("67", "image_default_size", "", "yes");
INSERT INTO `wpos_options` VALUES("68", "image_default_align", "", "yes");
INSERT INTO `wpos_options` VALUES("69", "close_comments_for_old_posts", "", "yes");
INSERT INTO `wpos_options` VALUES("70", "close_comments_days_old", "14", "yes");
INSERT INTO `wpos_options` VALUES("71", "thread_comments", "", "yes");
INSERT INTO `wpos_options` VALUES("72", "thread_comments_depth", "5", "yes");
INSERT INTO `wpos_options` VALUES("73", "page_comments", "", "yes");
INSERT INTO `wpos_options` VALUES("74", "comments_per_page", "50", "yes");
INSERT INTO `wpos_options` VALUES("75", "default_comments_page", "newest", "yes");
INSERT INTO `wpos_options` VALUES("76", "comment_order", "asc", "yes");
INSERT INTO `wpos_options` VALUES("77", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wpos_options` VALUES("78", "widget_categories", "a:2:{i:4;a:4:{s:5:\"title\";s:15:\"Site Categories\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("79", "widget_text", "a:3:{s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;}}", "yes");
INSERT INTO `wpos_options` VALUES("80", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("81", "uninstall_plugins", "a:2:{s:45:\"email-encoder-bundle/email-encoder-bundle.php\";a:2:{i:0;s:9:\"Eeb_Admin\";i:1;s:9:\"uninstall\";}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:22:\"swpsmtp_send_uninstall\";}", "no");
INSERT INTO `wpos_options` VALUES("82", "timezone_string", "", "yes");
INSERT INTO `wpos_options` VALUES("83", "page_for_posts", "517", "yes");
INSERT INTO `wpos_options` VALUES("84", "page_on_front", "1189", "yes");
INSERT INTO `wpos_options` VALUES("85", "default_post_format", "0", "yes");
INSERT INTO `wpos_options` VALUES("86", "link_manager_enabled", "0", "yes");
INSERT INTO `wpos_options` VALUES("87", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wpos_options` VALUES("88", "site_icon", "0", "yes");
INSERT INTO `wpos_options` VALUES("89", "medium_large_size_w", "768", "yes");
INSERT INTO `wpos_options` VALUES("90", "medium_large_size_h", "0", "yes");
INSERT INTO `wpos_options` VALUES("91", "initial_db_version", "38590", "yes");
INSERT INTO `wpos_options` VALUES("92", "wpos_user_roles", "a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:144:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:29:\"tablepress_import_tables_wptr\";b:1;s:23:\"tablepress_edit_options\";b:1;s:12:\"manage_theme\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:19:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}}", "yes");
INSERT INTO `wpos_options` VALUES("93", "fresh_site", "0", "yes");
INSERT INTO `wpos_options` VALUES("94", "widget_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("95", "widget_recent-posts", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("148", "widget_rev-slider-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("96", "widget_recent-comments", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("97", "widget_archives", "a:2:{i:4;a:3:{s:5:\"title\";s:13:\"Site Archives\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("98", "widget_meta", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("99", "sidebars_widgets", "a:10:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"execphp-41\";i:1;s:10:\"execphp-57\";i:2;s:10:\"execphp-56\";}s:7:\"sidebar\";a:6:{i:0;s:12:\"categories-4\";i:1;s:8:\"tabbed-3\";i:2;s:10:\"execphp-18\";i:3;s:10:\"archives-4\";i:4;s:11:\"tag_cloud-3\";i:5;s:10:\"calendar-3\";}s:11:\"sidebar-woo\";a:0:{}s:18:\"sidebar-woo-single\";a:0:{}s:8:\"footer_1\";a:1:{i:0;s:10:\"execphp-54\";}s:8:\"footer_2\";a:2:{i:0;s:10:\"execphp-20\";i:1;s:10:\"execphp-55\";}s:8:\"footer_3\";a:1:{i:0;s:10:\"execphp-60\";}s:8:\"footer_4\";a:1:{i:0;s:10:\"execphp-42\";}s:11:\"nav-sidebar\";a:1:{i:0;s:7:\"pages-3\";}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wpos_options` VALUES("197", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wpos_options` VALUES("655", "category_children", "a:0:{}", "yes");
INSERT INTO `wpos_options` VALUES("161", "revslider_checktables", "1", "yes");
INSERT INTO `wpos_options` VALUES("162", "rs_tables_created", "1", "yes");
INSERT INTO `wpos_options` VALUES("163", "revslider_table_version", "1.0.6", "yes");
INSERT INTO `wpos_options` VALUES("164", "revslider-update-check-short", "1495467115", "yes");
INSERT INTO `wpos_options` VALUES("165", "revslider-templates-check", "1495467115", "yes");
INSERT INTO `wpos_options` VALUES("619", "_site_transient_timeout_popular_importers_8f4a528610f3cc6436e38128fe98000b", "1491473199", "no");
INSERT INTO `wpos_options` VALUES("620", "_site_transient_popular_importers_8f4a528610f3cc6436e38128fe98000b", "a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:28:\"Import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts &amp; media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}", "no");
INSERT INTO `wpos_options` VALUES("683", "wpseo_sitemap_our-works-category_cache_validator", "4WQkQ", "no");
INSERT INTO `wpos_options` VALUES("1959", "_transient_timeout_yst_sm_our-works-category_1:4W7j6_4WQkQ", "1495512216", "no");
INSERT INTO `wpos_options` VALUES("1960", "_transient_yst_sm_our-works-category_1:4W7j6_4WQkQ", "C:24:\"WPSEO_Sitemap_Cache_Data\":999:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:952:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/our-works-category/graphic/</loc>\n		<lastmod>2015-07-05T05:48:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works-category/identity/</loc>\n		<lastmod>2015-07-05T05:49:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works-category/logo/</loc>\n		<lastmod>2015-07-05T05:48:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works-category/our-project/</loc>\n		<lastmod>2015-07-05T05:49:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works-category/web-design/</loc>\n		<lastmod>2015-07-05T05:49:02+00:00</lastmod>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("686", "wpseo_sitemap_our-team_cache_validator", "4WQFl", "no");
INSERT INTO `wpos_options` VALUES("1963", "_transient_timeout_yst_sm_our-team_1:4W7j6_4WQFl", "1495517729", "no");
INSERT INTO `wpos_options` VALUES("1964", "_transient_yst_sm_our-team_1:4W7j6_4WQFl", "C:24:\"WPSEO_Sitemap_Cache_Data\":5808:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:5760:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/our-team/alen-devonate/</loc>\n		<lastmod>2015-07-05T10:22:22+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/peop-img37.jpg</image:loc>\n			<image:title><![CDATA[peop-img37]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/karla-alishana/</loc>\n		<lastmod>2015-07-05T10:23:04+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/peop-img38.jpg</image:loc>\n			<image:title><![CDATA[peop-img38]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/india-lyndsey/</loc>\n		<lastmod>2015-07-05T10:23:39+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/peop-img39.jpg</image:loc>\n			<image:title><![CDATA[peop-img39]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/jack-alexa/</loc>\n		<lastmod>2015-07-05T10:24:06+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/peop-img40.jpg</image:loc>\n			<image:title><![CDATA[peop-img40]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/john-franklin/</loc>\n		<lastmod>2015-07-05T10:24:35+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/peop-img41.jpg</image:loc>\n			<image:title><![CDATA[peop-img41]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/jessica-priston/</loc>\n		<lastmod>2015-07-05T10:25:27+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/peop-img42.jpg</image:loc>\n			<image:title><![CDATA[peop-img42]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/eva-keely/</loc>\n		<lastmod>2015-08-13T08:07:56+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img42.jpg</image:loc>\n			<image:title><![CDATA[peop-img42]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/gargionay-smith/</loc>\n		<lastmod>2015-08-13T08:09:06+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img43.jpg</image:loc>\n			<image:title><![CDATA[peop-img43]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/eva-keely-2/</loc>\n		<lastmod>2015-08-13T08:10:44+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img36.jpg</image:loc>\n			<image:title><![CDATA[peop-img36]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/gregory-smith/</loc>\n		<lastmod>2015-08-13T08:11:35+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img43.jpg</image:loc>\n			<image:title><![CDATA[peop-img43]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/moody-jonathan/</loc>\n		<lastmod>2015-08-13T08:13:37+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img41.jpg</image:loc>\n			<image:title><![CDATA[peop-img41]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/felipe-keshawn/</loc>\n		<lastmod>2015-08-13T08:14:19+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img35.jpg</image:loc>\n			<image:title><![CDATA[peop-img35]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/ashtyn-hailey/</loc>\n		<lastmod>2015-08-13T08:14:55+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img34.jpg</image:loc>\n			<image:title><![CDATA[peop-img34]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/mark-anderson/</loc>\n		<lastmod>2015-08-13T08:15:37+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img33.jpg</image:loc>\n			<image:title><![CDATA[peop-img33]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/alan-joaquin/</loc>\n		<lastmod>2015-08-17T09:08:19+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img53.jpg</image:loc>\n			<image:title><![CDATA[peop-img53]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/nica-heriberty/</loc>\n		<lastmod>2015-08-17T09:09:18+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img54.jpg</image:loc>\n			<image:title><![CDATA[peop-img54]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/alana-desired/</loc>\n		<lastmod>2015-08-17T09:09:49+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img55.jpg</image:loc>\n			<image:title><![CDATA[peop-img55]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team/kiley-felicity/</loc>\n		<lastmod>2015-08-17T09:10:19+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/08/peop-img56.jpg</image:loc>\n			<image:title><![CDATA[peop-img56]]></image:title>\n		</image:image>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("689", "wpseo_sitemap_testimonials_cache_validator", "4Z3Ah", "no");
INSERT INTO `wpos_options` VALUES("692", "wpseo_sitemap_pricing-tables_cache_validator", "3IsmL", "no");
INSERT INTO `wpos_options` VALUES("696", "wpseo_sitemap_page_cache_validator", "vkyL", "no");
INSERT INTO `wpos_options` VALUES("695", "wpseo_sitemap_9847_cache_validator", "4X5nO", "no");
INSERT INTO `wpos_options` VALUES("100", "widget_pages", "a:2:{i:3;a:3:{s:5:\"title\";s:5:\"Pages\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("101", "widget_calendar", "a:2:{i:3;a:1:{s:5:\"title\";s:13:\"Post Calendar\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("102", "widget_tag_cloud", "a:2:{i:3;a:2:{s:5:\"title\";s:9:\"Tag Cloud\";s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("103", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("104", "cron", "a:5:{i:1495473356;a:1:{s:16:\"whmp_daily_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1495493465;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1495499621;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:1495536675;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wpos_options` VALUES("105", "theme_mods_twentyseventeen", "a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1490957485;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `wpos_options` VALUES("108", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `wpos_options` VALUES("109", "woocommerce_admin_notices", "a:1:{i:0;s:7:\"install\";}", "yes");
INSERT INTO `wpos_options` VALUES("120", "can_compress_scripts", "1", "no");
INSERT INTO `wpos_options` VALUES("931", "_transient_timeout_feed_fde7a31949046520014e5ccbcfc0968b", "1491745962", "no");
INSERT INTO `wpos_options` VALUES("932", "_transient_feed_fde7a31949046520014e5ccbcfc0968b", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:79:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Portugal\";s:7:\"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:22:\"http://wp-portugal.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Site da Comunidade Portuguesa de 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Apr 2017 09:53:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"pt-PT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.7.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:20:{i:0;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"O Melhor da Semana N.º 171: Directório de plugins polémico, WordCamp, editor, tradução\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wp-portugal.com/2017/04/03/o-melhor-da-semana-n-o-171-directorio-de-plugins-polemico-wordcamp/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"http://wp-portugal.com/2017/04/03/o-melhor-da-semana-n-o-171-directorio-de-plugins-polemico-wordcamp/#respond\";s: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, 03 Apr 2017 09:40:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:\"Destaque\";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:6:\"Poedit\";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:5:{s:4:\"data\";s:10:\"tradução\";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:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"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:30:\"http://wp-portugal.com/?p=5274\";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:252:\"Por entre gostos e desgostos, o novo directório de plugins foi lançado no início da semana passada. Houve elogios e críticas, como é habitual. Ahmad Aways foi um dos programadores e criadores de plugins que não gostou do novo directório. &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://wp-portugal.com/2017/04/03/o-melhor-da-semana-n-o-171-directorio-de-plugins-polemico-wordcamp/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"O Melhor da Semana N.º 170: GoDaddy, Sucuri, Jetpack, plugins e temas 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wp-portugal.com/2017/03/27/o-melhor-da-semana-n-o-170/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/03/27/o-melhor-da-semana-n-o-170/#respond\";s: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, 27 Mar 2017 08:29:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:\"Destaque\";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:7:\"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:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"plugins\";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:5:{s:4:\"data\";s:6:\"Sucuri\";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:5:{s:4:\"data\";s:5:\"temas\";s:7:\"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:30:\"http://wp-portugal.com/?p=5258\";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:255:\"Depois da Manage WP, a GoDaddy comprou a Sucuri. A empresa de alojamento continua o seu trajecto de voltar a ganhar a confiança perdida junto dos utilizadores de WordPress. Agora através da aquisição de um reconhecido serviço de segurança. A &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/03/27/o-melhor-da-semana-n-o-170/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5258\";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:54:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"O Melhor da Semana N.º 169: o editor do WordPress, Smashing Magazine, cache, design, segurança\";s:7:\"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:61:\"http://wp-portugal.com/2017/03/20/o-melhor-da-semana-n-o-169/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/03/20/o-melhor-da-semana-n-o-169/#respond\";s: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, 20 Mar 2017 14:01:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:6:\"design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Destaque\";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:5:{s:4:\"data\";s:6:\"editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:10:\"segurança\";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:5:{s:4:\"data\";s:17:\"Smashing Magazine\";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:5:{s:4:\"data\";s:3:\"SSL\";s:7:\"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:30:\"http://wp-portugal.com/?p=5249\";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:230:\"Que futuro para o WordPress? À pergunta, Lisa Nalyvaiko responde com a certeza de que há um futuro brilhante pela frente. O futuro do editor do WordPress está agora a definir-se. E tu, sim, tu, também és chamado a dar &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/03/20/o-melhor-da-semana-n-o-169/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5249\";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:42:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Temas e negócios no Meetup WordPress do Porto\";s:7:\"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://wp-portugal.com/2017/03/14/temas-negocios-no-meetup-wordpress-do-porto/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wp-portugal.com/2017/03/14/temas-negocios-no-meetup-wordpress-do-porto/#respond\";s: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, 14 Mar 2017 14:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:11:\"Ionut Neagu\";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:10:\"ThemeIsles\";s:7:\"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:30:\"http://wp-portugal.com/?p=5243\";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:248:\"A criação de temas para WordPress e o seu negócio serão os temas do próximo Meetup WordPress Porto. Ionut Neagu, fundador e CEO da ThemeIsles, é o convidado desta sessão. Em foco vão estar os sinais enviados pelos utilizadores sobre &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wp-portugal.com/2017/03/14/temas-negocios-no-meetup-wordpress-do-porto/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5243\";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:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"O Melhor da Semana N.º 168: WordCamp, RTP, Google e 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wp-portugal.com/2017/03/13/o-melhor-da-semana-n-o-168/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/03/13/o-melhor-da-semana-n-o-168/#respond\";s: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, 13 Mar 2017 12:10:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:4:\"Clef\";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:6:\"Google\";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:5:{s:4:\"data\";s:11:\"Google Docs\";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:5:{s:4:\"data\";s:6:\"meetup\";s:7:\"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:30:\"http://wp-portugal.com/?p=5235\";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:230:\"No WordCamp Lisboa 2017 ficou a conhecer-se, esta semana, a forma e as vantagens de patrocinar o evento. Vale a pena, claro que sim. Celebrando 60 anos de vida, a RTP lançou um site que disponibiliza os seus arquivos para &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/03/13/o-melhor-da-semana-n-o-168/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5235\";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:42:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Meetup WordPress Lisboa com edição especial 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:86:\"http://wp-portugal.com/2017/03/07/meetup-wordpress-lisboa-edicao-especial-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://wp-portugal.com/2017/03/07/meetup-wordpress-lisboa-edicao-especial-woocommerce/#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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Mar 2017 18:05:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:23:\"Meetup WordPress Lisboa\";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: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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://wp-portugal.com/?p=5232\";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:260:\"É uma edição especial do Meetup WordPress Lisboa. Dedicado apenas e só ao WooCommerce. Quinta, 9 de Março, no Instituto Superior Técnico. O evento tem a vantagem de contar com uma equipa de 15 pessoas da Woo. Todos trabalham diariamente na mais &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wp-portugal.com/2017/03/07/meetup-wordpress-lisboa-edicao-especial-woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5232\";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:45:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"O Melhor da Semana N.º 167: Bilhetes para o WordCamp Lisboa, segurança, meetups e migrações\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wp-portugal.com/2017/03/06/o-melhor-da-semana-n-o-167-bilhetes-para-o-wordcamp-lisboa/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wp-portugal.com/2017/03/06/o-melhor-da-semana-n-o-167-bilhetes-para-o-wordcamp-lisboa/#respond\";s: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, 06 Mar 2017 09:36:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:6:\"meetup\";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:10:\"segurança\";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:5:{s:4:\"data\";s:20:\"WordCamp Lisboa 2017\";s:7:\"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:30:\"http://wp-portugal.com/?p=5225\";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:230:\"Estão à venda os bilhetes para o WordCamp Lisboa 2017. O grande evento do ano da Comunidade Portuguesa de WordPress será no ISCTE, Lisboa, nos dias 20 e 21 de Maio. Imperdível. Há um novo editor a caminho do WordPress &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wp-portugal.com/2017/03/06/o-melhor-da-semana-n-o-167-bilhetes-para-o-wordcamp-lisboa/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5225\";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		\n				\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Como proteger o teu site WordPress contra ataques via REST API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wp-portugal.com/2017/03/01/como-proteger-o-teu-site-wordpress-contra-ataques-via-rest-api/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://wp-portugal.com/2017/03/01/como-proteger-o-teu-site-wordpress-contra-ataques-via-rest-api/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Mar 2017 11:54:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:17:\"Dicas e Tutoriais\";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:\"REST API\";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:10:\"segurança\";s:7:\"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:30:\"http://wp-portugal.com/?p=5202\";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:261:\"Um dos maiores ataques recentes contra sites desenvolvidos em WordPress teve origem numa vulnerabilidade existente na REST API. O ‘bug’ chegou ao WordPress pela introdução no core dos endpoints da REST API, na versão 4.7 e continuou pela 4.7.1. A &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"pedrocarvalho\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://wp-portugal.com/2017/03/01/como-proteger-o-teu-site-wordpress-contra-ataques-via-rest-api/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5202\";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:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"O Melhor da Semana N.º 166: WordPress 4.7.3, o futuro do editor, HTTP/2, Cloudflare e CMS\";s:7:\"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:61:\"http://wp-portugal.com/2017/02/27/o-melhor-da-semana-n-o-166/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/02/27/o-melhor-da-semana-n-o-166/#respond\";s: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, 27 Feb 2017 12:05:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:10:\"Cloudflare\";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:6:\"editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:6:\"HTTP/2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"WordPress 4.7.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://wp-portugal.com/?p=5195\";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:253:\"O WordPress 4.7.3 deve ser lançado na próxima segunda, 6 de Março. Destina-se à correção de bugs. Numa próxima edição uma das novidades será o editor, apontando como uma prioridade para este ano. O projecto Gutenberg está a dar passos &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/02/27/o-melhor-da-semana-n-o-166/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5195\";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:45:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"O Melhor da Semana N.º 165: Segurança, plugins, WP REST API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wp-portugal.com/2017/02/20/o-melhor-da-semana-n-o-165-seguranca-plugins-wp-rest-api/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wp-portugal.com/2017/02/20/o-melhor-da-semana-n-o-165-seguranca-plugins-wp-rest-api/#respond\";s: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, 20 Feb 2017 14:05:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:7:\"plugins\";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:9:\"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:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"WP REST API\";s:7:\"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:30:\"http://wp-portugal.com/?p=5185\";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:241:\"O tema da segurança no WordPress regressou à ordem do dia, depois do caso da vulnerabilidade nas versões 4.7 e 4.7.1. Esta foi causada pela integração da WP REST API. Mika Epstein admite que este pode não ser o único problema &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wp-portugal.com/2017/02/20/o-melhor-da-semana-n-o-165-seguranca-plugins-wp-rest-api/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5185\";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:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"O Melhor da Semana N.º 164: WordCamp Lisboa 2017, editor, Elasticsearch e Google AMP\";s:7:\"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:61:\"http://wp-portugal.com/2017/02/13/o-melhor-da-semana-n-o-164/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/02/13/o-melhor-da-semana-n-o-164/#respond\";s: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, 13 Feb 2017 09:57:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:5:\"Geral\";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:16:\"WordCamp/Meetups\";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:13:\"Elasticsearch\";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:5:{s:4:\"data\";s:10:\"Google AMP\";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:5:{s:4:\"data\";s:20:\"WordCamp Lisboa 2017\";s:7:\"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:30:\"http://wp-portugal.com/?p=5176\";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:240:\"O WordCamp Lisboa 2017 vai ser nos dias 20 e 21 de Maio, no ISCTE. O evento da comunidade portuguesa de WordPress está nos primeiros dias de preparação mas sabe-se, desde já, que é imperdível. A interface do utilizador daquele &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/02/13/o-melhor-da-semana-n-o-164/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5176\";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:42:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Meetup WordPress Porto: Negócios, ursos e, claro, 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wp-portugal.com/2017/02/08/meetup-wordpress-porto-negocios-ursos-claro-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wp-portugal.com/2017/02/08/meetup-wordpress-porto-negocios-ursos-claro-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2017 16:56:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:15:\"Luís Rodrigues\";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:22:\"Meetup WordPress Porto\";s:7:\"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:30:\"http://wp-portugal.com/?p=5171\";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:258:\"“Inverting the Universe” é o nome da apresentação que Luís Rodrigues vai fazer no Meetup WordPress do Porto de Fevereiro. Sobre ela, a apresentação, o autor revela apenas que mete WordPress, negócios e ursos. O resto é surpresa. É quanto &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wp-portugal.com/2017/02/08/meetup-wordpress-porto-negocios-ursos-claro-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"O Melhor da Semana N.º 163: HTTPS, segurança, performance WordPress, multilíngua, plugins\";s:7:\"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://wp-portugal.com/2017/02/06/o-melhor-da-semana-n-o-163-https-seguranca-performance-multilingua-plugins/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"http://wp-portugal.com/2017/02/06/o-melhor-da-semana-n-o-163-https-seguranca-performance-multilingua-plugins/#respond\";s: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, 06 Feb 2017 10:35:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:6:\"HTTP/2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"HTTPS\";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:5:{s:4:\"data\";s:7:\"plugins\";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:5:{s:4:\"data\";s:15:\"WordPress 4.7.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://wp-portugal.com/?p=5163\";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:257:\"Uma maior aposta da Google, que incentivou o uso do protocolo HTTPS, e o aparecimento em força de certificações gratuitas, levou a um incremento significativo do número de sites com certificados de segurança. Mais de 50% do tráfego está agora &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"http://wp-portugal.com/2017/02/06/o-melhor-da-semana-n-o-163-https-seguranca-performance-multilingua-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5163\";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:45:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Meetup WordPress Lisboa faz tchim-tchim a 23 de fevereiro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wp-portugal.com/2017/02/02/meetup-wordpress-lisboa-tchim-tchim/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wp-portugal.com/2017/02/02/meetup-wordpress-lisboa-tchim-tchim/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Feb 2017 11:10:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:13:\"Marco Almeida\";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:23:\"Meetup WordPress Lisboa\";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:5:{s:4:\"data\";s:8:\"Webdados\";s:7:\"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:30:\"http://wp-portugal.com/?p=5150\";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:268:\"No Meetup WordPress de Lisboa agendado para 23 de fevereiro, Marco Almeida, da Webdados, vai apresentar alguns aspectos da implementação da loja online vinha.pt. Não apenas a nível técnico, mas também ao nível do que um projecto deste tipo significa em &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wp-portugal.com/2017/02/02/meetup-wordpress-lisboa-tchim-tchim/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5150\";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:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"O Melhor da Semana N.º 162: ecommece, GPL, WP CLI, bbPress\";s:7:\"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:61:\"http://wp-portugal.com/2017/01/30/o-melhor-da-semana-n-o-162/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/01/30/o-melhor-da-semana-n-o-162/#respond\";s: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, 30 Jan 2017 14:53:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:7:\"bbPress\";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:8:\"ecommece\";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:5:{s:4:\"data\";s:3:\"GPL\";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:5:{s:4:\"data\";s:6:\"WP-CLI\";s:7:\"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:30:\"http://wp-portugal.com/?p=5143\";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:262:\"Para começar: há, por aí, um plugin falso do bbPress. O legítimo funciona como deve ser, o falso redirecciona para sites porno. A equipa do WooCommerce decidiu divulgar algumas ideias e conclusões retiradas da estratégia de email marketing que têm &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/01/30/o-melhor-da-semana-n-o-162/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5143\";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:45:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"O Melhor da Semana N.º 161: Temas, personalizador, Jetpack, ecommerce, Google e o Chrome\";s:7:\"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:61:\"http://wp-portugal.com/2017/01/23/o-melhor-da-semana-n-o-161/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wp-portugal.com/2017/01/23/o-melhor-da-semana-n-o-161/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Jan 2017 10:50:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:5:\"HTTPS\";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:7:\"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:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"temas\";s:7:\"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:30:\"http://wp-portugal.com/?p=5130\";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:269:\"Quem pretende desenvolver temas para WordPress tem uma ferramenta mais completa e organizada, agora que o Theme Developer Handbook está pronto. Mais de dois anos depois do início do projecto. Os planos de desenvolvimento do personalizador para 2017 começam a &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wp-portugal.com/2017/01/23/o-melhor-da-semana-n-o-161/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"O Melhor da Semana N.º 160: Personalizador, APIs do WordPress, page builders, fotografia e 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:101:\"http://wp-portugal.com/2017/01/17/o-melhor-da-semana-n-o-160-personalizador-page-builders-fotografia/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"http://wp-portugal.com/2017/01/17/o-melhor-da-semana-n-o-160-personalizador-page-builders-fotografia/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Jan 2017 10:39:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"API\";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:13:\"page builders\";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:5:{s:4:\"data\";s:14:\"personalizador\";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:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://wp-portugal.com/?p=5124\";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:270:\"Andrey Savchenko fez um inquérito destinado a programadores experimentados em WordPress acerca do respectivo conhecimento das API do sistema. E concluiu que os problemas, à partida, estão mais no campo das &#8216;velhas&#8217; API do que das novas. Tudo o que &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://wp-portugal.com/2017/01/17/o-melhor-da-semana-n-o-160-personalizador-page-builders-fotografia/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5124\";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:45:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Meetup WordPress do Porto: Experience Design e o mercado de trabalho do 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://wp-portugal.com/2017/01/10/meetup-wordpress-do-porto-experience-design-mercado-trabalho-do-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"http://wp-portugal.com/2017/01/10/meetup-wordpress-do-porto-experience-design-mercado-trabalho-do-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Jan 2017 10:57:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:17:\"Experience Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"Hugo Fernandes\";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:5:{s:4:\"data\";s:22:\"Meetup WordPress Porto\";s:7:\"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:30:\"http://wp-portugal.com/?p=5117\";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:255:\"Hugo Fernandes é o convidado principal do Meetup WordPress do Porto em Janeiro. O designer acaba de arrancar com uma nova etapa no seu percurso e assume a prioridade para o &#8220;Experience Design&#8221;. Numa sessão que será mais de perguntas &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"http://wp-portugal.com/2017/01/10/meetup-wordpress-do-porto-experience-design-mercado-trabalho-do-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"O Melhor da Semana N.º 159: o WordPress em 2017, Let’s Encrypt, WP-CLI e Medium\";s:7:\"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:\"http://wp-portugal.com/2017/01/09/melhor-da-semana-n-159/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wp-portugal.com/2017/01/09/melhor-da-semana-n-159/#respond\";s: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 Jan 2017 16:09:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:16:\"Melhor da Semana\";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:13:\"Let\'s Encrypt\";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:6:\"Medium\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"WP-CLI\";s:7:\"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:30:\"http://wp-portugal.com/?p=5111\";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:246:\"O WordPress vai ter, este ano, três amores: a REST API, o editor e o personalizador. Matt Mulenweg já o tinha dito no State of the Word, no WordCamp dos Estados Unidos, e agora consolidou a decisão. Complementado-a com o anúncio das &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wp-portugal.com/2017/01/09/melhor-da-semana-n-159/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5111\";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:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Meetup WordPress de Braga: WordPress através de uma API Django\";s:7:\"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:86:\"http://wp-portugal.com/2017/01/06/meetup-wordpress-braga-wordpress-atraves-api-django/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wp-portugal.com/2017/01/06/meetup-wordpress-braga-wordpress-atraves-api-django/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2017 16:51:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamp/Meetups\";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:25:\"Meetup WordPress de Braga\";s:7:\"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:30:\"http://wp-portugal.com/?p=5106\";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:259:\"&#8220;Enriquecendo conteúdo do WordPress através de uma API Django&#8221; é o nome da apresentação que José Paulo Truta vai fazer no Meetup WordPress de Braga. O evento está agendado para o dia 17 de Janeiro, uma terça-feira, às 19h00. Volta &#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"José Freitas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wp-portugal.com/2017/01/06/meetup-wordpress-braga-wordpress-atraves-api-django/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5106\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:28:\"http://wp-portugal.com/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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"10669017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:4:\"date\";s:29:\"Sun, 09 Apr 2017 01:52:43 GMT\";s:6:\"server\";s:13:\"Apache/2.2.15\";s:12:\"x-powered-by\";s:9:\"PHP/5.3.3\";s:4:\"etag\";s:34:\"\"f308aa988d8f6dbbd8b9454794820c5c\"\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:13:\"cache-control\";s:62:\"no-store, no-cache, must-revalidate, post-check=0, pre-check=0\";s:6:\"pragma\";s:8:\"no-cache\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:59:\"<http://wp-portugal.com/wp-json/>; rel=\"https://api.w.org/\"\";s:10:\"set-cookie\";s:44:\"PHPSESSID=a653pj9uovfdd5mfdd5ffnl725; path=/\";s:13:\"last-modified\";s:29:\"Mon, 03 Apr 2017 09:53:10 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";}}s:5:\"build\";s:14:\"20130911143210\";}", "no");
INSERT INTO `wpos_options` VALUES("2002", "_site_transient_timeout_theme_roots", "1495469029", "no");
INSERT INTO `wpos_options` VALUES("2003", "_site_transient_theme_roots", "a:5:{s:8:\"arkahost\";s:7:\"/themes\";s:9:\"multihost\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}", "no");
INSERT INTO `wpos_options` VALUES("117", "_site_transient_timeout_browser_58769e6f77965f1b81999b5fbb0b69b5", "1491562267", "no");
INSERT INTO `wpos_options` VALUES("118", "_site_transient_browser_58769e6f77965f1b81999b5fbb0b69b5", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";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;}", "no");
INSERT INTO `wpos_options` VALUES("570", "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:\"version_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");
INSERT INTO `wpos_options` VALUES("933", "_transient_timeout_feed_mod_fde7a31949046520014e5ccbcfc0968b", "1491745962", "no");
INSERT INTO `wpos_options` VALUES("934", "_transient_feed_mod_fde7a31949046520014e5ccbcfc0968b", "1491702762", "no");
INSERT INTO `wpos_options` VALUES("1989", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1495510339", "no");
INSERT INTO `wpos_options` VALUES("1990", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1495467139", "no");
INSERT INTO `wpos_options` VALUES("1993", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1495510340", "no");
INSERT INTO `wpos_options` VALUES("1994", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1495467140", "no");
INSERT INTO `wpos_options` VALUES("1997", "_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b", "1495510342", "no");
INSERT INTO `wpos_options` VALUES("1998", "_transient_dash_88ae138922fe95674369b1cb3d215a2b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/05/wordpress-4-7-5/\'>WordPress 4.7.5 Security and Maintenance Release</a> <span class=\"rss-date\">16 May, 2017</span><div class=\"rssSummary\">WordPress 4.7.5 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.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2017/05/boarding-wrong-flight/\'>Matt: Boarding Wrong Flight</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2017/05/ibm-goes-non-remote/\'>Matt: IBM Goes Non-Remote</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/wordpress-higher-education-rachel-cherry-draft-podcast/\'>Post Status: WordPress in higher education, with Rachel Cherry — Draft Podcast</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Jetpack by WordPress.com&nbsp;<a href=\"plugin-install.php?tab=plugin-information&amp;plugin=jetpack&amp;_wpnonce=59b43749b8&amp;TB_iframe=true&amp;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Jetpack by WordPress.com\">(Install)</a></li></ul></div>", "no");
INSERT INTO `wpos_options` VALUES("2004", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1495467233;s:7:\"checked\";a:30:{s:19:\"akismet/akismet.php\";s:3:\"3.3\";s:35:\"arkahost-helper/arkahost-helper.php\";s:3:\"1.0\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"4.6.1\";s:57:\"designthemes-core-features/designthemes-core-features.php\";s:3:\"1.3\";s:25:\"duplicator/duplicator.php\";s:5:\"1.2.8\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:5:\"1.2.4\";s:45:\"email-encoder-bundle/email-encoder-bundle.php\";s:5:\"1.4.6\";s:34:\"envato-wordpress-toolkit/index.php\";s:5:\"1.7.3\";s:33:\"essential-grid/essential-grid.php\";s:7:\"2.1.0.2\";s:9:\"hello.php\";s:3:\"1.6\";s:27:\"powies-uptime-robot/pum.php\";s:5:\"0.9.4\";s:23:\"revslider/revslider.php\";s:7:\"5.3.1.5\";s:39:\"social-count-plus/social-count-plus.php\";s:5:\"3.3.5\";s:25:\"tablepress/tablepress.php\";s:3:\"1.8\";s:21:\"the-grid/the-grid.php\";s:5:\"2.3.0\";s:34:\"tidio-live-chat/tidio-elements.php\";s:5:\"3.0.2\";s:18:\"user-pro/index.php\";s:5:\"4.9.4\";s:37:\"webnus-portfolio/webnus-portfolio.php\";s:3:\"1.0\";s:39:\"webnus-shortcodes/webnus-shortcodes.php\";s:3:\"1.0\";s:30:\"w-time-table/wb-time-table.php\";s:5:\"1.0.0\";s:36:\"whmpress-client-area/client-area.php\";s:5:\"4.1.2\";s:21:\"whmpress/whmpress.php\";s:5:\"3.1.2\";s:27:\"woocommerce/woocommerce.php\";s:6:\"2.6.14\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.3\";s:35:\"wordpress-reset/wordpress-reset.php\";s:3:\"1.4\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:6:\"0.10.1\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:4:\"2.91\";s:27:\"js_composer/js_composer.php\";s:5:\"5.0.1\";s:25:\"wp-domain-checker/wdc.php\";s:5:\"4.0.1\";s:24:\"wordpress-seo/wp-seo.php\";s:3:\"4.5\";}s:8:\"response\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.3.2.zip\";s:6:\"tested\";s:5:\"4.7.5\";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:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip\";s:6:\"tested\";s:5:\"4.7.5\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:5:\"40147\";s:4:\"slug\";s:12:\"easy-wp-smtp\";s:6:\"plugin\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/easy-wp-smtp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/easy-wp-smtp.zip\";s:6:\"tested\";s:5:\"4.7.5\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}s:39:\"social-count-plus/social-count-plus.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:5:\"26693\";s:4:\"slug\";s:17:\"social-count-plus\";s:6:\"plugin\";s:39:\"social-count-plus/social-count-plus.php\";s:11:\"new_version\";s:5:\"3.3.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/social-count-plus/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/social-count-plus.3.3.6.zip\";s:14:\"upgrade_notice\";s:72:\"Fixed Facebook integration according with new Facebook API requirements.\";s:6:\"tested\";s:5:\"4.7.5\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:5:\"25331\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip\";s:14:\"upgrade_notice\";s:132:\"3.0 is a major update. Make a full site backup, update your theme and extensions, and review update best practices before upgrading.\";s:6:\"tested\";s:5:\"4.7.5\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"4.7.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.4.7.1.zip\";s:6:\"tested\";s:5:\"4.7.5\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:5:\"1.2.8\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/duplicator.1.2.8.zip\";}s:45:\"email-encoder-bundle/email-encoder-bundle.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"12876\";s:4:\"slug\";s:20:\"email-encoder-bundle\";s:6:\"plugin\";s:45:\"email-encoder-bundle/email-encoder-bundle.php\";s:11:\"new_version\";s:5:\"1.4.6\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/email-encoder-bundle/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/email-encoder-bundle.1.4.6.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:27:\"powies-uptime-robot/pum.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"48484\";s:4:\"slug\";s:19:\"powies-uptime-robot\";s:6:\"plugin\";s:27:\"powies-uptime-robot/pum.php\";s:11:\"new_version\";s:5:\"0.9.4\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/powies-uptime-robot/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/powies-uptime-robot.0.9.4.zip\";}s:25:\"tablepress/tablepress.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"32125\";s:4:\"slug\";s:10:\"tablepress\";s:6:\"plugin\";s:25:\"tablepress/tablepress.php\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/tablepress/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/tablepress.1.8.zip\";s:14:\"upgrade_notice\";s:92:\"This update is a stability, maintenance, and compatibility release. Updating is recommended.\";}s:34:\"tidio-live-chat/tidio-elements.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"49511\";s:4:\"slug\";s:15:\"tidio-live-chat\";s:6:\"plugin\";s:34:\"tidio-live-chat/tidio-elements.php\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/tidio-live-chat/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/tidio-live-chat.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.3.zip\";}s:35:\"wordpress-reset/wordpress-reset.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"7057\";s:4:\"slug\";s:15:\"wordpress-reset\";s:6:\"plugin\";s:35:\"wordpress-reset/wordpress-reset.php\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wordpress-reset/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-reset.1.4.zip\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:3:\"951\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:6:\"0.10.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.1.zip\";s:14:\"upgrade_notice\";s:47:\"Addition of Pepipost and cleanup of admin page.\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"363\";s:4:\"slug\";s:11:\"wp-pagenavi\";s:6:\"plugin\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"new_version\";s:4:\"2.91\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-pagenavi/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-pagenavi.2.91.zip\";}}}", "no");
INSERT INTO `wpos_options` VALUES("2005", "duplicator_settings", "a:10:{s:7:\"version\";s:5:\"1.2.8\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wpos_options` VALUES("2008", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-05-22 15:35:36\";s:7:\"Version\";s:5:\"1.2.8\";s:9:\"VersionWP\";s:5:\"4.7.5\";s:9:\"VersionDB\";s:6:\"5.6.30\";s:10:\"VersionPHP\";s:6:\"5.6.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:21:\"20170522_mlksolutions\";s:4:\"Hash\";s:32:\"4ceecfdcf635a8a53833170522153536\";s:8:\"NameHash\";s:54:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/mlksolut/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"https://mlksolutions.org/wp-snapshots/\";s:8:\"ScanFile\";s:64:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":14:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/mlksolut/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-05-22 15:35:36\";s:7:\"Version\";s:5:\"1.2.8\";s:9:\"VersionWP\";s:5:\"4.7.5\";s:9:\"VersionDB\";s:6:\"5.6.30\";s:10:\"VersionPHP\";s:6:\"5.6.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:21:\"20170522_mlksolutions\";s:4:\"Hash\";s:32:\"4ceecfdcf635a8a53833170522153536\";s:8:\"NameHash\";s:54:\"20170522_mlksolutions_4ceecfdcf635a8a53833170522153536\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/mlksolut/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"https://mlksolutions.org/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:53;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:10:\"\0*\0Package\";r:53;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:75;s:8:\"Database\";r:88;}", "yes");
INSERT INTO `wpos_options` VALUES("941", "_transient_timeout_dash_c474ac040fe714b989c4d1d8f71b45a5", "1491745963", "no");
INSERT INTO `wpos_options` VALUES("942", "_transient_dash_c474ac040fe714b989c4d1d8f71b45a5", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wp-portugal.com/2017/04/03/o-melhor-da-semana-n-o-171-directorio-de-plugins-polemico-wordcamp/\'>O Melhor da Semana N.º 171: Directório de plugins polémico, WordCamp, editor, tradução</a> <span class=\"rss-date\">3 Abril, 2017</span><div class=\"rssSummary\">Por entre gostos e desgostos, o novo directório de plugins foi lançado no início da semana passada. Houve elogios e críticas, como é habitual. Ahmad Aways foi um dos programadores e criadores de plugins que não gostou do novo directório. …</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/yoast-seos-php-upgrade-nag-is-producing-a-significant-increase-in-sites-upgrading-to-php-7\'>WPTavern: Yoast SEO’s PHP Upgrade Nag is Producing a Significant Increase in Sites Upgrading to PHP 7</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/recommended-reading-resilient-web-design-a-free-e-book-from-jeremy-keith\'>WPTavern: Recommended Reading: Resilient Web Design, a Free e-Book from Jeremy Keith</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/new-userscript-restores-tabs-to-the-wordpress-plugin-directory\'>WPTavern: New Userscript Restores Tabs to the WordPress Plugin Directory</a></li></ul></div><div class=\"rss-widget\"><ul></ul></div>", "no");
INSERT INTO `wpos_options` VALUES("1995", "_transient_timeout_plugin_slugs", "1495553635", "no");
INSERT INTO `wpos_options` VALUES("1996", "_transient_plugin_slugs", "a:30:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"arkahost-helper/arkahost-helper.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:57:\"designthemes-core-features/designthemes-core-features.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:29:\"easy-wp-smtp/easy-wp-smtp.php\";i:6;s:45:\"email-encoder-bundle/email-encoder-bundle.php\";i:7;s:34:\"envato-wordpress-toolkit/index.php\";i:8;s:33:\"essential-grid/essential-grid.php\";i:9;s:9:\"hello.php\";i:10;s:27:\"powies-uptime-robot/pum.php\";i:11;s:23:\"revslider/revslider.php\";i:12;s:39:\"social-count-plus/social-count-plus.php\";i:13;s:25:\"tablepress/tablepress.php\";i:14;s:21:\"the-grid/the-grid.php\";i:15;s:34:\"tidio-live-chat/tidio-elements.php\";i:16;s:18:\"user-pro/index.php\";i:17;s:37:\"webnus-portfolio/webnus-portfolio.php\";i:18;s:39:\"webnus-shortcodes/webnus-shortcodes.php\";i:19;s:30:\"w-time-table/wb-time-table.php\";i:20;s:36:\"whmpress-client-area/client-area.php\";i:21;s:21:\"whmpress/whmpress.php\";i:22;s:27:\"woocommerce/woocommerce.php\";i:23;s:41:\"wordpress-importer/wordpress-importer.php\";i:24;s:35:\"wordpress-reset/wordpress-reset.php\";i:25;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:26;s:27:\"wp-pagenavi/wp-pagenavi.php\";i:27;s:27:\"js_composer/js_composer.php\";i:28;s:25:\"wp-domain-checker/wdc.php\";i:29;s:24:\"wordpress-seo/wp-seo.php\";}", "no");
INSERT INTO `wpos_options` VALUES("134", "current_theme", "ArkaHost", "yes");
INSERT INTO `wpos_options` VALUES("135", "theme_mods_arkahost", "a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:7:\"primary\";i:36;s:7:\"onepage\";i:36;s:6:\"footer\";i:0;s:7:\"top_nav\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";}", "yes");
INSERT INTO `wpos_options` VALUES("136", "theme_switched", "", "yes");
INSERT INTO `wpos_options` VALUES("137", "widget_execphp", "a:12:{i:18;a:5:{s:5:\"title\";s:19:\"Site Advertisements\";s:2:\"id\";s:38:\"devn_sidebar_x_devnSystem_x_1421251406\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:552:\"<ul class=\"adsbanner-list\">  \r\n        <li><a href=\"#\"><img src=\"<?php echo THEME_URI; ?>/assets/images/sample-ad-banner.jpg\" alt=\"\"></a></li>\r\n         <li class=\"last\"><a href=\"#\"><img src=\"<?php echo THEME_URI; ?>/assets/images/sample-ad-banner.jpg\" alt=\"\"></a></li>\r\n</ul>\r\n<ul class=\"adsbanner-list\">  \r\n       <li><a href=\"#\"><img src=\"<?php echo THEME_URI; ?>/assets/images/sample-ad-banner.jpg\" alt=\"\"></a></li>\r\n        <li class=\"last\"><a href=\"#\"><img src=\"<?php echo THEME_URI; ?>/assets/images/sample-ad-banner.jpg\" alt=\"\"></a></li>\r\n</ul>\";}i:19;a:5:{s:5:\"title\";s:16:\"Hosting Packages\";s:2:\"id\";s:40:\"devn_footer-c1_x_devnSystem_x_1422374568\";s:9:\"showTitle\";s:4:\"true\";s:4:\"data\";s:396:\"<ul class=\"foolist\">\r\n            <li><a href=\"#\">Web Hosting</a></li>\r\n            <li><a href=\"#\">Reseller Hosting</a></li>\r\n            <li><a href=\"#\">VPS Hosting</a></li>\r\n            <li><a href=\"#\">Dedicated Servers</a></li>\r\n            <li><a href=\"#\">Windows Hosting</a></li>\r\n            <li><a href=\"#\">Cloud Hosting</a></li>\r\n            <li><a href=\"#\">Linux Servers</a></li>\r\n</ul>\";s:5:\"class\";s:0:\"\";}i:20;a:5:{s:5:\"title\";s:10:\"Web Design\";s:2:\"id\";s:40:\"devn_footer-c2_x_devnSystem_x_1422374815\";s:9:\"showTitle\";s:4:\"true\";s:4:\"data\";s:112:\"<ul class=\"foolist\">\r\n            <li><a href=\"http://dupladesign.pt/\">DuplaDesign</a></li>\r\n            \r\n</ul>\";s:5:\"class\";s:33:\"animated eff-fadeInUp delay-200ms\";}i:41;a:4:{s:5:\"title\";s:7:\"Company\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:393:\"<ul class=\"foolist\">\r\n            <li><a href=\"#\">About Us</a></li>\r\n            <li><a href=\"#\">Press &amp; Media</a></li>\r\n            <li><a href=\"#\">News / Blogs</a></li>\r\n            <li><a href=\"#\">Careers</a></li>\r\n            <li><a href=\"#\">Awards &amp; Reviews</a></li>\r\n            <li><a href=\"#\">Testimonials</a></li>\r\n            <li><a href=\"#\">Affiliate Program</a></li>\r\n</ul>\";}i:42;a:4:{s:5:\"title\";s:0:\"\";s:9:\"showTitle\";s:5:\"false\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:552:\"<div class=\"address\">\r\n\r\n           <img width=\"238\" src=\"https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-01.png\" alt=\"\" />\r\n            <br />\r\n            <br />\r\n            Avenida Afonso Costa Nº47 , 2745-232 Queluz\r\n            <div class=\"clearfix margin_bottom1\"></div>\r\n            <strong>Phone:</strong> \r\n           <b>351 966 036 440</b>\r\n            <br />\r\n            <strong>Mail:</strong> \r\n            <a href=\"mailto:ar@mlk.pt\">\r\n                  ar@mlk.pt\r\n            </a>\r\n\r\n            <br />\r\n           \r\n</div>\";}i:54;a:4:{s:5:\"title\";s:9:\"Follow Us\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:46:\"<?php king::socials(\'foosocial\', 5, false); ?>\";}i:55;a:4:{s:5:\"title\";s:7:\"Suporte\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:209:\"<ul class=\"foolist\">\r\n            <li><a href=\"https://mlksolutions.org/tos/\">Termos do Serviço</a></li>\r\n            <li><a href=\"https://mlksolutions.org/contacto/\">Contacte-nos</a></li>\r\n           \r\n</ul>\";}i:56;a:4:{s:5:\"title\";s:9:\"Resources\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:252:\"<ul class=\"foolist\">\r\n     <li><a href=\"#\">How to Create a Website</a></li>\r\n     <li><a href=\"#\">How to Transfer a Website</a></li>\r\n      <li><a href=\"#\">Start a Web Hosting Business</a></li>\r\n      <li><a href=\"#\">How to Start a Blog</a></li>\r\n</ul>\";}i:57;a:4:{s:5:\"title\";s:0:\"\";s:9:\"showTitle\";s:5:\"false\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:219:\"<p class=\"clearfix margin_bottom1\"></p>\r\n<img width=\"120\" src=\"<?php echo THEME_URI; ?>/assets/images/app-logo1.png\" alt=\"\"> \r\n&nbsp; \r\n<img width=\"120\" src=\"<?php echo THEME_URI; ?>/assets/images/app-logo2.png\" alt=\"\">\";}i:59;a:4:{s:5:\"title\";s:0:\"\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:0:\"\";}i:60;a:4:{s:5:\"title\";s:6:\"Uptime\";s:9:\"showTitle\";s:4:\"true\";s:5:\"class\";s:0:\"\";s:4:\"data\";s:5:\"[pum]\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("138", "widget_flickr", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("139", "widget_twi7er", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("140", "widget_tabbed", "a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("141", "arkahost_curentversion", "513", "yes");
INSERT INTO `wpos_options` VALUES("411", "mytheme", "a:9:{s:7:\"general\";a:13:{s:4:\"logo\";s:4:\"true\";s:14:\"enable-favicon\";s:4:\"true\";s:20:\"disable-page-comment\";s:4:\"true\";s:21:\"disable-custom-scroll\";s:2:\"on\";s:14:\"show-sociables\";s:2:\"on\";s:11:\"show-footer\";s:2:\"on\";s:14:\"footer-columns\";s:1:\"4\";s:18:\"show-copyrighttext\";s:2:\"on\";s:20:\"breadcrumb-delimiter\";s:21:\"fa-angle-double-right\";s:16:\"show-footer-logo\";s:4:\"true\";s:10:\"h1-phoneno\";s:15:\"+1 959 552 5963\";s:10:\"h1-emailid\";s:21:\"contact@multihost.com\";s:14:\"copyright-text\";s:130:\"Copyright &copy; 2015. All rights reserved. Design by <a title=\"\" href=\"http://themeforest.net/user/designthemes\">DesignThemes</a>\";}s:10:\"appearance\";a:6:{s:6:\"layout\";s:4:\"wide\";s:21:\"disable-menu-settings\";s:4:\"true\";s:23:\"disable-footer-settings\";s:4:\"true\";s:27:\"disable-typography-settings\";s:4:\"true\";s:22:\"disable-boddy-settings\";s:4:\"true\";s:4:\"skin\";s:9:\"royalblue\";}s:11:\"integration\";a:17:{s:22:\"post-googleplus-layout\";s:5:\"small\";s:20:\"post-googleplus-lang\";s:5:\"en_GB\";s:19:\"post-twitter-layout\";s:8:\"vertical\";s:19:\"post-fb_like-layout\";s:9:\"box_count\";s:25:\"post-fb_like-color-scheme\";s:5:\"light\";s:16:\"post-digg-layout\";s:6:\"medium\";s:23:\"post-stumbleupon-layout\";s:1:\"5\";s:20:\"post-linkedin-layout\";s:1:\"2\";s:20:\"page-pintrest-layout\";s:4:\"none\";s:22:\"page-googleplus-layout\";s:5:\"small\";s:20:\"page-googleplus-lang\";s:5:\"en_GB\";s:19:\"page-twitter-layout\";s:4:\"blue\";s:19:\"page-fb_like-layout\";s:9:\"box_count\";s:25:\"page-fb_like-color-scheme\";s:5:\"light\";s:16:\"page-digg-layout\";s:6:\"medium\";s:23:\"page-stumbleupon-layout\";s:1:\"5\";s:20:\"page-linkedin-layout\";s:1:\"2\";}s:6:\"mobile\";a:1:{s:19:\"is-theme-responsive\";s:4:\"true\";}s:6:\"social\";a:3:{s:8:\"social-1\";a:2:{s:4:\"icon\";s:9:\"fa-flickr\";s:4:\"link\";s:1:\"#\";}s:8:\"social-2\";a:2:{s:4:\"icon\";s:12:\"fa-pinterest\";s:4:\"link\";s:1:\"#\";}s:8:\"social-3\";a:2:{s:4:\"icon\";s:11:\"fa-facebook\";s:4:\"link\";s:1:\"#\";}}s:3:\"seo\";a:8:{s:15:\"title-delimiter\";s:1:\"|\";s:17:\"post-title-format\";a:2:{i:0;s:10:\"blog_title\";i:1;s:10:\"post_title\";}s:17:\"page-title-format\";a:2:{i:0;s:10:\"blog_title\";i:1;s:10:\"post_title\";}s:25:\"archive-page-title-format\";a:2:{i:0;s:10:\"blog_title\";i:1;s:4:\"date\";}s:26:\"category-page-title-format\";a:2:{i:0;s:10:\"blog_title\";i:1;s:14:\"category_title\";}s:21:\"tag-page-title-format\";a:2:{i:0;s:10:\"blog_title\";i:1;s:3:\"tag\";}s:24:\"search-page-title-format\";a:2:{i:0;s:10:\"blog_title\";i:1;s:6:\"search\";}s:21:\"404-page-title-format\";a:1:{i:0;s:10:\"blog_title\";}}s:9:\"specialty\";a:14:{s:22:\"author-archives-layout\";s:18:\"content-full-width\";s:27:\"author-archives-post-layout\";s:15:\"one-half-column\";s:24:\"category-archives-layout\";s:18:\"content-full-width\";s:29:\"category-archives-post-layout\";s:15:\"one-half-column\";s:19:\"tag-archives-layout\";s:18:\"content-full-width\";s:24:\"tag-archives-post-layout\";s:15:\"one-half-column\";s:23:\"gallery-archives-layout\";s:18:\"content-full-width\";s:28:\"gallery-archives-post-layout\";s:16:\"one-third-column\";s:13:\"search-layout\";s:18:\"content-full-width\";s:18:\"search-post-layout\";s:15:\"one-half-column\";s:10:\"404-layout\";s:18:\"content-full-width\";s:15:\"archives-layout\";s:18:\"content-full-width\";s:20:\"archives-post-layout\";s:15:\"one-half-column\";s:11:\"404-message\";s:298:\"<h3>Oops the page you are looking for is not found</h3>\r\n		<h2>404 Error !</h2>\r\n		<p>Let us know what you were looking for</p>\r\n		[dt_sc_email icon=\"fa-envelope\" text=\"Email\" emailid=\"yourname@somemail.com\"/]\r\n		<p> or </p>\r\n		[dt_sc_contact icon=\"fa-phone\" text=\"Phone\" detail=\"+1 200 258 2145\"/]\";}s:11:\"pagebuilder\";a:2:{s:4:\"page\";s:4:\"page\";s:18:\"enable-pagebuilder\";s:4:\"true\";}s:3:\"woo\";a:5:{s:21:\"shop-product-per-page\";s:2:\"10\";s:24:\"shop-page-product-layout\";s:16:\"one-third-column\";s:14:\"product-layout\";s:17:\"with-left-sidebar\";s:23:\"product-category-layout\";s:18:\"content-full-width\";s:18:\"product-tag-layout\";s:18:\"content-full-width\";}}", "yes");
INSERT INTO `wpos_options` VALUES("142", "widget_contents", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("143", "widget_devn-filter-ajax-navigation", "a:2:{i:2;a:7:{s:5:\"title\";s:17:\"Filder Attributes\";s:9:\"attribute\";s:0:\"\";s:10:\"query_type\";s:3:\"and\";s:4:\"type\";s:4:\"list\";s:6:\"colors\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:7:\"display\";s:3:\"all\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("144", "widget_devn-woocompare-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("485", "WP_Email_Encoder_Bundle_options", "a:19:{s:14:\"encode_mailtos\";s:1:\"1\";s:13:\"encode_emails\";s:1:\"0\";s:13:\"encode_fields\";s:1:\"1\";s:12:\"filter_posts\";s:1:\"1\";s:15:\"filter_comments\";s:1:\"1\";s:14:\"filter_widgets\";s:1:\"1\";s:10:\"class_name\";s:11:\"mailto-link\";s:6:\"method\";s:9:\"enc_ascii\";s:15:\"protection_text\";s:17:\"*protected email*\";s:23:\"protection_text_content\";s:19:\"*protected content*\";s:10:\"skip_posts\";s:0:\"\";s:21:\"shortcodes_in_widgets\";s:1:\"0\";s:24:\"support_deprecated_names\";s:1:\"0\";s:10:\"filter_rss\";s:1:\"1\";s:21:\"remove_shortcodes_rss\";s:1:\"1\";s:19:\"protection_text_rss\";s:17:\"*protected email*\";s:18:\"show_encoded_check\";s:1:\"0\";s:14:\"own_admin_menu\";s:1:\"1\";s:10:\"powered_by\";s:1:\"1\";}", "yes");
INSERT INTO `wpos_options` VALUES("145", "widget_king-filter-ajax-navigation", "a:1:{s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("146", "widget_king-filter-ajax-reset-navigation", "a:1:{s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("147", "widget_monster", "a:1:{s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("149", "widget_woocommerce_price_filter", "a:3:{i:5;a:1:{s:5:\"title\";s:15:\"Filter by price\";}i:6;a:1:{s:5:\"title\";s:15:\"Filter by price\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("150", "widget_woocommerce_product_categories", "a:4:{i:4;a:6:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";s:1:\"1\";s:18:\"show_children_only\";i:0;}i:5;a:6:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";s:1:\"1\";s:12:\"hierarchical\";s:1:\"1\";s:18:\"show_children_only\";i:0;}i:6;a:6:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";s:1:\"1\";s:12:\"hierarchical\";s:1:\"1\";s:18:\"show_children_only\";i:0;}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("151", "widget_woocommerce_product_search", "a:5:{i:4;a:1:{s:5:\"title\";s:15:\"Search Products\";}i:7;a:1:{s:5:\"title\";s:0:\"\";}i:8;a:1:{s:5:\"title\";s:0:\"\";}i:9;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("152", "widget_woocommerce_product_tag_cloud", "a:5:{i:2;a:1:{s:5:\"title\";s:12:\"Product Tags\";}i:4;a:1:{s:5:\"title\";s:12:\"Product Tags\";}i:5;a:1:{s:5:\"title\";s:12:\"Product Tags\";}i:6;a:1:{s:5:\"title\";s:12:\"Product Tags\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("153", "widget_woocommerce_products", "a:2:{i:5;a:7:{s:5:\"title\";s:8:\"Products\";s:6:\"number\";s:1:\"5\";s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("154", "widget_woocommerce_recent_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("155", "widget_woocommerce_recently_viewed_products", "a:3:{i:2;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";s:2:\"10\";}i:3;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";s:1:\"5\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("156", "widget_woocommerce_top_rated_products", "a:2:{i:2;a:2:{s:5:\"title\";s:18:\"Top Rated Products\";s:6:\"number\";s:1:\"5\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("157", "widget_woocommerce_widget_cart", "a:5:{i:3;a:2:{s:5:\"title\";s:13:\"Shopping Cart\";s:13:\"hide_if_empty\";s:1:\"1\";}i:5;a:2:{s:5:\"title\";s:4:\"Cart\";s:13:\"hide_if_empty\";i:0;}i:6;a:2:{s:5:\"title\";s:7:\"My Cart\";s:13:\"hide_if_empty\";s:1:\"1\";}i:7;a:2:{s:5:\"title\";s:7:\"My Cart\";s:13:\"hide_if_empty\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}", "no");
INSERT INTO `wpos_options` VALUES("158", "king", "a:204:{s:8:\"last_tab\";s:1:\"0\";s:4:\"logo\";s:53:\"%SITE_URI%/wp-content/uploads/2017/04/MLK-CARE-01.png\";s:11:\"logo_height\";s:2:\"60\";s:8:\"logo_top\";s:2:\"10\";s:7:\"favicon\";s:53:\"%SITE_URI%/wp-content/uploads/2017/04/MLK-CARE-01.png\";s:6:\"layout\";s:4:\"wide\";s:10:\"responsive\";s:1:\"1\";s:7:\"effects\";s:1:\"1\";s:9:\"admin_bar\";s:4:\"show\";s:15:\"smoother_scroll\";s:7:\"disable\";s:10:\"breadcrumb\";s:2:\"no\";s:14:\"breadcrumb_tag\";s:2:\"h1\";s:8:\"breadeli\";s:1:\"/\";s:13:\"breadcrumb_bg\";s:0:\"\";s:10:\"api_server\";s:11:\"api.devn.co\";s:6:\"header\";s:18:\"header-style-4.php\";s:9:\"header_bg\";s:7:\"#1E191A\";s:13:\"header_top_bg\";s:7:\"#1E191A\";s:10:\"topSocials\";s:4:\"show\";s:12:\"topInfoEmail\";s:9:\"ar@mlk.pt\";s:12:\"topInfoPhone\";s:15:\"351 966 036 440\";s:15:\"topInfoLiveChat\";s:0:\"\";s:14:\"topInfoSupport\";s:0:\"\";s:12:\"topInfoLogin\";s:8:\"whmpress\";s:17:\"login_link_custom\";s:0:\"\";s:17:\"login_link_target\";s:5:\"_self\";s:11:\"topInfoCart\";s:4:\"hide\";s:9:\"searchNav\";s:4:\"hide\";s:10:\"stickymenu\";s:1:\"1\";s:10:\"slide_menu\";s:1:\"1\";s:8:\"wpml_top\";s:4:\"hide\";s:6:\"footer\";s:19:\"footer-layout-2.php\";s:10:\"footerText\";s:82:\"Copyright © 2016 <a href=\"http://mlk.pt\">MLK Solutions</a> - All rights reserved.\";s:9:\"footerMap\";s:0:\"\";s:11:\"footerTerms\";s:1:\"#\";s:13:\"footerPrivacy\";s:0:\"\";s:13:\"footerSiteMap\";s:0:\"\";s:19:\"target_footer_links\";s:2:\"no\";s:4:\"GAID\";s:0:\"\";s:14:\"need_help_text\";s:0:\"\";s:12:\"call_us_text\";s:0:\"\";s:15:\"newsletter_desc\";s:0:\"\";s:21:\"newsletter_text_input\";s:0:\"\";s:17:\"footer_phone_size\";s:2:\"30\";s:12:\"copyright_bg\";s:0:\"\";s:13:\"search_method\";s:1:\"2\";s:20:\"search_select_method\";s:1:\"2\";s:16:\"search_whmcs_url\";s:0:\"\";s:17:\"search_custom_url\";s:0:\"\";s:13:\"search_sg_tld\";s:0:\"\";s:13:\"whois_servers\";s:0:\"\";s:12:\"custom_param\";s:0:\"\";s:6:\"ogmeta\";s:1:\"1\";s:7:\"metatag\";s:1:\"1\";s:9:\"homeTitle\";s:28:\"Web Host Made Cheap and Easy\";s:11:\"homeTitleFm\";s:1:\"1\";s:11:\"postTitleFm\";s:1:\"1\";s:9:\"blogTitle\";s:0:\"\";s:15:\"archivesTitleFm\";s:1:\"1\";s:13:\"titleSeparate\";s:1:\"|\";s:16:\"homeMetaKeywords\";s:86:\"hosting, cheap, lowcost, barato,fiável,wordpress,joomla,magento,opencart,cPanel,Linux\";s:19:\"homeMetaDescription\";s:198:\"Web Hosting Barato e com uptime de mais de 99% , soluções a partir de 15€ ano. Linux , Cpanel, Wordpress, Joomla, Opencart, SSL grátis, Website Builder Grátis. Anti-Spam e Anti-Virús Grátis.\";s:18:\"authorMetaKeywords\";s:13:\"MLK Solutions\";s:19:\"contactMetaKeywords\";s:9:\"ar@mlk.pt\";s:17:\"otherMetaKeywords\";s:0:\"\";s:20:\"otherMetaDescription\";s:0:\"\";s:13:\"show_on_front\";s:4:\"page\";s:13:\"page_on_front\";s:4:\"1189\";s:14:\"page_for_posts\";s:3:\"517\";s:11:\"blog_layout\";s:7:\"masonry\";s:14:\"posts_per_page\";s:1:\"6\";s:13:\"posts_per_rss\";s:1:\"6\";s:15:\"rss_use_excerpt\";s:1:\"1\";s:11:\"opt_version\";s:10:\"1491391524\";s:17:\"newsletter_method\";s:4:\"self\";s:6:\"mc_api\";s:0:\"\";s:10:\"mc_list_id\";s:0:\"\";s:22:\"display_single_sidebar\";s:1:\"0\";s:12:\"excerptImage\";s:1:\"1\";s:15:\"post_bred_title\";s:5:\"title\";s:10:\"navArticle\";s:1:\"1\";s:8:\"showMeta\";s:1:\"1\";s:14:\"showAuthorMeta\";s:1:\"1\";s:12:\"showDateMeta\";s:1:\"1\";s:12:\"showCateMeta\";s:1:\"1\";s:16:\"showCommentsMeta\";s:1:\"1\";s:12:\"showTagsMeta\";s:1:\"1\";s:12:\"showShareBox\";s:1:\"1\";s:17:\"showShareFacebook\";s:1:\"1\";s:16:\"showShareTwitter\";s:1:\"1\";s:15:\"showShareGoogle\";s:1:\"1\";s:18:\"showSharePinterest\";s:1:\"1\";s:17:\"showShareLinkedin\";s:1:\"1\";s:18:\"archiveAboutAuthor\";s:1:\"0\";s:19:\"archiveRelatedPosts\";s:1:\"0\";s:20:\"archiveNumberofPosts\";s:1:\"3\";s:19:\"archiveRelatedQuery\";s:8:\"category\";s:8:\"sidebars\";a:1:{i:0;s:11:\"Nav Sidebar\";}s:10:\"colorStyle\";s:6:\"35d3b7\";s:15:\"backgroundColor\";s:0:\"\";s:16:\"backgroundCustom\";s:0:\"\";s:15:\"linksDecoration\";s:7:\"default\";s:20:\"linksHoverDecoration\";s:12:\"line-through\";s:9:\"cssGlobal\";s:0:\"\";s:10:\"cssTablets\";s:0:\"\";s:9:\"cssPhones\";s:0:\"\";s:17:\"generalTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:22:\"generalHoverTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:18:\"mainMenuTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:23:\"mainMenuHoverTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:21:\"mainMenuSubTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:26:\"mainMenuSubHoverTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:18:\"postMetaTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:22:\"postMatalinkTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:19:\"postTitleTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:19:\"postEntryTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:22:\"widgetTitlesTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:28:\"footerWidgetTitlesTypography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"h1Typography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"h2Typography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"h3Typography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"h4Typography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"h5Typography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:12:\"h6Typography\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"font\";s:0:\"\";s:4:\"size\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:5:\"style\";s:0:\"\";}s:4:\"feed\";s:0:\"\";s:8:\"facebook\";s:29:\"www.facebook.com/mlksolutions\";s:7:\"twitter\";s:0:\"\";s:6:\"google\";s:0:\"\";s:8:\"linkedin\";s:62:\"https://www.linkedin.com/in/mlk-solutions-%E2%80%8B-4977a012b/\";s:6:\"flickr\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:7:\"cs_logo\";s:0:\"\";s:18:\"cs_text_after_logo\";s:0:\"\";s:11:\"cs_timedown\";s:0:\"\";s:14:\"cs_description\";s:0:\"\";s:10:\"cs_slider1\";s:0:\"\";s:10:\"cs_slider2\";s:0:\"\";s:10:\"cs_slider3\";s:0:\"\";s:10:\"cs_slider4\";s:0:\"\";s:10:\"cs_slider5\";s:0:\"\";s:15:\"our_works_title\";s:0:\"\";s:14:\"our_works_slug\";s:0:\"\";s:20:\"our_works_breadcrumb\";s:17:\"page_title1 sty13\";s:23:\"our_works_breadcrumb_bg\";s:0:\"\";s:19:\"our_works_show_link\";s:1:\"1\";s:23:\"our_works_show_category\";s:1:\"1\";s:20:\"our_works_visit_link\";s:1:\"1\";s:20:\"our_works_page_title\";s:6:\"global\";s:19:\"our_works_main_page\";s:0:\"\";s:24:\"our_works_listing_layout\";s:1:\"2\";s:17:\"our_works_sidebar\";s:0:\"\";s:14:\"our_team_title\";s:0:\"\";s:13:\"our_team_slug\";s:0:\"\";s:9:\"faq_title\";s:0:\"\";s:8:\"faq_slug\";s:0:\"\";s:14:\"product_number\";s:2:\"12\";s:9:\"woo_grids\";s:1:\"3\";s:10:\"woo_layout\";s:4:\"left\";s:18:\"woo_product_layout\";s:5:\"right\";s:19:\"woo_product_display\";s:4:\"grid\";s:10:\"woo_filter\";s:1:\"1\";s:19:\"woo_related_columns\";s:1:\"4\";s:8:\"woo_cart\";s:1:\"0\";s:10:\"woo_social\";s:1:\"0\";s:13:\"woo_message_1\";s:0:\"\";s:13:\"woo_message_2\";s:0:\"\";s:18:\"woo_cat_breadcrumb\";s:0:\"\";s:22:\"woo_cat_breadcrumb_tag\";s:2:\"h1\";s:21:\"woo_cat_breadcrumb_bg\";s:0:\"\";s:21:\"woo_single_breadcrumb\";s:0:\"\";s:25:\"woo_single_breadcrumb_tag\";s:2:\"h1\";s:24:\"woo_single_breadcrumb_bg\";s:0:\"\";s:21:\"woo_search_breadcrumb\";s:0:\"\";s:25:\"woo_search_breadcrumb_tag\";s:2:\"h1\";s:24:\"woo_search_breadcrumb_bg\";s:0:\"\";s:9:\"mg_active\";s:1:\"1\";s:13:\"mg_zoom_width\";s:4:\"auto\";s:14:\"mg_zoom_height\";s:4:\"auto\";s:16:\"mg_zoom_position\";s:5:\"right\";s:23:\"mg_zoom_position_mobile\";s:7:\"default\";s:16:\"mg_loading_label\";s:10:\"Loading...\";s:15:\"mg_lens_opacity\";s:3:\"0.5\";s:7:\"mg_blur\";s:1:\"1\";s:19:\"mg_thumbnail_slider\";s:1:\"1\";s:14:\"mg_slider_item\";s:0:\"\";s:21:\"mg_thumbnail_circular\";s:1:\"1\";s:21:\"mg_thumbnail_infinite\";s:1:\"1\";s:10:\"wl_actived\";s:1:\"1\";s:10:\"wl_cookies\";s:1:\"1\";s:8:\"wl_title\";s:28:\"My Wishlist on ArkaHost Shop\";s:8:\"wl_label\";s:11:\"Add to Cart\";s:10:\"wl_w_label\";s:15:\"Add to wishlist\";s:11:\"wl_position\";s:10:\"after-cart\";s:11:\"wl_redirect\";s:1:\"1\";s:9:\"wl_remove\";s:1:\"1\";s:11:\"wl_facebook\";s:1:\"1\";s:10:\"wl_twitter\";s:1:\"1\";s:12:\"wl_pinterest\";s:1:\"1\";s:9:\"wl_google\";s:1:\"1\";s:9:\"wl_stitle\";s:28:\"My Wishlist on ArkaHost Shop\";s:8:\"wl_stext\";s:0:\"\";s:9:\"wl_simage\";s:0:\"\";}", "yes");
INSERT INTO `wpos_options` VALUES("159", "arkahost_import", "imported", "yes");
INSERT INTO `wpos_options` VALUES("169", "revslider_update_version", "5.2.5.5", "yes");
INSERT INTO `wpos_options` VALUES("170", "wpb_js_content_types", "a:2:{i:0;s:4:\"page\";i:1;s:9:\"mega_menu\";}", "yes");
INSERT INTO `wpos_options` VALUES("171", "vc_version", "5.0.1", "yes");
INSERT INTO `wpos_options` VALUES("174", "revslider-library-check", "1495467120", "yes");
INSERT INTO `wpos_options` VALUES("175", "rs-library", "a:2:{s:7:\"objects\";a:169:{i:198;a:11:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:11:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:11:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:11:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:11:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:11:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:11:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:11:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:11:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:11:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:11:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:11:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:11:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:11:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:11:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:11:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:11:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:11:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:11:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:11:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:11:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:11:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:11:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:11:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:11:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:11:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:11:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:11:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:11:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:11:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:11:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:11:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:11:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole-punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:11:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:11:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:11:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:11:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:11:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:11:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:11:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:11:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:11:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:11:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:11:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:11:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:11:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:11:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:11:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:11:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:11:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:11:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:11:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:11:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:11:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:11:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:11:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:11:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:11:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:11:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:11:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:11:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:11:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:11:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:11:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:11:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:11:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:11:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:11:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:11:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:11:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:11:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:11:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:11:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:11:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:11:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:11:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:11:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:11:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:11:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:11:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:11:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:11:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:11:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:11:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:11:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:11:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:11:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:11:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:11:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:11:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:11:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:11:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:11:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:11:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:11:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:11:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:11:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:11:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:11:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:11:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:11:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:11:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:11:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:11:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:11:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:11:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:11:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:11:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:11:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:11:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:11:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:11:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:11:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:11:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:11:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:11:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:11:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:11:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:11:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:11:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:11:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:11:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:11:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:11:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:11:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:11:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:11:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:11:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:11:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:11:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:11:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:11:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:11:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:11:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:11:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:11:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:11:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:11:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:11:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:11:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:11:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:11:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:11:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:11:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:11:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:11:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:11:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:11:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:11:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:11:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:11:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:11:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:11:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:11:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:11:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:11:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:11:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:11:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:11:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:11:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:11:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:11:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:11:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:11:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:11:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:11:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:11:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:11:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:11:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}s:4:\"tags\";a:13:{i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}}", "no");
INSERT INTO `wpos_options` VALUES("199", "db_server", "Localhost", "yes");
INSERT INTO `wpos_options` VALUES("200", "db_name", "mlksolut_whmc974", "yes");
INSERT INTO `wpos_options` VALUES("177", "wpcf7", "a:2:{s:7:\"version\";s:5:\"4.6.1\";s:9:\"recaptcha\";a:1:{s:40:\"6LcVtRsUAAAAADhLo0alt6995O1wWbaaqoSgtOnx\";s:40:\"6LcVtRsUAAAAAIEp0mXeWQVAgAi3-aPAnSnh0E7E\";}}", "yes");
INSERT INTO `wpos_options` VALUES("178", "wpb_js_composer_license_activation_notified", "yes", "yes");
INSERT INTO `wpos_options` VALUES("1283", "_site_transient_timeout_browser_37808791b2edf7106223e2d8b4feb482", "1493720591", "no");
INSERT INTO `wpos_options` VALUES("1284", "_site_transient_browser_37808791b2edf7106223e2d8b4feb482", "a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:13:\"Mobile Safari\";s:7:\"version\";s:6:\"537.36\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wpos_options` VALUES("1999", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1495477963", "no");
INSERT INTO `wpos_options` VALUES("2000", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4337;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2478;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2349;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2081;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1820;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1582;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1550;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1430;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1331;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1321;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1311;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1266;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1261;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1099;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1040;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1035;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:981;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:922;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:812;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:790;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:784;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:761;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:758;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:665;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:654;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:652;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:645;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:643;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:634;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:619;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:598;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:589;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:588;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:572;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:571;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:567;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:566;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:553;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:546;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:535;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:527;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:519;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:518;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:503;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:494;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:488;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:487;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:475;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:464;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:463;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:459;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:456;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:439;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:433;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:432;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:431;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:425;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:417;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:409;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:409;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:404;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:400;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:398;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:394;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:393;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:393;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:376;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:374;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:365;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:361;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:348;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:331;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:330;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:330;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:329;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:321;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:321;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:320;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:317;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:314;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:313;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:310;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:293;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:293;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:291;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:290;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:286;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:284;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:283;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:280;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:278;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:275;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:273;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:270;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:267;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:265;}s:14:\"administration\";a:3:{s:4:\"name\";s:14:\"administration\";s:4:\"slug\";s:14:\"administration\";s:5:\"count\";i:262;}s:7:\"captcha\";a:3:{s:4:\"name\";s:7:\"captcha\";s:4:\"slug\";s:7:\"captcha\";s:5:\"count\";i:261;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:261;}s:7:\"tinymce\";a:3:{s:4:\"name\";s:7:\"tinyMCE\";s:4:\"slug\";s:7:\"tinymce\";s:5:\"count\";i:260;}}", "no");
INSERT INTO `wpos_options` VALUES("185", "king_arkahost_options_css", "/*** THEME OPTIONS ***/html body #logo img{max-height:60px}html body .navbar-brand img{max-height:60px}html body .logo{margin-top:10px}.header,.fixednav3{background-color:#1E191A}.top_nav{background-color:#1E191A}body .header,body.compact .header,body .fixednav3{position:absolute}body .footer .ftop .left h1{font-size:30px}a{text-decoration:default}a:hover{text-decoration:line-through}.dropdown.minicart-nav>a>span,.msp-preset-btn-160,.sectitile .line,.king-tabs.detached ul.king-tabs-nav li.ui-tabs-active a,.king-tabs.detached ul.king-tabs-nav a:hover,#king_cart .remove:hover,#searchform #searchsubmit,.woocommerce-product-search input[type=\"submit\"],.header-style-2 ul.nav>li>a.active,.msp-preset-btn-161,.woocommerce span.onsale,.woocommerce-page span.onsale,.product .cart-loading,body .cforms_sty3 .button,ul.tabs li.active,html ul.tabs li.active a,html ul.tabs li.active a:hover{background-color:#35d3b7}#king_cart>p.total .amount,.featured_section13 .cirbox i:hover,.featured_section22 .one_fourth_big .element-icon,.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.current-menu-parent>a,.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover,.acc-trigger a,.acc-trigger a:hover,.king-wishlist-add-to-wishlist a i,.navbar-default .navbar-nav>.current-menu-parent>a,.single-product .summary .price ins span{color:#35d3b7}.woocommerce-product-search .btn,.king-switch-layout .fa-th:hover:before,.king-switch-layout .fa-list:hover:before,.king-switch-layout .active .fa:before,.woocommerce span.price ins .amount,.woocommerce span.price .amount,.widget_shopping_cart ul.product_list_widget li .amount,.product-buttons .button.product_type_simple:hover,.product-buttons .button.product_type_variable:hover,.product-buttons .show_details_button:hover,.king-wishlist-add-to-wishlist a i,.summary a.compare i,.woocommerce .star-rating span::before,.woocommerce-tabs #commentform p.stars span a,.woocommerce-tabs #commentform p.stars span a:after:hover,.woocommerce .star-rating span::before,.woocommerce .star-rating::before,.comment-form .comment-form-rating p.stars a:hover:after,#cart-place .cart .cart-content a{color:#35d3b7 !important}.woocommerce .widget_price_filter .ui-slider .ui-slider-range,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range,.order-dropdown ul li a:hover,.woocommerce-tabs ul.tabs li.active,.woocommerce-tabs ul.tabs li:hover,.woocommerce .product ul.tabs li.active a,.woocommerce .product ul.tabs li:hover a,.tags li a:hover,.tagcloud a:hover{background-color:#35d3b7 !important}.king_magnifier_zoom_magnifier,.woocommerce-page a.zoom img:hover,.woocommerce-page .input-text:hover{border-color:#35d3b7}.king_magnifier_lens{outline:1px solid #35d3b7}.sitecolor{color:#35d3b7}.header ul.nav>li>a.active,.header ul.nav>li.current-menu-parent>a{color:#35d3b7}.header ul.nav>li>a:hover.active{color:#35d3b7}.header ul.nav>li>a:hover{color:#35d3b7}.header ul.nav .dropdown li a em{background:#35d3b7}.header ul.nav .dropdown li a em.soon{background:#ccc}.site_wrapper ul.nav>li>a.active{color:#35d3b7}.site_wrapper ul.nav>li>a:hover.active{color:#35d3b7}.site_wrapper ul.nav>li>a:hover{color:#35d3b7;transition:all 0.3s ease}.site_wrapper ul.nav .dropdown li:hover a.active{color:#35d3b7}.site_wrapper .dropdown-menu>.active>a,.site_wrapper .dropdown-menu>.active>a:hover,.site_wrapper .dropdown-menu>.active>a:focus,.king-video-play-wrapper .play-button{color:#fff;background-color:#35d3b7}.site_wrapper .mega-menu-contnew .section-box.last a:hover{color:#fff;background:#35d3b7}.site_wrapper .mega-menu-contnew .section-box a.active,.site_wrapper .mega-menu-contnew .section-box a:hover,.site_wrapper .mega-menu-contnew .section-box a:hover strong,.site_wrapper .mega-menu-contnew .section-box a:hover span,.site_wrapper .mega-menu-contnew .section-box a:hover i{color:#35d3b7}.site_wrapper .mega-menu-contnew .section-box a.active span,.site_wrapper .mega-menu-contnew .section-box a.active i,.site_wrapper .mega-menu-contnew .section-box a.active strong{color:#35d3b7}.site_wrapper ul.nav .dropdown li a.active,.site_wrapper ul.nav .dropdown li a.active i{color:#35d3b7}.master-slider .ms-layer.text2 em{color:#35d3b7}.master-slider .ms-layer.text3 em{color:#35d3b7}.master-slider .ms-layer.text4 em{color:#35d3b7}.master-slider .ms-layer.sbut1:hover{color:#fff;background:#35d3b7}.master-slider .ms-layer.sbut2{color:#fff;background:#35d3b7}.master-slider .ms-layer.vline{background:#35d3b7}.master-slider .ms-layer.sbox1{color:#fff;background:#35d3b7}.master-slider .ms-layer.cirbox1.colored{color:#fff;background:#35d3b7}.domain_search .serch_area .input_submit{background-color:#35d3b7;color:#fff}.domain_search .serch_area .input_submit:hover{color:#35d3b7}.host_plans .planbox.highlight .prices{background:#35d3b7}.host_plans .planbox.highlight .prices:before{border-top:21px solid #35d3b7}.host_plans .planbox.highlight .prices a{color:#35d3b7;background:#fff}.host_plans .planbox .prices a:hover{color:#fff;background:#35d3b7}.host_plans .planbox.highlight .prices a:hover{background:rgba(0,0,0,0.1);color:#fff}.feature_section3 .lstblogs .date{background:#35d3b7}.site_wrapper .detached.tabs>ul>li.current span{background:#35d3b7}.feature_section4 .center{background:#35d3b7}body .button.one{color:#35d3b7}body .button.one:hover{background:#35d3b7}body .button.two,body .button.six{border:2px solid #35d3b7;color:#35d3b7}body .button.two:hover,body .button.six:hover{background:#35d3b7;border:2px solid #35d3b7}body .button.three{color:#35d3b7}body .button.three:hover{color:#fff;background:#35d3b7}body .button.three.dark:hover{color:#fff;background:#35d3b7}body .button.four{border:1px solid #35d3b7;color:#35d3b7}body .button.four:hover{background:#35d3b7;border:1px solid #35d3b7}body .button.five{color:#35d3b7}body .button.five:hover{background:#35d3b7}.footer .ftop .left h1{color:#35d3b7}.footer .ftop .right .input_submit:hover{color:#35d3b7}.price_compare .prices strong{color:#35d3b7}.price_compare .prices a:hover{color:#fff;background:#35d3b7}.price_compare .rowsremain.center span{background:#35d3b7}.price_compare .rowsremain.center .prices a:hover{color:#fff;background:#35d3b7}body .feature_section8 i{color:#35d3b7}.page_title1.sty7{background-color:#35d3b7}.site_wrapper .feature_section11 .tabs>li.active{color:#35d3b7}.logregform .feildcont .fbut{background:#35d3b7}.feature_section17 .one_third a.but1{background:#35d3b7}.cforms .button{background:#35d3b7;border:1px solid #35d3b7}.site_wrapper .tabs3 li a:hover{color:#35d3b7}.site_wrapper .tabs3 li.active a{color:#35d3b7}.site_wrapper .tabs2 li.active a{background-color:#35d3b7}.site_wrapper .tabs.side li.active a{background-color:#35d3b7}.site_wrapper .tabs li.active a:after{border-right-color:#35d3b7}.site_wrapper ul.tabs li.active,html ul.tabs li.active a,.site_wrapper html ul.tabs li.active a:hover{border-top:1px solid #35d3b7}.site_wrapper .tags li a:hover{background-color:#35d3b7}.features_sec14{background:#35d3b7}.pritable .pacdetails.three{box-shadow:0 -5px 0 #35d3b7}.pritable .pacdetails.three .title strong{color:#35d3b7}.pritable .pacdetails.three .bottom a{background:#35d3b7}.pritable .pacdetails.three h6{background:#35d3b7}.site_wrapper .st-accordion-four ul li.st-open>a{color:#35d3b7}.site_wrapper .st-accordion-four ul li>a{color:#35d3b7}.site_wrapper .st-accordion-four ul li>a:hover{color:#35d3b7}.site_wrapper .st-accordion ul li>a:hover{color:#35d3b7}.site_wrapper .cd-timeline-content h2{color:#35d3b7;font-weight:normal;margin-bottom:0}.site_wrapper .no-touch .cd-timeline-content .cd-read-more:hover{background-color:#35d3b7}.site_wrapper .cd-timeline-content .cd-date strong{background-color:#35d3b7}.site_wrapper .cd-timeline-content .cd-date strong{background:#35d3b7}.site_wrapper .cd-timeline-content .cd-date strong:after{border-right-color:#35d3b7}.site_wrapper .cd-timeline-content .cd-date b{background-color:#35d3b7}.site_wrapper .cd-timeline-content .cd-date b{background:#35d3b7}.site_wrapper .cd-timeline-content .cd-date b:after{border-left-color:#35d3b7}.features_sec38 h6{color:#35d3b7}.flips2_back{background-color:#35d3b7}.flips3_front.flipscont3 i{color:#35d3b7}.flips3_back{background-color:#35d3b7}.flips4_back h5 a:hover{color:#35d3b7}body .but_small1{background-color:#35d3b7}body .but_small1.gray:hover{background-color:#35d3b7}body .but_small3{background-color:#35d3b7}body .but_small2{background-color:#35d3b7}body .but_small4{background-color:#35d3b7}body .but_small5{color:#35d3b7;border:2px solid #35d3b7}body .but_small5.light:hover{color:#35d3b7}body .but_small5.light2:hover{color:#35d3b7}body .but_medium1{background-color:#35d3b7}body .but_medium3{background-color:#35d3b7}body .but_medium2{background-color:#35d3b7}.but_medium4{background-color:#35d3b7}.but_medium5{color:#35d3b7;border:2px solid #35d3b7}.but_large1{background-color:#35d3b7}.but_large1.small{background-color:#35d3b7}.but_large3{background-color:#35d3b7}.but_large2{background-color:#35d3b7}.but_large4{background-color:#35d3b7}.but_large4.white{color:#35d3b7}.but_large5{color:#35d3b7;border:2px solid #35d3b7}.but_full2 .butprogress{background:#35d3b7}.stcode_title4 .line{background:#35d3b7}.stcode_title5 .line{background:#35d3b7}.stcode_title7 .line{background:#35d3b7}.stcode_title12 h2{color:#35d3b7}.button.transp2{background:#35d3b7}.counters2 i{color:#35d3b7}.counters3 .one_fourth.white i{color:#35d3b7}.counters3 .one_fourth.one{color:#35d3b7}.counters3 .one_fourth.one i{color:#35d3b7}.counters3 .one_fourth.two{color:#35d3b7}.counters3 .one_fourth.two i{color:#35d3b7}.counters4{color:#35d3b7}.features_sec62 .box .icon:hover{color:#35d3b7}.pricingtable3 li.title.act{background-color:#35d3b7}.pricingtable3 li.hecont.act strong{background-color:#35d3b7}.pricingtable3 li.price.act h1{color:#35d3b7}.hexagon:hover i{color:#35d3b7}.sidebar_widget ul.arrows_list1 li a{color:#35d3b7}.recent_posts_list li a:hover{color:#35d3b7}.fati4{background-color:#35d3b7}.fati5{color:#35d3b7;border:1px solid #35d3b7}.fati9{color:#35d3b7;border:5px solid #35d3b7}.fati19:hover{color:#35d3b7}.big_text1 i{color:#35d3b7}.error_pagenotfound em{color:#35d3b7}.small_social_links li i{color:#35d3b7}.site_wrapper .cbp-l-caption-buttonLeft,.site_wrapper .cbp-l-caption-buttonRight{background-color:#35d3b7}.site_wrapper .cbp-l-filters-dropdownWrap{background:#35d3b7}.site_wrapper .cbp-l-grid-masonry .cbp-caption-activeWrap.two:hover .cbp-l-caption-title,.site_wrapper .cbp-l-grid-masonry .cbp-caption-activeWrap.three:hover .cbp-l-caption-title{color:#35d3b7}.blog_post h3 a{color:#35d3b7}.blog_post a.date:hover{color:#35d3b7}.sharepost li{background-color:#35d3b7}.about_author a:hover{color:#35d3b7}.alertymes2{background-color:#35d3b7}.site_wrapper #bar{background:#35d3b7}.pop-wrapper2.colored li a span{border:4px solid #35d3b7;background:#35d3b7}.pop-wrapper2.colored li a span:after{border-top:10px solid #35d3b7}a{color:#35d3b7}.color{color:#35d3b7}.but_small3 span{background-color:{darkercolor}}.but_medium3 span{background-color:{darkercolor}}.but_large3 span{background-color:{darkercolor}}.pricing-tables-helight .title{background-color:{darkercolor};border-top:3px solid{darkercolor};border-bottom:1px solid{darkercolor}}.pricing-tables-helight .price{background-color:#35d3b7}.pricing-tables-helight-two .title{background-color:{darkercolor};border-top:3px solid{darkercolor};border-bottom:1px solid{darkercolor}}.pricing-tables-helight-two .price{background-color:#35d3b7}.pricing-tables-main .ordernow .colorchan{color:#fff;background-color:#35d3b7}.pricingtable1 ul.active li.mostp{background-color:#35d3b7}.pricingtable1 ul.active li.title h4{color:#35d3b7}.pricingtable1 ul.active li.title h1{color:#35d3b7}.pricingtable1 ul.active li.planbut a{background-color:#35d3b7}.tp-caption.sbox1,.sbox1{background:#35d3b7}body .text2 em,body .text3 em{color:#35d3b7}body .cirbox1.colored,body .squarebox{background:#35d3b7}body .sbut1:hover,body .tp-caption .sbut1:hover{background:#35d3b7}body .feature_section1 i:hover{color:#35d3b7}body .feature_section3 .lstblogs .date:hover,body .feature_section3_elm .lstblogs h4 a:hover{color:#35d3b7}body .feature_section4 .center .button.three:hover{background:rgba(0,0,0,0.1)}body .feature_section6_elm .item strong{color:#35d3b7}body .cirbox2{background:#35d3b7}body .feature_section101 .sprice a{background:#35d3b7}body .domain_search.sty2 .serch_area .input_submit{background:#35d3b7}body .domain_search.sty2 .serch_area .input_submit:hover{color:#35d3b7}body .feature_section102 .plan h2 strong{color:#35d3b7}body .feature_section104 .box h1,body .feature_section107 h1 a{background:#35d3b7}body .tp-caption.sbut10,body .sbut10{background:#35d3b7}body .sbut10:hover,body .tp-caption.sbut10:hover{color:#35d3b7!important}body .host_plans_sty3 .one_third .price h1{color:#35d3b7}body .host_plans_sty3 .one_third a.but{background:#35d3b7}body .feature_section18 a{background:#35d3b7}body .features_sec40 .element-icon,body .price_compare .rowsremain.center .span{background:#35d3b7}body .hexagon:hover h6{color:#35d3b7}body .king-whmcs-wrapper .button.primary,body .king-whmcs-wrapper .btn-primary{background:#35d3b7}body .king-whmcs-wrapper a{color:#35d3b7}body .knavbar .knav>li>a:hover{color:#35d3b7}body .king-whmcs-wrapper .btn-success{background:#35d3b7}body .yamm-content .section-box.last a:hover{background:#35d3b7}body .feature_section15_elm .one_fourth_less a:hover i{background:#35d3b7}body .minicart-nav .cart-items{background:#35d3b7}body .flips1_back{background:#35d3b7}body .fati4{background:#35d3b7}body #wp-calendar th{background:#35d3b7}body .counters4{color:#35d3b7}.pritable .pacdetails.highlight .title strong{color:#35d3b7}body .pritable .pacdetails.highlight .bottom a,body .pritable .pacdetails.highlight h6{background:#35d3b7}body .king-tabs-vertical .king-tabs-nav .ui-tabs-active a,body .tabs2 .king-tabs-nav .ui-tabs-active a{background:#35d3b7}body .pritable .pacdetails.highlight{box-shadow:0 -5px 0 #35d3b7}body .pricing-tables-helight{background:#35d3b7}body .king-tabs-vertical .king-tabs-nav .ui-tabs-active a:after{border-right-color:#35d3b7}body a.but_goback{background:#35d3b7}body .cbp-l-grid-masonry-projects-title{color:#35d3b7}body .cforms .button,body #content .wpb_text_column .cforms .button{background:#35d3b7;border:1px solid rgba(0,0,0,0.1)}body .yamm-content .section-box a:hover,body .yamm-content .section-box a:hover strong,body .yamm-content .section-box a:hover span,body .yamm-content .section-box a:hover i{color:#35d3b7}body .tp-caption.sbut10,body .sbut10{background:#35d3b7!important}body #king_cart>p.total .amount{color:#35d3b7}body .launch{color:#35d3b7}body .top_header .right a.but.bridge_link{background:#35d3b7}body .header.sty3 .menu_main{background:#35d3b7}body .header.sty3 .minicart-nav .cart-items{background:#333}body .header.sty3 .navbar-default .navbar-nav>.current-menu-parent>a{color:rgba(0,0,0,0.5)}#whmcsorderfrm input[type=\"button\"]:hover,#whmcsorderfrm input[type=\"reset\"]:hover,#whmcsorderfrm input[type=\"submit\"]:hover{background:#35d3b7 none repeat scroll 0 0}body .top_header .right a.but{background:#35d3b7}body .header.sty3 .navbar-default .navbar-nav>li>a:focus{color:#fff}/**WHMPRESS**/.whmpress button,.whmpress a.whmpress-btn,.whmpress a.buy-button,.whmpress a.www-button,.whmpress a.whois-button,.whmpress input[type=\"submit\"]{background:#35d3b7;border-color:#35d3b7}.whmp_domain_search_ajax_results .whmp_found_result .whmp_search_ajax_buttons a{background:#35d3b7}.whmpress_announcements .announcement-date{background:#35d3b7}.whmpress_announcements a{color:#35d3b7}body .btn-primary,body #bridge .btn{background-color:#35d3b7;border-color:#35d3b7}.home-shortcuts{background:#35d3b7}.footer .secarea .address a:hover{color:#35d3b7}", "yes");
INSERT INTO `wpos_options` VALUES("198", "whmp_verified", "0", "yes");
INSERT INTO `wpos_options` VALUES("201", "db_user", "mlksolut_whmc974", "yes");
INSERT INTO `wpos_options` VALUES("202", "db_pass", "", "yes");
INSERT INTO `wpos_options` VALUES("203", "sync_run", "1", "yes");
INSERT INTO `wpos_options` VALUES("204", "sync_time", "April, 04 2017 - 10:30", "yes");
INSERT INTO `wpos_options` VALUES("205", "whmp_save_pwd", "", "yes");
INSERT INTO `wpos_options` VALUES("206", "whmp_language_options", "", "yes");
INSERT INTO `wpos_options` VALUES("207", "domain_available_message_pt_PT", "Domain is available", "yes");
INSERT INTO `wpos_options` VALUES("208", "domain_not_available_message_pt_PT", "Domain is not available", "yes");
INSERT INTO `wpos_options` VALUES("209", "domain_recommended_list_pt_PT", "Recommended domains list", "yes");
INSERT INTO `wpos_options` VALUES("210", "ongoing_domain_available_message_pt_PT", "[domain-name] is available", "yes");
INSERT INTO `wpos_options` VALUES("211", "ongoing_domain_not_available_message_pt_PT", "[domain-name] is registered", "yes");
INSERT INTO `wpos_options` VALUES("212", "register_domain_button_text_pt_PT", "Select", "yes");
INSERT INTO `wpos_options` VALUES("213", "load_more_button_text_pt_PT", "Load More", "yes");
INSERT INTO `wpos_options` VALUES("214", "whmcs_url", "http://support.mlksolutions.org/", "yes");
INSERT INTO `wpos_options` VALUES("215", "load_sytle_orders", "whmpress", "yes");
INSERT INTO `wpos_options` VALUES("216", "whmp_custom_css", "default.css", "yes");
INSERT INTO `wpos_options` VALUES("217", "whmp_custom_css_codes", "", "yes");
INSERT INTO `wpos_options` VALUES("218", "tld_order", "", "yes");
INSERT INTO `wpos_options` VALUES("219", "no_of_domains_to_show", "10", "yes");
INSERT INTO `wpos_options` VALUES("220", "enable_logs", "0", "yes");
INSERT INTO `wpos_options` VALUES("221", "whois_db", ".com|whois.crsnic.net|No match for\r\n.net|whois.crsnic.net|No match for\r\n.org|whois.publicinterestregistry.net|NOT FOUND\r\n.uk|whois.nic.uk|No match\r\n.co.uk|whois.nic.uk|No match\r\n.net.uk|whois.nic.uk|No match\r\n.org.uk|whois.nic.uk|No match\r\n.ltd.uk|whois.nic.uk|No match\r\n.plc.uk|whois.nic.uk|No match\r\n.me.uk|whois.nic.uk|No match\r\n.edu|whois.internic.net|No match for\r\n.mil|whois.internic.net|No match for\r\n.br.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.cn.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.eu.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.hu.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.no.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.qc.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.sa.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.se.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.se.net|whois.centralnic.com|DOMAIN NOT FOUND\r\n.us.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.uy.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.za.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.ac|whois.nic.ac|is not registered\r\n.co.ac|whois.nic.ac|is not registered\r\n.gv.ac|whois.nic.ac|is not registered\r\n.or.ac|whois.nic.ac|is not registered\r\n.ac.ac|whois.nic.ac|is not registered\r\n.af|whois.nic.af|No Object Found\r\n.am|whois.amnic.net|No match\r\n.as|whois.nic.as|Available\r\n.at|whois.nic.at|nothing found\r\n.ac.at|whois.nic.at|nothing found\r\n.co.at|whois.nic.at|nothing found\r\n.gv.at|whois.nic.at|nothing found\r\n.or.at|whois.nic.at|nothing found\r\n.asn.au|whois.audns.net.au|No Data Found\r\n.com.au|whois.audns.net.au|No Data Found\r\n.edu.au|whois.audns.net.au|No Data Found\r\n.org.au|whois.audns.net.au|No Data Found\r\n.net.au|whois.audns.net.au|No Data Found\r\n.id.au|whois.audns.net.au|No Data Found\r\n.be|whois.dns.be|Status:	AVAILABLE\r\n.ac.be|whois.dns.be|No such domain\r\n.br|whois.nic.br|No match for\r\n.adm.br|whois.nic.br|No match for\r\n.adv.br|whois.nic.br|No match for\r\n.am.br|whois.nic.br|No match for\r\n.arq.br|whois.nic.br|No match for\r\n.art.br|whois.nic.br|No match for\r\n.bio.br|whois.nic.br|No match for\r\n.cng.br|whois.nic.br|No match for\r\n.cnt.br|whois.nic.br|No match for\r\n.com.br|whois.nic.br|No match for\r\n.ecn.br|whois.nic.br|No match for\r\n.eng.br|whois.nic.br|No match for\r\n.esp.br|whois.nic.br|No match for\r\n.etc.br|whois.nic.br|No match for\r\n.eti.br|whois.nic.br|No match for\r\n.fm.br|whois.nic.br|No match for\r\n.fot.br|whois.nic.br|No match for\r\n.fst.br|whois.nic.br|No match for\r\n.g12.br|whois.nic.br|No match for\r\n.gov.br|whois.nic.br|No match for\r\n.ind.br|whois.nic.br|No match for\r\n.inf.br|whois.nic.br|No match for\r\n.jor.br|whois.nic.br|No match for\r\n.lel.br|whois.nic.br|No match for\r\n.med.br|whois.nic.br|No match for\r\n.mil.br|whois.nic.br|No match for\r\n.net.br|whois.nic.br|No match for\r\n.nom.br|whois.nic.br|No match for\r\n.ntr.br|whois.nic.br|No match for\r\n.odo.br|whois.nic.br|No match for\r\n.org.br|whois.nic.br|No match for\r\n.ppg.br|whois.nic.br|No match for\r\n.pro.br|whois.nic.br|No match for\r\n.psc.br|whois.nic.br|No match for\r\n.psi.br|whois.nic.br|No match for\r\n.rec.br|whois.nic.br|No match for\r\n.slg.br|whois.nic.br|No match for\r\n.tmp.br|whois.nic.br|No match for\r\n.tur.br|whois.nic.br|No match for\r\n.tv.br|whois.nic.br|No match for\r\n.vet.br|whois.nic.br|No match for\r\n.zlg.br|whois.nic.br|No match for\r\n.ca|whois.cira.ca|Domain status:         available\r\n.cc|whois.nic.cc|No match\r\n.cn|whois.cnnic.net.cn|no matching record\r\n.ac.cn|whois.cnnic.net.cn|no matching record\r\n.com.cn|whois.cnnic.net.cn|no matching record\r\n.edu.cn|whois.cnnic.net.cn|no matching record\r\n.gov.cn|whois.cnnic.net.cn|no matching record\r\n.net.cn|whois.cnnic.net.cn|no matching record\r\n.org.cn|whois.cnnic.net.cn|no matching record\r\n.bj.cn|whois.cnnic.net.cn|no matching record\r\n.sh.cn|whois.cnnic.net.cn|no matching record\r\n.tj.cn|whois.cnnic.net.cn|no matching record\r\n.cq.cn|whois.cnnic.net.cn|no matching record\r\n.he.cn|whois.cnnic.net.cn|no matching record\r\n.nm.cn|whois.cnnic.net.cn|no matching record\r\n.ln.cn|whois.cnnic.net.cn|no matching record\r\n.jl.cn|whois.cnnic.net.cn|no matching record\r\n.hl.cn|whois.cnnic.net.cn|no matching record\r\n.js.cn|whois.cnnic.net.cn|no matching record\r\n.zj.cn|whois.cnnic.net.cn|no matching record\r\n.ah.cn|whois.cnnic.net.cn|no matching record\r\n.hb.cn|whois.cnnic.net.cn|no matching record\r\n.hn.cn|whois.cnnic.net.cn|no matching record\r\n.gd.cn|whois.cnnic.net.cn|no matching record\r\n.gx.cn|whois.cnnic.net.cn|no matching record\r\n.hi.cn|whois.cnnic.net.cn|no matching record\r\n.sc.cn|whois.cnnic.net.cn|no matching record\r\n.scot|whois.scot.coreregistry.net|no matching objects found\r\n.gz.cn|whois.cnnic.net.cn|no matching record\r\n.yn.cn|whois.cnnic.net.cn|no matching record\r\n.xz.cn|whois.cnnic.net.cn|no matching record\r\n.sn.cn|whois.cnnic.net.cn|no matching record\r\n.gs.cn|whois.cnnic.net.cn|no matching record\r\n.qh.cn|whois.cnnic.net.cn|no matching record\r\n.nx.cn|whois.cnnic.net.cn|no matching record\r\n.xj.cn|whois.cnnic.net.cn|no matching record\r\n.tw.cn|whois.cnnic.net.cn|no matching record\r\n.hk.cn|whois.cnnic.net.cn|no matching record\r\n.mo.cn|whois.cnnic.net.cn|no matching record\r\n.cx|whois.nic.cx|No match for\r\n.cz|whois.nic.cz|No entries found\r\n.de|whois.denic.de|Status: free\r\n.dk|whois.dk-hostmaster.dk|No entries found\r\n.fo|whois.nic.fo|no entries found\r\n.com.ec|whois.lac.net|No match found\r\n.org.ec|whois.lac.net|No match found\r\n.net.ec|whois.lac.net|No match found\r\n.mil.ec|whois.lac.net|No match found\r\n.fin.ec|whois.lac.net|No match found\r\n.med.ec|whois.lac.net|No match found\r\n.gov.ec|whois.lac.net|No match found\r\n.fr|whois.nic.fr|No entries found\r\n.tm.fr|whois.nic.fr|No entries found\r\n.com.fr|whois.nic.fr|No entries found\r\n.asso.fr|whois.nic.fr|No entries found\r\n.presse.fr|whois.nic.fr|No entries found\r\n.gf|whois.nplus.gf|not found in our database\r\n.co.il|whois.isoc.org.il|No data was found\r\n.org.il|whois.isoc.org.il|No data was found\r\n.net.il|whois.isoc.org.il|No data was found\r\n.ac.il|whois.isoc.org.il|No data was found\r\n.k12.il|whois.isoc.org.il|No data was found\r\n.gov.il|whois.isoc.org.il|No data was found\r\n.muni.il|whois.isoc.org.il|No data was found\r\n.ac.in|whois.inregistry.in|NOT FOUND\r\n.co.in|whois.inregistry.in|NOT FOUND\r\n.org.in|whois.inregistry.in|NOT FOUND\r\n.ernet.in|whois.inregistry.in|NOT FOUND\r\n.gov.in|whois.inregistry.in|NOT FOUND\r\n.net.in|whois.inregistry.in|NOT FOUND\r\n.res.in|whois.inregistry.in|NOT FOUND\r\n.is|whois.isnic.is|No entries found\r\n.it|whois.nic.it|AVAILABLE\r\n.ac.jp|whois.nic.ad.jp|No match!!\r\n.co.jp|whois.nic.ad.jp|No match!!\r\n.go.jp|whois.nic.ad.jp|No match!!\r\n.or.jp|whois.nic.ad.jp|No match!!\r\n.ne.jp|whois.nic.ad.jp|No match!!\r\n.ac.kr|whois.nic.or.kr|is not registered\r\n.co.kr|whois.nic.or.kr|is not registered\r\n.go.kr|whois.nic.or.kr|is not registered\r\n.ne.kr|whois.nic.or.kr|is not registered\r\n.nm.kr|whois.nic.or.kr|is not registered\r\n.or.kr|whois.nic.or.kr|is not registered\r\n.re.kr|whois.nic.or.kr|is not registered\r\n.li|whois.nic.li|do not have an entry in our database matching your query\r\n.lt|das.domreg.lt|Status: available\r\n.lu|whois.dns.lu|No such domain\r\n.asso.mc|whois.ripe.net|no entries found\r\n.tm.mc|whois.ripe.net|no entries found\r\n.com.mm|whois.nic.mm|No domains matched\r\n.org.mm|whois.nic.mm|No domains matched\r\n.net.mm|whois.nic.mm|No domains matched\r\n.edu.mm|whois.nic.mm|No domains matched\r\n.gov.mm|whois.nic.mm|No domains matched\r\n.mx|whois.nic.mx|No_Se_Encontro_El_Objeto/Object_Not_Found\r\n.com.mx|whois.nic.mx|Object_Not_Found\r\n.org.mx|whois.nic.mx|Object_Not_Found\r\n.net.mx|whois.nic.mx|Object_Not_Found\r\n.edu.mx|whois.nic.mx|Object_Not_Found\r\n.gov.mx|whois.nic.mx|Object_Not_Found\r\n.gob.mx|whois.nic.mx|Object_Not_Found\r\n.nl|whois.domain-registry.nl|is free\r\n.no|finger.norid.no:79|is available\r\n.nu|whois.nic.nu|not found\r\n.pl|whois.dns.pl|No information available\r\n.com.pl|whois.dns.pl|No information available\r\n.net.pl|whois.dns.pl|No information available\r\n.org.pl|whois.dns.pl|No information available\r\n.aid.pl|whois.dns.pl|No information available\r\n.agro.pl|whois.dns.pl|No information available\r\n.atm.pl|whois.dns.pl|No information available\r\n.auto.pl|whois.dns.pl|No information available\r\n.biz.pl|whois.dns.pl|No information available\r\n.edu.pl|whois.dns.pl|No information available\r\n.gmina.pl|whois.dns.pl|No information available\r\n.gsm.pl|whois.dns.pl|No information available\r\n.info.pl|whois.dns.pl|No information available\r\n.mail.pl|whois.dns.pl|No information available\r\n.miasta.pl|whois.dns.pl|No information available\r\n.media.pl|whois.dns.pl|No information available\r\n.mil.pl|whois.dns.pl|No information available\r\n.nom.pl|whois.dns.pl|No information available\r\n.pc.pl|whois.dns.pl|No information available\r\n.priv.pl|whois.dns.pl|No information available\r\n.realestate.pl|whois.dns.pl|No information available\r\n.rel.pl|whois.dns.pl|No information available\r\n.shop.pl|whois.dns.pl|No information available\r\n.sklep.pl|whois.dns.pl|No information available\r\n.sos.pl|whois.dns.pl|No information available\r\n.targi.pl|whois.dns.pl|No information available\r\n.tm.pl|whois.dns.pl|No information available\r\n.tourism.pl|whois.dns.pl|No information available\r\n.travel.pl|whois.dns.pl|No information available\r\n.turystyka.pl|whois.dns.pl|No information available\r\n.ro|whois.rotld.ro|No entries found\r\n.com.ro|whois.rotld.ro|No entries found\r\n.org.ro|whois.rotld.ro|No entries found\r\n.store.ro|whois.rotld.ro|No entries found\r\n.tm.ro|whois.rotld.ro|No entries found\r\n.firm.ro|whois.rotld.ro|No entries found\r\n.www.ro|whois.rotld.ro|No entries found\r\n.arts.ro|whois.rotld.ro|No entries found\r\n.rec.ro|whois.rotld.ro|No entries found\r\n.info.ro|whois.rotld.ro|No entries found\r\n.nom.ro|whois.rotld.ro|No entries found\r\n.nt.ro|whois.rotld.ro|No entries found\r\n.se|whois.iis.se|not found\r\n.si|whois.arnes.si|No entries found\r\n.com.sg|whois.nic.net.sg|Domain Not Found\r\n.org.sg|whois.nic.net.sg|Domain Not Found\r\n.net.sg|whois.nic.net.sg|Domain Not Found\r\n.gov.sg|whois.nic.net.sg|Domain Not Found\r\n.sk|whois.sk-nic.sk|Not found\r\n.st|whois.nic.st|No entries found\r\n.tf|whois.adamsnames.tc|Available\r\n.ac.th|whois.thnic.net|No match for\r\n.co.th|whois.thnic.net|No match for\r\n.go.th|whois.thnic.net|No match for\r\n.mi.th|whois.thnic.net|No match for\r\n.net.th|whois.thnic.net|No match for\r\n.or.th|whois.thnic.net|No match for\r\n.in.th|whois.thnic.net|No match for\r\n.tj|whois.nic.tj|No match\r\n.to|monarch.tonic.to|No match for\r\n.bbs.tr|whois.metu.edu.tr|No match found\r\n.com.tr|whois.metu.edu.tr|No match found\r\n.edu.tr|whois.metu.edu.tr|No match found\r\n.gov.tr|whois.metu.edu.tr|No match found\r\n.k12.tr|whois.metu.edu.tr|No match found\r\n.mil.tr|whois.metu.edu.tr|No match found\r\n.net.tr|whois.metu.edu.tr|No match found\r\n.org.tr|whois.metu.edu.tr|No match found\r\n.com.tw|whois.twnic.net|No Found\r\n.org.tw|whois.twnic.net|No Found\r\n.net.tw|whois.twnic.net|No Found\r\n.ac.uk|whois.ja.net|Sorry - no\r\n.uk.co|whois.uk.co|NO MATCH\r\n.uk.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.uk.net|whois.centralnic.com|DOMAIN NOT FOUND\r\n.gb.com|whois.centralnic.com|DOMAIN NOT FOUND\r\n.gb.net|whois.centralnic.com|DOMAIN NOT FOUND\r\n.ac.za|whois.co.za|No information available\r\n.alt.za|whois.co.za|No information available\r\n.co.za|whois.registry.net.za|Available\r\n.edu.za|whois.co.za|No information available\r\n.gov.za|whois.co.za|No information available\r\n.mil.za|whois.co.za|No information available\r\n.net.za|net-whois.registry.net.za|Available\r\n.ngo.za|whois.co.za|No information available\r\n.nom.za|whois.co.za|No information available\r\n.org.za|org-whois.registry.net.za|Available\r\n.school.za|whois.co.za|No information available\r\n.tm.za|whois.co.za|No information available\r\n.web.za|web-whois.registry.net.za|Available\r\n.kz|whois.domain.kz|No entries found\r\n.ch|whois.nic.ch|not have an entry\r\n.info|whois.afilias.net|NOT FOUND\r\n.ua|whois.net.ua|No entries found\r\n.biz|whois.nic.biz|Not found\r\n.ws|whois.website.ws|No match for\r\n.gov|whois.nic.gov|No match for\r\n.name|whois.nic.name|No match\r\n.ie|whois.domainregistry.ie|% Not Registered\r\n.hk|whois.hkirc.hk|The domain has not been registered\r\n.com.hk|whois.hkdnr.net.hk|The domain has not been registered\r\n.org.hk|whois.hkdnr.net.hk|The domain has not been registered\r\n.net.hk|whois.hkdnr.net.hk|The domain has not been registered\r\n.edu.hk|whois.hkdnr.net.hk|The domain has not been registered\r\n.us|whois.nic.us|Not found\r\n.tk|https://partners.nic.tk/cgi-bin/whmcs-whois.taloha?d=|HTTPREQUEST-has no matches\r\n.cd|whois.cd|No match\r\n.aero|whois.aero|NOT FOUND\r\n.by|whois.cctld.by|Object does not exist\r\n.ad|whois.ripe.net|no entries found\r\n.lv|whois.nic.lv|Status: free\r\n.eu.lv|whois.biz|Not found\r\n.bz|whois.afilias-grs.info.|NOT FOUND\r\n.es|http://whois.virtualname.es/whois.php?domain=|HTTPREQUEST-LIBRE\r\n.jp|whois.jprs.jp|No match!!\r\n.cl|whois.nic.cl|no existe\r\n.ag|whois.nic.ag|NOT FOUND\r\n.mobi|whois.dotmobiregistry.net|NOT FOUND\r\n.eu|whois.eu|Status: AVAILABLE\r\n.co.nz|whois.srs.net.nz|220 Available\r\n.org.nz|whois.srs.net.nz|220 Available\r\n.net.nz|whois.srs.net.nz|220 Available\r\n.maori.nz|whois.srs.net.nz|220 Available\r\n.iwi.nz|whois.srs.net.nz|220 Available\r\n.ac.nz|whois.srs.net.nz|220 Available\r\n.kiwi.nz|whois.srs.net.nz|220 Available\r\n.geek.nz|whois.srs.net.nz|220 Available\r\n.gen.nz|whois.srs.net.nz|220 Available\r\n.school.nz|whois.srs.net.nz|220 Available\r\n.nz|whois.srs.net.nz|220 Available\r\n.io|whois.nic.io|is available\r\n.la|whois.nic.la|NOT FOUND\r\n.md|whois.nic.md|No match for\r\n.sc|wawa.eahd.or.ug|No entries found\r\n.sg|whois.nic.net.sg|Domain Not Found\r\n.vc|whois.adamsnames.tc|Available\r\n.tw|whois.twnic.net.tw|No Found\r\n.travel|whois.nic.travel|Not found\r\n.my|whois.mynic.net.my|does not exist in database\r\n.com.my|whois.mynic.net.my|does not exist\r\n.net.my|whois.mynic.net.my|does not exist\r\n.org.my|whois.mynic.net.my|does not exist\r\n.edu.my|whois.mynic.net.my|does not exist\r\n.gov.my|whois.mynic.net.my|does not exist\r\n.com.ph|http://www2.dot.ph/WhoIs.asp?Domain=|HTTPREQUEST-is still available\r\n.net.ph|http://www2.dot.ph/WhoIs.asp?Domain=|HTTPREQUEST-is still available\r\n.org.ph|http://www2.dot.ph/WhoIs.asp?Domain=|HTTPREQUEST-is still available\r\n.ngo.ph|http://www2.dot.ph/WhoIs.asp?Domain=|HTTPREQUEST-is still available\r\n.ph|http://www2.dot.ph/WhoIs.asp?Domain=|HTTPREQUEST-is still available\r\n.tv|whois.nic.tv|No match for\r\n.pt|whois.dns.pt|no match\r\n.com.pt|whois.dns.pt|no match\r\n.edu.pt|whois.dns.pt|no match\r\n.in|whois.inregistry.in|NOT FOUND\r\n.me|whois.meregistry.net|NOT FOUND\r\n.asia|whois.nic.asia|NOT FOUND\r\n.fi|whois.ficora.fi|Domain not found\r\n.za.net|http://www.za.net/cgi-bin/whois.cgi?domain=|HTTPREQUEST-No such domain\r\n.za.org|http://www.za.net/cgi-bin/whois.cgi?domain=|HTTPREQUEST-No such domain\r\n.com.ve|https://registro.nic.ve/modules/whois?query=|HTTPREQUEST-No match for\r\n.net.ve|https://registro.nic.ve/modules/whois?query=|HTTPREQUEST-No match for\r\n.org.ve|https://registro.nic.ve/modules/whois?query=|HTTPREQUEST-No match for\r\n.web.ve|https://registro.nic.ve/modules/whois?query=|HTTPREQUEST-No match for\r\n.info.ve|https://registro.nic.ve/modules/whois?query=|HTTPREQUEST-No match for\r\n.co.ve|https://registro.nic.ve/modules/whois?query=|HTTPREQUEST-No match for\r\n.tel|whois.nic.tel|Not found\r\n.im|whois.nic.im|was not found\r\n.gr|http://grwhois.ics.forth.gr:800/plainwhois/plainWhois?domainName=|HTTPREQUEST-not exist\r\n.com.gr|http://grwhois.ics.forth.gr:800/plainwhois/plainWhois?domainName=|HTTPREQUEST-not exist\r\n.net.gr|http://grwhois.ics.forth.gr:800/plainwhois/plainWhois?domainName=|HTTPREQUEST-not exist\r\n.org.gr|http://grwhois.ics.forth.gr:800/plainwhois/plainWhois?domainName=|HTTPREQUEST-not exist\r\n.edu.gr|http://grwhois.ics.forth.gr:800/plainwhois/plainWhois?domainName=|HTTPREQUEST-not exist\r\n.gov.gr|http://grwhois.ics.forth.gr:800/plainwhois/plainWhois?domainName=|HTTPREQUEST-not exist\r\n.ir|whois.nic.ir|no entries found\r\n.ru|whois.ripn.net|No entries found\r\n.pp.ru|whois.ripn.net|No entries found\r\n.net.ru|whois.ripn.net|No entries found\r\n.org.ru|whois.ripn.net|No entries found\r\n.spb.ru|whois.relcom.ru|No entries found\r\n.msk.ru|whois.relcom.ru|No entries found\r\n.su|whois.ripn.net|No entries found\r\n.com.ru|whois.ripn.net|No entries found\r\n.com.ua|whois.net.ua|No entries found\r\n.lviv.ua|whois.net.ua|No entries found\r\n.dn.ua|whois.net.ua|No entries found\r\n.kh.ua|whois.net.ua|No entries found\r\n.lg.ua|whois.net.ua|No entries found\r\n.net.ua|whois.net.ua|No entries found\r\n.org.ua|whois.net.ua|No entries found\r\n.kiev.ua|whois.net.ua|No entries found\r\n.co|whois.nic.co|Not found\r\n.net.co|whois.nic.co|Not found\r\n.com.co|whois.nic.co|Not found\r\n.nom.co|whois.nic.co|Not found\r\n.edu.sg|whois.nic.net.sg|Domain Not Found\r\n.com.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.net.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.org.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.ind.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.edu.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.gob.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.mil.gt|http://www.gt/cgi-bin/whois.cgi?domain=|HTTPREQUEST-DOMINIO NO REGISTRADO\r\n.pro|whois.registrypro.pro|NOT FOUND\r\n.re|whois.nic.re|No entries found\r\n.pm|whois.nic.pm|No entries found\r\n.tf|whois.nic.tf|No entries found\r\n.wf|whois.nic.wf|No entries found\r\n.yt|whois.nic.yt|No entries found\r\n.xxx|whois.nic.xxx|NOT FOUND\r\n.hu|whois.nic.hu|No match\r\n.ac.ke|whois.kenic.or.ke|Not Registered\r\n.co.ke|whois.kenic.or.ke|Not Registered\r\n.or.ke|whois.kenic.or.ke|Not Registered\r\n.ne.ke|whois.kenic.or.ke|Not Registered\r\n.mobi.ke|whois.kenic.or.ke|Not Registered\r\n.info.ke|whois.kenic.or.ke|Not Registered\r\n.go.ke|whois.kenic.or.ke|Not Registered\r\n.me.ke|whois.kenic.or.ke|Not Registered\r\n.sc.ke|whois.kenic.or.ke|Not Registered\r\n.ac.ke|whois.kenic.or.ke|Not Registered\r\n.gd|whois.nic.gd|not found...\r\n.rs|whois.rnids.rs|%ERROR:103\r\n.co.rs|whois.rnids.rs|%ERROR:103\r\n.org.rs|whois.rnids.rs|%ERROR:103\r\n.edu.rs|whois.rnids.rs|%ERROR:103\r\n.in.rs|whois.rnids.rs|%ERROR:103\r\n.ae|whois.aeda.net.ae|No Data Found\r\n.pw|whois.nic.pw|DOMAIN NOT FOUND\r\n.cat|whois.cat|NOT FOUND\r\n.mil.id|whois.idnic.net.id|Not found\r\n.go.id|whois.idnic.net.id|Not found\r\n.fm|whois.nic.fm|Not Registered\r\n.mn|whois.afilias-grs.info|NOT FOUND\r\n.sx|whois.sx|Status: AVAILABLE\r\n.pa|http://www.nic.pa/whois.php?nombre_d=|HTTPREQUEST-esta disponible para ser Registrado\r\n.com.pa|http://www.nic.pa/whois.php?nombre_d=|HTTPREQUEST-esta disponible para ser Registrado\r\n.net.pa|http://www.nic.pa/whois.php?nombre_d=|HTTPREQUEST-esta disponible para ser Registrado\r\n.org.pa|http://www.nic.pa/whois.php?nombre_d=|HTTPREQUEST-esta disponible para ser Registrado\r\n.equipment|whois.donuts.co|Domain not found\r\n.gallery|whois.donuts.co|Domain not found\r\n.graphics|whois.donuts.co|Domain not found\r\n.lighting|whois.donuts.co|Domain not found\r\n.photography|whois.donuts.co|Domain not found\r\n.directory|whois.donuts.co|Domain not found\r\n.technology|whois.donuts.co|Domain not found\r\n.today|whois.donuts.co|Domain not found\r\n.bike|whois.donuts.co|Domain not found\r\n.clothing|whois.donuts.co|Domain not found\r\n.guru|whois.donuts.co|Domain not found\r\n.plumbing |whois.donuts.co|Domain not found\r\n.singles|whois.donuts.co|Domain not found\r\n.camera|whois.donuts.co|Domain not found\r\n.estate|whois.donuts.co|Domain not found\r\n.construction|whois.donuts.co|Domain not found\r\n.contractors|whois.donuts.co|Domain not found\r\n.kitchen|whois.donuts.co|Domain not found\r\n.land|whois.donuts.co|Domain not found\r\n.enterprises|whois.donuts.co|Domain not found\r\n.holdings|whois.donuts.co|Domain not found\r\n.ventures|whois.donuts.co|Domain not found\r\n.diamonds|whois.donuts.co|Domain not found\r\n.voyage|whois.donuts.co|Domain not found\r\n.photos|whois.donuts.co|Domain not found\r\n.shoes|whois.donuts.co|Domain not found\r\n.careers|whois.donuts.co|Domain not found\r\n.recipes|whois.donuts.co|Domain not found\r\n.cm|whois.netcom.cm|Not Registered\r\n.gs|whois.nic.gs|No Object Found\r\n.ms|whois.nic.ms|No Object Found\r\n.sh|whois.nic.sh|is available for purchase\r\n.tm|whois.nic.tm|is available for purchase\r\n.vg|whois.adamsnames.tc|No Object Found\r\n.ac|whois.nic.ac|is available for purchase\r\n.tc|whois.adamsnames.tc|No Object Found\r\n.ee|whois.tld.ee|no entries found\r\n.academy|whois.donuts.co|Domain not found.\r\n.agency|whois.donuts.co|Domain not found.\r\n.airforce|whois.unitedtld.com|Domain not found\r\n.archi|whois.ksregistry.net|not found\r\n.arpa|whois.iana.org|0 objects\r\n.associates|whois.donuts.co|Domain not found\r\n.ax|whois.ax|No records matching\r\n.bargains|whois.donuts.co|Domain not found.\r\n.berlin|whois.nic.berlin|No match\r\n.blue|whois.afilias.net|NOT FOUND\r\n.boutique|whois.donuts.co|Domain not found.\r\n.builders|whois.donuts.co|Domain not found\r\n.build|whois.nic.build |No Data Found\r\n.buzz|whois.nic.buzz|Not found:\r\n.cab|whois.donuts.co|Domain not found.\r\n.camp|whois.donuts.co|Domain not found.\r\n.capetown|whois.nic.capetown|Available\r\n.center|whois.donuts.co|Domain not found.\r\n.cheap|whois.donuts.co|Domain not found.\r\n.club|whois.nic.club|Not found\r\n.codes|whois.donuts.co|Domain not found.\r\n.coffee|whois.donuts.co|Domain not found\r\n.company|whois.donuts.co|Domain not found.\r\n.computer|whois.donuts.co|Domain not found.\r\n.cool|whois.donuts.co|Domain not found\r\n.durban|whois.nic.durban|Available\r\n.education|whois.donuts.co|Domain not found.\r\n.email|whois.donuts.co|Domain not found.\r\n.expert|whois.donuts.co|Domain not found\r\n.exposed|whois.donuts.co|Domain not found.\r\n.farm|whois.donuts.co|Domain not found.\r\n.flights|whois.donuts.co|Domain not found\r\n.florist|whois.donuts.co|Domain not found.\r\n.futbol|whois.unitedtld.com|Domain not found\r\n.gift|whois.uniregistry.net|available for registration\r\n.glass|whois.donuts.co|Domain not found.\r\n.guitars|whois.uniregistry.net|available for registration\r\n.holiday|whois.donuts.co|Domain not found.\r\n.house|whois.donuts.co|Domain not found.\r\n.ink|whois.donuts.co|Domain not found\r\n.institute|whois.donuts.co|Domain not found.\r\n.international|whois.donuts.co|Domain not found.\r\n.joburg|whois.nic.joburg|Available\r\n.kim|whois.afilias.net|NOT FOUND\r\n.limo|whois.donuts.co|Domain not found.\r\n.link|whois.uniregistry.net|available for registration\r\n.luxury|whois.donuts.co|Domain not found\r\n.maison|whois.donuts.co|Domain not found\r\n.management|whois.donuts.co|Domain not found.\r\n.marketing|whois.donuts.co|Domain not found.\r\n.menu|whois.nic.menu|No Data Found\r\n.moda|whois.nic.moda|Domain not found\r\n.ninja|whois.donuts.co|Domain not found\r\n.onl|whois.donuts.co|Domain not found\r\n.pics|whois.uniregistry.net|available for registration\r\n.pink|whois.afilias.net|NOT FOUND\r\n.repair|whois.donuts.co|Domain not found.\r\n.sexy|whois.uniregistry.net|is available for registration\r\n.shiksha|whois.nic.shiksha|NOT FOUND\r\n.social|whois.donuts.co|Domain not found\r\n.solar|whois.donuts.co|Domain not found.\r\n.solutions|whois.donuts.co|Domain not found.\r\n.supplies|whois.donuts.co|Domain not found.\r\n.supply|whois.donuts.co|Domain not found.\r\n.support|whois.donuts.co|Domain not found.\r\n.systems|whois.donuts.co|Domain not found.\r\n.tips|whois.donuts.co|Domain not found.\r\n.training|whois.donuts.co|Domain not found\r\n.training|whois.donuts.co|Domain not found.\r\n.uno|whois.uno.nic|Not found\r\n.viajes|whois.donuts.co|Domain not found.\r\n.wiki|whois.donuts.co|Domain not found\r\n.work|whois-dub.mm-registry.com|Not Registered\r\n.zone|whois.donuts.co|Domain not found.\r\n.co.zw|http://zispa.co.zw/cgi-bin/search?domain=|HTTPREQUEST-is available for registration", "yes");
INSERT INTO `wpos_options` VALUES("222", "billingcycle", "annually", "yes");
INSERT INTO `wpos_options` VALUES("223", "decimals", "0", "yes");
INSERT INTO `wpos_options` VALUES("224", "hide_decimal", "No", "yes");
INSERT INTO `wpos_options` VALUES("225", "decimals_tag", "", "yes");
INSERT INTO `wpos_options` VALUES("226", "prefix", "No", "yes");
INSERT INTO `wpos_options` VALUES("227", "suffix", "No", "yes");
INSERT INTO `wpos_options` VALUES("228", "show_duration", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("229", "show_duration_as", "loing", "yes");
INSERT INTO `wpos_options` VALUES("230", "configureable_options", "No", "yes");
INSERT INTO `wpos_options` VALUES("231", "price_tax", "default", "yes");
INSERT INTO `wpos_options` VALUES("232", "price_currency", "0", "yes");
INSERT INTO `wpos_options` VALUES("233", "price_type", "price", "yes");
INSERT INTO `wpos_options` VALUES("234", "convert_monthly", "No", "yes");
INSERT INTO `wpos_options` VALUES("235", "config_option_string", "Starting from", "yes");
INSERT INTO `wpos_options` VALUES("236", "duration_type", "", "yes");
INSERT INTO `wpos_options` VALUES("237", "combo_billingcycles", "", "yes");
INSERT INTO `wpos_options` VALUES("238", "combo_decimals", "0", "yes");
INSERT INTO `wpos_options` VALUES("239", "combo_show_button", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("240", "combo_button_text", "Order Now", "yes");
INSERT INTO `wpos_options` VALUES("241", "combo_show_discount", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("242", "combo_discount_type", "yearly", "yes");
INSERT INTO `wpos_options` VALUES("243", "combo_prefix", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("244", "combo_suffix", "No", "yes");
INSERT INTO `wpos_options` VALUES("245", "decimal_replacement", ".", "yes");
INSERT INTO `wpos_options` VALUES("246", "default_currency_symbol", "prefix", "yes");
INSERT INTO `wpos_options` VALUES("247", "include_fontawesome", "0", "yes");
INSERT INTO `wpos_options` VALUES("248", "show_trailing_zeros", "no", "yes");
INSERT INTO `wpos_options` VALUES("249", "overwrite_whmcs_url", "", "yes");
INSERT INTO `wpos_options` VALUES("250", "whmpress_utf_encode_decode", "", "yes");
INSERT INTO `wpos_options` VALUES("251", "whmpress_use_package_details_from_whmpress", "No", "yes");
INSERT INTO `wpos_options` VALUES("252", "dp_type", "domainregister", "yes");
INSERT INTO `wpos_options` VALUES("253", "dp_decimals", "1", "yes");
INSERT INTO `wpos_options` VALUES("254", "dp_years", "1", "yes");
INSERT INTO `wpos_options` VALUES("255", "dp_hide_decimal", "No", "yes");
INSERT INTO `wpos_options` VALUES("256", "dp_decimals_tag", "", "yes");
INSERT INTO `wpos_options` VALUES("257", "dp_prefix", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("258", "dp_suffix", "No", "yes");
INSERT INTO `wpos_options` VALUES("259", "dp_show_duration", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("260", "dp_price_tax", "default", "yes");
INSERT INTO `wpos_options` VALUES("261", "pm_decimals", "1", "yes");
INSERT INTO `wpos_options` VALUES("262", "pm_show_hidden", "No", "yes");
INSERT INTO `wpos_options` VALUES("263", "pm_replace_zero", "x", "yes");
INSERT INTO `wpos_options` VALUES("264", "pm_replace_empty", "-", "yes");
INSERT INTO `wpos_options` VALUES("265", "pm_hide_search", "No", "yes");
INSERT INTO `wpos_options` VALUES("266", "pm_search_label", "Search:", "yes");
INSERT INTO `wpos_options` VALUES("267", "pm_search_placeholder", "Search", "yes");
INSERT INTO `wpos_options` VALUES("268", "pmd_decimals", "1", "yes");
INSERT INTO `wpos_options` VALUES("269", "pmd_show_renewel", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("270", "pmd_show_transfer", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("271", "pmd_hide_search", "No", "yes");
INSERT INTO `wpos_options` VALUES("272", "pmd_search_label", "Search", "yes");
INSERT INTO `wpos_options` VALUES("273", "pmd_search_placeholder", "Type Extension to search a domain", "yes");
INSERT INTO `wpos_options` VALUES("274", "pmd_show_disabled", "No", "yes");
INSERT INTO `wpos_options` VALUES("275", "pmd_num_of_rows", "", "yes");
INSERT INTO `wpos_options` VALUES("276", "ob_button_text", "Order", "yes");
INSERT INTO `wpos_options` VALUES("277", "ob_billingcycle", "annually", "yes");
INSERT INTO `wpos_options` VALUES("278", "pt_billingcycle", "annually", "yes");
INSERT INTO `wpos_options` VALUES("279", "pt_show_price", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("280", "pt_show_combo", "No", "yes");
INSERT INTO `wpos_options` VALUES("281", "pt_show_button", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("282", "pt_button_text", "Order", "yes");
INSERT INTO `wpos_options` VALUES("283", "ds_show_combo", "No", "yes");
INSERT INTO `wpos_options` VALUES("284", "ds_placeholder", "Search", "yes");
INSERT INTO `wpos_options` VALUES("285", "ds_button_text", "Search", "yes");
INSERT INTO `wpos_options` VALUES("286", "dsa_placeholder", "Search", "yes");
INSERT INTO `wpos_options` VALUES("287", "dsa_button_text", "Search", "yes");
INSERT INTO `wpos_options` VALUES("288", "dsa_whois_link", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("289", "dsa_www_link", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("290", "dsa_transfer_link", "Yes", "yes");
INSERT INTO `wpos_options` VALUES("291", "dsa_disable_domain_spinning", "No", "yes");
INSERT INTO `wpos_options` VALUES("292", "dsa_order_landing_page", "no", "yes");
INSERT INTO `wpos_options` VALUES("293", "dsa_show_price", "1", "yes");
INSERT INTO `wpos_options` VALUES("294", "dsa_show_years", "1", "yes");
INSERT INTO `wpos_options` VALUES("295", "dsa_search_extensions", "1", "yes");
INSERT INTO `wpos_options` VALUES("296", "dsa_enable_transfer_link", "", "yes");
INSERT INTO `wpos_options` VALUES("297", "dsar_whois_link", "", "yes");
INSERT INTO `wpos_options` VALUES("298", "dsar_www_link", "", "yes");
INSERT INTO `wpos_options` VALUES("299", "dsar_show_price", "", "yes");
INSERT INTO `wpos_options` VALUES("300", "dsar_show_years", "", "yes");
INSERT INTO `wpos_options` VALUES("301", "dsb_placeholder", "", "yes");
INSERT INTO `wpos_options` VALUES("302", "dsb_button_text", "Search", "yes");
INSERT INTO `wpos_options` VALUES("303", "dw_placeholder", "", "yes");
INSERT INTO `wpos_options` VALUES("304", "dw_button_text", "Get WhoIs", "yes");
INSERT INTO `wpos_options` VALUES("305", "ol_link_text", "Link Text", "yes");
INSERT INTO `wpos_options` VALUES("306", "dsc_description", "ul", "yes");
INSERT INTO `wpos_options` VALUES("307", "client_area_url", "", "yes");
INSERT INTO `wpos_options` VALUES("308", "announcements_url", "", "yes");
INSERT INTO `wpos_options` VALUES("309", "submit_ticket_url", "", "yes");
INSERT INTO `wpos_options` VALUES("310", "downloads_url", "", "yes");
INSERT INTO `wpos_options` VALUES("311", "support_tickets_url", "", "yes");
INSERT INTO `wpos_options` VALUES("312", "knowledgebase_url", "", "yes");
INSERT INTO `wpos_options` VALUES("313", "affiliates_url", "", "yes");
INSERT INTO `wpos_options` VALUES("314", "order_url", "", "yes");
INSERT INTO `wpos_options` VALUES("315", "pre_sales_contact_url", "", "yes");
INSERT INTO `wpos_options` VALUES("316", "domain_checker_url", "", "yes");
INSERT INTO `wpos_options` VALUES("317", "server_status_url", "", "yes");
INSERT INTO `wpos_options` VALUES("318", "network_issues_url", "", "yes");
INSERT INTO `wpos_options` VALUES("319", "whmcs_login_url", "", "yes");
INSERT INTO `wpos_options` VALUES("320", "whmcs_register_url", "", "yes");
INSERT INTO `wpos_options` VALUES("321", "whmcs_forget_password_url", "", "yes");
INSERT INTO `wpos_options` VALUES("322", "whmp_countries_currencies", "", "yes");
INSERT INTO `wpos_options` VALUES("323", "whmpress_default_currency", "", "yes");
INSERT INTO `wpos_options` VALUES("324", "whmpress_cron_recurrance", "", "yes");
INSERT INTO `wpos_options` VALUES("327", "client_area_page_url", "", "yes");
INSERT INTO `wpos_options` VALUES("328", "remove_whmcs_logo", "no", "yes");
INSERT INTO `wpos_options` VALUES("329", "remove_whmcs_menu", "no", "yes");
INSERT INTO `wpos_options` VALUES("330", "remove_copyright", "", "yes");
INSERT INTO `wpos_options` VALUES("331", "remove_breadcrumb", "no", "yes");
INSERT INTO `wpos_options` VALUES("332", "remove_powered_by", "", "yes");
INSERT INTO `wpos_options` VALUES("333", "whmp_hide_currency_select", "no", "yes");
INSERT INTO `wpos_options` VALUES("334", "whmp_remove_top_bar", "no", "yes");
INSERT INTO `wpos_options` VALUES("335", "whmp_show_admin_notice1", "1", "yes");
INSERT INTO `wpos_options` VALUES("336", "whmpca_custom_css", "", "yes");
INSERT INTO `wpos_options` VALUES("337", "whmp_logout_url", "", "yes");
INSERT INTO `wpos_options` VALUES("338", "whmcs_main_url", "http://support.mlksolutions.org/", "yes");
INSERT INTO `wpos_options` VALUES("339", "whmcs_sso_admin_user", "", "yes");
INSERT INTO `wpos_options` VALUES("340", "whmcs_sso_admin_pass", "", "yes");
INSERT INTO `wpos_options` VALUES("341", "sync_direction", "1", "yes");
INSERT INTO `wpos_options` VALUES("342", "whmcs_both_ways_priority", "whmcs", "yes");
INSERT INTO `wpos_options` VALUES("343", "whmcs_wordpress_role", "shop_manager", "yes");
INSERT INTO `wpos_options` VALUES("344", "whmcs_sso_login_name_type", "email", "yes");
INSERT INTO `wpos_options` VALUES("345", "whmcs_sso_handle_fields", "dummy", "yes");
INSERT INTO `wpos_options` VALUES("346", "whmcs_enable_sync", "", "yes");
INSERT INTO `wpos_options` VALUES("347", "whmcs_enable_sso", "1", "yes");
INSERT INTO `wpos_options` VALUES("348", "whmcs_hide_wp_admin_bar", "1", "yes");
INSERT INTO `wpos_options` VALUES("349", "whmcs_load_sytle_orders", "", "yes");
INSERT INTO `wpos_options` VALUES("350", "whmcs_create_wp_fields", "0", "yes");
INSERT INTO `wpos_options` VALUES("351", "whmp_use_permalinks", "no", "yes");
INSERT INTO `wpos_options` VALUES("352", "curl_timeout_whmp", "", "yes");
INSERT INTO `wpos_options` VALUES("353", "whmp_follow_lang", "yes", "yes");
INSERT INTO `wpos_options` VALUES("354", "whmp_wp_lang", "", "yes");
INSERT INTO `wpos_options` VALUES("355", "cache_enabled_whmp", "no", "yes");
INSERT INTO `wpos_options` VALUES("356", "jquery_source", "wordpress", "yes");
INSERT INTO `wpos_options` VALUES("357", "use_whmcs_css_files", "yes", "yes");
INSERT INTO `wpos_options` VALUES("358", "load_dropdown", "no", "yes");
INSERT INTO `wpos_options` VALUES("359", "exclude_js_files", "", "yes");
INSERT INTO `wpos_options` VALUES("360", "whmp_config_data", "", "yes");
INSERT INTO `wpos_options` VALUES("361", "whmp_seo_enable_urls", "", "yes");
INSERT INTO `wpos_options` VALUES("362", "whmp_langs", "a:1:{s:5:\"pt_PT\";s:0:\"\";}", "yes");
INSERT INTO `wpos_options` VALUES("363", "whmp_seo_announcements", "Announcements", "yes");
INSERT INTO `wpos_options` VALUES("364", "whmp_seo_knowledgebase", "Knowledgebase", "yes");
INSERT INTO `wpos_options` VALUES("365", "whmp_seo_serverstatus", "Server Status", "yes");
INSERT INTO `wpos_options` VALUES("366", "whmp_seo_contact", "Contact", "yes");
INSERT INTO `wpos_options` VALUES("367", "whmp_seo_domainchecker", "Domain Checker", "yes");
INSERT INTO `wpos_options` VALUES("368", "whmp_seo_cart", "Cart", "yes");
INSERT INTO `wpos_options` VALUES("369", "whmp_seo_submitticket", "Submit Ticket", "yes");
INSERT INTO `wpos_options` VALUES("370", "whmp_seo_clientarea", "Client Area", "yes");
INSERT INTO `wpos_options` VALUES("371", "whmp_seo_register", "Register", "yes");
INSERT INTO `wpos_options` VALUES("372", "whmp_seo_pwreset", "Lost Password Reset", "yes");
INSERT INTO `wpos_options` VALUES("405", "theme_mods_multihost", "a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";s:2:\"35\";s:7:\"onepage\";s:2:\"36\";}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1491006198;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:16:\"standard-sidebar\";a:0:{}s:18:\"orphaned_widgets_1\";a:4:{i:0;s:12:\"categories-4\";i:1;s:10:\"archives-4\";i:2;s:11:\"tag_cloud-3\";i:3;s:10:\"calendar-3\";}s:18:\"orphaned_widgets_2\";a:0:{}s:18:\"orphaned_widgets_3\";a:0:{}s:18:\"orphaned_widgets_4\";a:0:{}s:18:\"orphaned_widgets_5\";a:0:{}s:18:\"orphaned_widgets_6\";a:1:{i:0;s:7:\"pages-3\";}}}}", "yes");
INSERT INTO `wpos_options` VALUES("406", "widget_my_twitter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("407", "widget_my_mailchimp", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("408", "widget_my_flickr", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("409", "widget_my_recent_posts", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("410", "widget_my_gallery_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpos_options` VALUES("667", "wpseo_sitemap_cache_validator_global", "4W7j6", "no");
INSERT INTO `wpos_options` VALUES("1465", "wpseo_sitemap_179_cache_validator", "3PeCV", "no");
INSERT INTO `wpos_options` VALUES("1466", "wpseo_sitemap_181_cache_validator", "3PeCW", "no");
INSERT INTO `wpos_options` VALUES("1467", "wpseo_sitemap_183_cache_validator", "3PeCX", "no");
INSERT INTO `wpos_options` VALUES("1468", "wpseo_sitemap_185_cache_validator", "3PeCY", "no");
INSERT INTO `wpos_options` VALUES("1469", "wpseo_sitemap_1411_cache_validator", "3PeCZ", "no");
INSERT INTO `wpos_options` VALUES("672", "wpseo_sitemap_pricing-tables-category_cache_validator", "3PnAE", "no");
INSERT INTO `wpos_options` VALUES("677", "wpseo_sitemap_our-team-category_cache_validator", "4Whb8", "no");
INSERT INTO `wpos_options` VALUES("1965", "_transient_timeout_yst_sm_our-team-category_1:4W7j6_4Whb8", "1495524694", "no");
INSERT INTO `wpos_options` VALUES("1966", "_transient_yst_sm_our-team-category_1:4W7j6_4Whb8", "C:24:\"WPSEO_Sitemap_Cache_Data\":739:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:692:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/our-team-category/company/</loc>\n		<lastmod>2015-08-13T08:15:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team-category/our-team/</loc>\n		<lastmod>2015-07-05T10:25:27+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-team-category/our-team-2/</loc>\n		<lastmod>2015-08-17T09:10:19+00:00</lastmod>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("680", "wpseo_sitemap_our-works_cache_validator", "4WJyM", "no");
INSERT INTO `wpos_options` VALUES("1931", "_transient_timeout_yst_sm_our-works_1:4W7j6_4WJyM", "1495446359", "no");
INSERT INTO `wpos_options` VALUES("1932", "_transient_yst_sm_our-works_1:4W7j6_4WJyM", "C:24:\"WPSEO_Sitemap_Cache_Data\":3411:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:3363:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/our-works/hard-drives-and-storage/</loc>\n		<lastmod>2015-07-01T15:25:52+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img8.jpg</image:loc>\n			<image:title><![CDATA[works-img8]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/latin-words-fine/</loc>\n		<lastmod>2015-07-03T03:50:21+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img6.jpg</image:loc>\n			<image:title><![CDATA[works-img6]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/rubic-design-interactive/</loc>\n		<lastmod>2015-07-04T13:35:09+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img9.jpg</image:loc>\n			<image:title><![CDATA[works-img9]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/alteration-in-some/</loc>\n		<lastmod>2015-07-04T13:37:54+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/portfolio-img511.jpg</image:loc>\n			<image:title><![CDATA[portfolio-img511]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/creative-man/</loc>\n		<lastmod>2015-07-05T05:45:29+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img1.jpg</image:loc>\n			<image:title><![CDATA[works-img1]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/business-cards/</loc>\n		<lastmod>2015-07-05T05:46:59+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img2.jpg</image:loc>\n			<image:title><![CDATA[works-img2]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/business-conference-table/</loc>\n		<lastmod>2015-07-05T05:48:06+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/portfolio-img411.jpg</image:loc>\n			<image:title><![CDATA[portfolio-img411]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/our-works/coffee-shop/</loc>\n		<lastmod>2015-07-05T05:49:02+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/portfolio-img111.jpg</image:loc>\n			<image:title><![CDATA[portfolio-img111]]></image:title>\n		</image:image>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img6.jpg</image:loc>\n			<image:caption><![CDATA[works-img6]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img9.jpg</image:loc>\n			<image:caption><![CDATA[works-img9]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/works-img1.jpg</image:loc>\n			<image:caption><![CDATA[works-img1]]></image:caption>\n		</image:image>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("1953", "_transient_timeout_yst_sm_testimonials_1:4W7j6_4Z3Ah", "1495501078", "no");
INSERT INTO `wpos_options` VALUES("1954", "_transient_yst_sm_testimonials_1:4W7j6_4Z3Ah", "C:24:\"WPSEO_Sitemap_Cache_Data\":2043:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:1995:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/testimonials/starska-translations/</loc>\n		<lastmod>2017-04-04T14:16:03+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/starsta_logo.jpg</image:loc>\n			<image:title><![CDATA[starsta_logo]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/testimonials/dupladesign/</loc>\n		<lastmod>2017-04-04T14:16:23+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/11951932_897977606949154_5310957690001016210_n.png</image:loc>\n			<image:title><![CDATA[11951932_897977606949154_5310957690001016210_n]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/testimonials/a-pateira/</loc>\n		<lastmod>2017-04-04T14:16:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/testimonials/luis-faustino/</loc>\n		<lastmod>2017-04-04T14:16:51+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2017/04/17311781_1655660054740407_532168808_o.jpg</image:loc>\n			<image:title><![CDATA[17311781_1655660054740407_532168808_o]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/testimonials/coresqb/</loc>\n		<lastmod>2017-04-04T14:17:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/testimonials/privatedrivers/</loc>\n		<lastmod>2017-04-04T14:17:09+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2015/07/15590197_1820150014890376_406898579234556122_n-1.jpg</image:loc>\n			<image:title><![CDATA[15590197_1820150014890376_406898579234556122_n (1)]]></image:title>\n		</image:image>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("566", "revslider-connection", "1", "yes");
INSERT INTO `wpos_options` VALUES("567", "revslider-latest-version", "5.4.5", "yes");
INSERT INTO `wpos_options` VALUES("568", "revslider-stable-version", "4.2", "yes");
INSERT INTO `wpos_options` VALUES("569", "revslider-notices", "a:7:{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:{}}i:3;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.2.9\";s:4:\"text\";s:249:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=530b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner_large_5.3.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.3.0 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS530-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:4;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.3.9\";s:4:\"text\";s:232:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=54b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_54.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS540-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:5;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.4.1\";s:4:\"text\";s:249:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=542b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner_large_542.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4.2 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS540-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:6;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.4.4\";s:4:\"text\";s:236:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=545b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_545.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS545-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}", "yes");
INSERT INTO `wpos_options` VALUES("810", "_transient_timeout_settings_errors", "1491391580", "no");
INSERT INTO `wpos_options` VALUES("811", "_transient_settings_errors", "a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:22:\"Definições guardadas\";s:4:\"type\";s:7:\"updated\";}}", "no");
INSERT INTO `wpos_options` VALUES("438", "nav_menu_options", "a:1:{s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wpos_options` VALUES("491", "rs_cache_overlay", "5.3.1.5", "yes");
INSERT INTO `wpos_options` VALUES("1464", "wpseo_sitemap_177_cache_validator", "3PeCU", "no");
INSERT INTO `wpos_options` VALUES("571", "revslider-addons", "O:8:\"stdClass\":17:{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:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:70:\"http://updates.themepunch.tools/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";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.2\";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:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"1.0.2\";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.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"1.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"1.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"1.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:19:\"revslider-404-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:21:\"revslider-login-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:7:\"5.4.3.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}}", "yes");
INSERT INTO `wpos_options` VALUES("647", "wpseo", "a:23:{s:14:\"blocking_files\";a:0:{}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:3:\"4.5\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:20:\"enable_setting_pages\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1491316438;}", "yes");
INSERT INTO `wpos_options` VALUES("648", "wpseo_permalinks", "a:9:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}", "yes");
INSERT INTO `wpos_options` VALUES("649", "wpseo_titles", "a:126:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:60:\"Pesquisou por %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:44:\"Página não encontrada %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:14:\"title-our-team\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-our-team\";s:0:\"\";s:16:\"metakey-our-team\";s:0:\"\";s:16:\"noindex-our-team\";b:0;s:17:\"showdate-our-team\";b:0;s:20:\"hideeditbox-our-team\";b:0;s:15:\"title-our-works\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-our-works\";s:0:\"\";s:17:\"metakey-our-works\";s:0:\"\";s:17:\"noindex-our-works\";b:0;s:18:\"showdate-our-works\";b:0;s:21:\"hideeditbox-our-works\";b:0;s:18:\"title-testimonials\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-testimonials\";s:0:\"\";s:20:\"metakey-testimonials\";s:0:\"\";s:20:\"noindex-testimonials\";b:0;s:21:\"showdate-testimonials\";b:0;s:24:\"hideeditbox-testimonials\";b:0;s:9:\"title-faq\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:12:\"metadesc-faq\";s:0:\"\";s:11:\"metakey-faq\";s:0:\"\";s:11:\"noindex-faq\";b:0;s:12:\"showdate-faq\";b:0;s:15:\"hideeditbox-faq\";b:0;s:20:\"title-pricing-tables\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-pricing-tables\";s:0:\"\";s:22:\"metakey-pricing-tables\";s:0:\"\";s:22:\"noindex-pricing-tables\";b:0;s:23:\"showdate-pricing-tables\";b:0;s:26:\"hideeditbox-pricing-tables\";b:0;s:16:\"title-subcribers\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-subcribers\";s:0:\"\";s:18:\"metakey-subcribers\";s:0:\"\";s:18:\"noindex-subcribers\";b:0;s:19:\"showdate-subcribers\";b:0;s:22:\"hideeditbox-subcribers\";b:0;s:15:\"title-mega_menu\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-mega_menu\";s:0:\"\";s:17:\"metakey-mega_menu\";s:0:\"\";s:17:\"noindex-mega_menu\";b:0;s:18:\"showdate-mega_menu\";b:0;s:21:\"hideeditbox-mega_menu\";b:0;s:18:\"title-tax-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:27:\"title-tax-our-team-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-our-team-category\";s:0:\"\";s:29:\"metakey-tax-our-team-category\";s:0:\"\";s:33:\"hideeditbox-tax-our-team-category\";b:0;s:29:\"noindex-tax-our-team-category\";b:0;s:28:\"title-tax-our-works-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-our-works-category\";s:0:\"\";s:30:\"metakey-tax-our-works-category\";s:0:\"\";s:34:\"hideeditbox-tax-our-works-category\";b:0;s:30:\"noindex-tax-our-works-category\";b:0;s:31:\"title-tax-testimonials-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:34:\"metadesc-tax-testimonials-category\";s:0:\"\";s:33:\"metakey-tax-testimonials-category\";s:0:\"\";s:37:\"hideeditbox-tax-testimonials-category\";b:0;s:33:\"noindex-tax-testimonials-category\";b:0;s:22:\"title-tax-faq-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-faq-category\";s:0:\"\";s:24:\"metakey-tax-faq-category\";s:0:\"\";s:28:\"hideeditbox-tax-faq-category\";b:0;s:24:\"noindex-tax-faq-category\";b:0;s:33:\"title-tax-pricing-tables-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:36:\"metadesc-tax-pricing-tables-category\";s:0:\"\";s:35:\"metakey-tax-pricing-tables-category\";s:0:\"\";s:39:\"hideeditbox-tax-pricing-tables-category\";b:0;s:35:\"noindex-tax-pricing-tables-category\";b:0;s:29:\"title-tax-subcribers-category\";s:55:\"Arquivo de %%term_title%% %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-tax-subcribers-category\";s:0:\"\";s:31:\"metakey-tax-subcribers-category\";s:0:\"\";s:35:\"hideeditbox-tax-subcribers-category\";b:0;s:31:\"noindex-tax-subcribers-category\";b:0;}", "yes");
INSERT INTO `wpos_options` VALUES("650", "wpseo_social", "a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"4abdfefbbea5346ac6e927d3b3a28da7\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}", "yes");
INSERT INTO `wpos_options` VALUES("651", "wpseo_rss", "a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}", "yes");
INSERT INTO `wpos_options` VALUES("652", "wpseo_internallinks", "a:22:{s:20:\"breadcrumbs-404crumb\";s:33:\"Erro 404: Página não encontrada\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:10:\"Arquivo de\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:7:\"Início\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:13:\"Pesquisou por\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;s:27:\"post_types-our-team-maintax\";i:0;s:28:\"post_types-our-works-maintax\";i:0;s:31:\"post_types-testimonials-maintax\";i:0;s:22:\"post_types-faq-maintax\";i:0;s:33:\"post_types-pricing-tables-maintax\";i:0;s:29:\"post_types-subcribers-maintax\";i:0;s:35:\"taxonomy-our-team-category-ptparent\";i:0;s:36:\"taxonomy-our-works-category-ptparent\";i:0;s:39:\"taxonomy-testimonials-category-ptparent\";i:0;s:30:\"taxonomy-faq-category-ptparent\";i:0;s:41:\"taxonomy-pricing-tables-category-ptparent\";i:0;s:37:\"taxonomy-subcribers-category-ptparent\";i:0;}", "yes");
INSERT INTO `wpos_options` VALUES("653", "wpseo_xml", "a:31:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:33:\"user_role-customer-not_in_sitemap\";b:0;s:37:\"user_role-shop_manager-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"post_types-our-team-not_in_sitemap\";b:0;s:35:\"post_types-our-works-not_in_sitemap\";b:0;s:38:\"post_types-testimonials-not_in_sitemap\";b:0;s:29:\"post_types-faq-not_in_sitemap\";b:0;s:40:\"post_types-pricing-tables-not_in_sitemap\";b:0;s:36:\"post_types-subcribers-not_in_sitemap\";b:0;s:35:\"post_types-mega_menu-not_in_sitemap\";b:0;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;s:43:\"taxonomies-our-team-category-not_in_sitemap\";b:0;s:44:\"taxonomies-our-works-category-not_in_sitemap\";b:0;s:47:\"taxonomies-testimonials-category-not_in_sitemap\";b:0;s:38:\"taxonomies-faq-category-not_in_sitemap\";b:0;s:49:\"taxonomies-pricing-tables-category-not_in_sitemap\";b:0;s:45:\"taxonomies-subcribers-category-not_in_sitemap\";b:0;}", "yes");
INSERT INTO `wpos_options` VALUES("654", "wpseo_flush_rewrite", "1", "yes");
INSERT INTO `wpos_options` VALUES("725", "widget_pum-status-cloud", "a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}", "yes");
INSERT INTO `wpos_options` VALUES("726", "postfield-legend", "Post Content", "yes");
INSERT INTO `wpos_options` VALUES("656", "wpseo_sitemap_1_cache_validator", "53qQ8", "no");
INSERT INTO `wpos_options` VALUES("657", "wpseo_sitemap_category_cache_validator", "3PeCT", "no");
INSERT INTO `wpos_options` VALUES("658", "wpseo_sitemap_post_cache_validator", "53qQa", "no");
INSERT INTO `wpos_options` VALUES("659", "wpseo_sitemap_9882_cache_validator", "4TU4X", "no");
INSERT INTO `wpos_options` VALUES("699", "wpseo_sitemap_testimonials-category_cache_validator", "3PnAG", "no");
INSERT INTO `wpos_options` VALUES("1538", "wpseo_sitemap_1561_cache_validator", "3PnAH", "no");
INSERT INTO `wpos_options` VALUES("1539", "wpseo_sitemap_1557_cache_validator", "3PnAI", "no");
INSERT INTO `wpos_options` VALUES("1540", "wpseo_sitemap_95_cache_validator", "3PnAJ", "no");
INSERT INTO `wpos_options` VALUES("1541", "wpseo_sitemap_94_cache_validator", "3PnAK", "no");
INSERT INTO `wpos_options` VALUES("1542", "wpseo_sitemap_93_cache_validator", "3PnAL", "no");
INSERT INTO `wpos_options` VALUES("1543", "wpseo_sitemap_92_cache_validator", "3PnAM", "no");
INSERT INTO `wpos_options` VALUES("1544", "wpseo_sitemap_91_cache_validator", "3PnAN", "no");
INSERT INTO `wpos_options` VALUES("1955", "_transient_timeout_yst_sm_pricing-tables-category_1:4W7j6_3PnAE", "1495504090", "no");
INSERT INTO `wpos_options` VALUES("1956", "_transient_yst_sm_pricing-tables-category_1:4W7j6_3PnAE", "C:24:\"WPSEO_Sitemap_Cache_Data\":777:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:730:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables-category/hosting-group-1/</loc>\n		<lastmod>2017-04-05T20:12:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables-category/hosting-group-2/</loc>\n		<lastmod>2017-04-25T10:25:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables-category/hosting-group-3/</loc>\n		<lastmod>2015-08-20T07:30:07+00:00</lastmod>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("1463", "wpseo_sitemap_169_cache_validator", "3PeCS", "no");
INSERT INTO `wpos_options` VALUES("1536", "wpseo_sitemap_127_cache_validator", "3PnAD", "no");
INSERT INTO `wpos_options` VALUES("1987", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1495510339", "no");
INSERT INTO `wpos_options` VALUES("1988", "_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Boarding Wrong Flight\";s:7:\"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=47325\";s:7:\"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:44:\"https://ma.tt/2017/05/boarding-wrong-flight/\";s: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:567:\"<p>The Economist writes <a href=\"http://www.economist.com/blogs/gulliver/2017/05/where-am-i?fsrc=gnews\">about who&#8217;s wrong when flyers end up in the wrong cities</a>. This has actually happened to me! Probably 7-8 years ago, it was an Air Canada flight from New York to Montreal, and I accidentally boarded the one to Toronto. The mistake was realized when we were on the ground, but had pulled away from gate. Being Canadian, they were exceedingly nice and asked me to stay on the flight but they&#8217;d find me one from Toronto to Montreal after I landed.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 21 May 2017 22:45:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: IBM Goes Non-Remote\";s:7:\"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=47342\";s:7:\"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/2017/05/ibm-goes-non-remote/\";s: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:1784:\"<p>Like Yahoo a few years ago, <a href=\"https://www.wsj.com/articles/ibm-a-pioneer-of-remote-work-calls-workers-back-to-the-office-1495108802\">IBM, an early pioneer of distributed work, is calling workers back to the office</a>.</p>\n<blockquote><p>The shift is particularly surprising since the Armonk, N.Y., company has been among the business world’s staunchest boosters of remote work, both for itself and its customers. IBM markets software and services for what it calls “the anytime, anywhere workforce,” and its researchers have published numerous studies on the merits of remote work.</p></blockquote>\n<p>If &#8220;IBM has boasted that more than 40% of employees worked outside traditional company offices&#8221; and they currently have 380,000 employees (wow), then that&#8217;s 152k people on the market.</p>\n<p>As I said when Yahoo did the same, it&#8217;s hard to judge this from the outside. A company that was happy about how they&#8217;re doing wouldn&#8217;t make a shift this big or this suddenly. It&#8217;s very possible the way distributed folks were interacting with their in-office teams wasn&#8217;t satisfactory, especially if they were forced to use subpar in-house tools like SameTime instead of Zoom or Skype. Yahoo didn&#8217;t have the best trajectory after they made a similar move, and hopefully IBM isn&#8217;t going to follow the same path.</p>\n<p>In the meantime, Automattic and <a href=\"https://zapier.com/blog/companies-hiring-remote-workers/\">many other companies</a> are hiring. If you aren&#8217;t going to work in a company&#8217;s headquarters, it is probably safest to work at a company that is fully distributed (no second tier for people not at HQ) rather than be one of a few &#8220;remote&#8221; people at a centralized company.</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:\"Sat, 20 May 2017 19:21:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Post Status: WordPress in higher education, with Rachel Cherry — Draft Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=37073\";s:7:\"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:\"https://poststatus.com/wordpress-higher-education-rachel-cherry-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:2467:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard.</p>\n<p>Brian is joined by guest-host Rachel Cherry &#8212; a Senior Software Engineer at Disney, and the organizer of WP Campus, an event for WordPress in higher education. They discuss many of the things that folks working with WordPress in higher education encounter during this episode.</p>\n<p>Prior to working for Disney, Rachel spent around a decade working on the web in higher ed, most recently at the University of Alabama.</p>\n<p><!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/70150.mp3\">https://audio.simplecast.com/70150.mp3</a><br />\n<a href=\"https://audio.simplecast.com/70150.mp3\"> Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://bamadesigner.com/\">Rachel&#8217;s website</a></li>\n<li><a href=\"https://wpcampus.org/\">WP Campus</a>, which will be held on July 13-14 in Buffalo, New York.</li>\n<li><a href=\"https://theeventscalendar.com/\">The Events Calendar</a>, by Modern Tribe</li>\n<li><a href=\"http://eng.ua.edu/\">University of Alabama Engineering</a></li>\n<li><a href=\"https://github.com/washingtonstateuniversity\">Washington State University Github</a></li>\n</ul>\n<h3>Sponsor: SiteGround</h3>\n<p><a href=\"https://www.siteground.com/wordpress-hosting.htm/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround</a> is engineered for speed, built for security, and crafted for WordPress. They offer feature-rich managed WordPress hosting with premium support, and are officially recommended by WordPress.org. Check out <a href=\"https://siteground.com/poststatus/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround&#8217;s website</a> for a special deal for Post Status listeners, and thanks to SiteGround for being a Post Status partner.</p>\n<p><em>Photo by <a href=\"http://found-art-photography.com/\">Found Art Photography</a></em></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:\"Sat, 20 May 2017 16:09:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Avada Theme Version 5.1.5 Patches Stored XSS and CSRF Vulnerabilities\";s:7:\"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:29:\"https://wptavern.com/?p=70466\";s:7:\"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:90:\"https://wptavern.com/avada-theme-version-5-1-5-patches-stored-xss-and-csrf-vulnerabilities\";s: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:2938:\"<p>Theme Fusion&#8217;s <a href=\"https://avada.theme-fusion.com/\" target=\"_blank\">Avada WordPress Theme</a>, the highest selling theme on Themeforest for the past four years, has fixed stored XSS and CSRF vulnerabilities in its 5.1.5 release. The security issues were <a href=\"http://wphutte.com/avada-5-1-4-stored-xss-and-csrf/\" target=\"_blank\">discovered by WP Hütte</a>, a WordPress security blog, and the site published details of the vunlnerabilities after Theme Fusion patched its theme.</p>\n<p>Although the patched version has been available since early April, a <a href=\"http://wewatchyourwebsite.com/avada-wordpress-theme-please-update-immediately/\" target=\"_blank\">notification</a> was only recently sent out to Avada customers from Envato via email, urging them to update. Avada announced the release of 5.1.5 but did not publish anything publicly on the security issues that it fixes. Customers started learning about the vulnerabilities from the <a href=\"https://wpvulndb.com/vulnerabilities/8801\" target=\"_blank\">WPScan Vulnerability Database</a>, WP Hütte, and posts on Twitter.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Avada 5.1.5 is out and is compatible with the new WooCommerce 3.0!</p>\n<p>&mdash; ThemeFusion (@Theme_Fusion) <a href=\"https://twitter.com/Theme_Fusion/status/849311534916521984\">April 4, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I love it, when I only discover information about security fixes by accident. <a href=\"https://twitter.com/hashtag/Avada?src=hash\">#Avada</a> <a href=\"https://t.co/DPZFiuEVzO\">https://t.co/DPZFiuEVzO</a></p>\n<p>&mdash; Jan-Peter Lambeck (@jplambeck) <a href=\"https://twitter.com/jplambeck/status/865276828453359616\">May 18, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/Theme_Fusion\">@Theme_Fusion</a> any public release on the <a href=\"https://twitter.com/hashtag/avada?src=hash\">#avada</a> security issues?</p>\n<p>&mdash; Val Vesa (@adspedia) <a href=\"https://twitter.com/adspedia/status/865299944613261313\">May 18, 2017</a></p></blockquote>\n<p></p>\n<p>Theme Fusion left the security issues buried in the <a href=\"http://theme-fusion.com/avada-documentation/changelog.txt\" target=\"_blank\">changelog</a> until today when customers began receiving email notices about it. A fix was available for more than a month while customers who were unaware and had not updated were left vulnerable. Envato&#8217;s email encourages all users to update, as the release is for all previous versions of Avada.</p>\n<p>If you have purchased Avada for clients or for yourself, you can update to the latest version by downloading it from your Envato Market account and reinstalling it. Customers with the Envato Market WordPress plugin installed can access automatic updates within the WordPress admin.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 May 2017 01:20:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: Quick Tip: How to Access Jetpack’s Alternative Module Interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=70462\";s:7:\"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:\"https://wptavern.com/quick-tip-how-to-access-jetpacks-alternative-module-interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1621:\"<p>Late last year, Jetpack 4.3 unveiled a <a href=\"https://wptavern.com/jetpack-4-3-released-features-new-react-js-powered-admin-interface\">new admin interface</a> written in React.js. The Jetpack team received feedback from more than 8K users before it was publicly released.</p>\n<p>While the old interface displayed all modules on one page, the new interface breaks up module management into sections. You can also access some modules by typing its name into the search bar.</p>\n<img />Modules are Displayed in Sections\n<p>A few days ago, I ran into a situation where I needed to find out if the Tiled and Carousel modules were enabled. I tried to locate the modules on the settings page but experienced difficulty as it&#8217;s filled with toggles and sub-menus. It&#8217;s not clear which module or modules are activated when a menu item is turned on.</p>\n<img />Jetpack Module Search Results\n<p>If you prefer to use the old interface for managing modules, add <strong>wp-admin/admin.php?page=jetpack_modules</strong> to the URL. You can also access the old interface through Jetpack&#8217;s Debug page.</p>\n<img />Jetpack&#8217;s Alternative Module Interface\n<p>I prefer this interface over the new one as I know which modules are on or off. Modules are also easier to find as they&#8217;re listed in alphabetical order. Ben Gillbanks <a href=\"https://www.binarymoon.co.uk/2017/01/wordpress-jetpack-admin-backup-problems/\">originally shared the tip</a> after discovering it solved his issues with changing Jetpack&#8217;s settings.</p>\n<p>Which interface do you prefer?</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 May 2017 23:26:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: WordCamp Europe Attendees Are Being Denied Visas Because Conference Ticket Price Is Too Low\";s:7:\"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:29:\"https://wptavern.com/?p=70446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/wordcamp-europe-attendees-are-being-denied-visas-because-conference-ticket-price-is-too-low\";s: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:7476:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/wordcamp-europe-2017.png?ssl=1\"><img /></a></p>\n<p>This morning, WordCamp Europe 2017 organizers published an <a href=\"https://2017.europe.wordcamp.org/2017/05/19/a-letter-from-wordpress-community-to-emmanuel-macron-the-president-of-france/#en\" target=\"_blank\">open letter to Emmanuel Macron</a>, the president of France, regarding attendees being denied visas for the event. According to the rejections attendees have received, France is denying the visas because the ticket price for the conference is too low:</p>\n<blockquote><p>It has come to our attention that our friends from some countries are having problems with their Visas being rejected on the ground that “a 40€ entry fee cannot justify international travel”, something that makes this conference accessible to all. We are sad this is happening because now — for the first time in WordCamp Europe history — our inclusiveness is a burden we are carrying.</p></blockquote>\n<p>The open letter explains the WordCamp tradition of keeping ticket prices low to make it more inclusive for all income levels.</p>\n<p>WCEU Communications Lead Emanuel Blagonic estimates that five people from India that have already been denied visas but said more attendees and contributors will be taking their interviews in the coming days.</p>\n<p>&#8220;We didn&#8217;t write it to get an official response, as it is an open letter, but we hope to send the message about the importance of being inclusive and accessible – what WordCamps are, mainly because of the small ticket price,&#8221; Blagonic said. &#8220;We hope this letter will help officials understand that.&#8221;</p>\n<p>Despite the innocuous nature of WordCamps, obtaining visas to attend these events is a perennial struggle for attendees coming from nations that have strained relations, security concerns, or other issues with the host country. Petya Raykovska, who helped organize last year&#8217;s WordCamp Europe in Vienna, said that Pakistan was the country from which the most people were declined visas. This year she has already seen several members of the Polyglots contributor team denied visas for the community summit.</p>\n<p>&#8220;Both the WCEU and WCUS teams go above and beyond to help people get to the camp,&#8221; Raykovska said. &#8220;The WCEU team has been doing that for years, writing invitation letters in formats required by the embassies for each of the different countries.&#8221;</p>\n<p>Unfortunately, the letters don&#8217;t always make enough of an impact. <a href=\"https://profiles.wordpress.org/chiragpatel/\" target=\"_blank\">Chirag Patel</a>, a core contributor and editor of the Gujarati translation, was denied a visa coming from India. He expressed disappointment and said he hates the visa process.</p>\n<p>&#8220;I am a volunteer and was selected for the WCEU Summit as well but I am not able to get a visa,&#8221; Patel said. &#8220;It is so frustrating.&#8221;</p>\n<p>Patel is re-applying with a new invitation letter and WordCamp contact details, but cannot make his travel arrangements until he is approved. This has resulted in a significantly higher cost for the trip. Patel said if it were not for his company supporting him, he would not be able to afford the increase in cost.</p>\n<p><a href=\"https://www.rarst.net/\" target=\"_blank\">Andrey Savchenko</a>, a WordPress contributor living in Ukraine, is no stranger to visa denial but is fortunate to have a five year visa to the <a href=\"http://ec.europa.eu/home-affairs/what-we-do/policies/borders-and-visas/schengen_en\" target=\"_blank\">Shengen area</a> to attend WCEU this year. When attending WCEU in Seville in 2015, his invitation from the organizers was lost twice in the mail and he received a visa a mere five days before the event.</p>\n<p>&#8220;That added around $400 to the cost of my flights,&#8221; Savchenko said. &#8220;Also, due to the short term visa, I could not even fly home from Seville. I had to take the train to Madrid and fly from there, to be out of country before my visa expired the day after the WordCamp.&#8221;</p>\n<p>Savchenko was denied a visa to the U.S. for the first community summit in 2012. He described the interview in a post titled &#8220;<a href=\"https://www.rarst.net/thoughts/world-with-borders/\" target=\"_blank\">The world with borders</a>:&#8221;</p>\n<blockquote><p>My thin folder stays closed through all of it. My home, the one location in the world I care deeply about, is nothing. My savings, which fuel slim hope I will be able to live in a way different from paycheck-to-paycheck one day, are of no interest &#8211; all are disposable and meaningless on their scale against the chance of me “escaping” to their country.</p>\n<p>I get back my passport and a boilerplate response letter from thick pile of printouts. It thoroughly explains that I failed to display considerable attachments and am thus guilty of trying to sneak into and stay in United States illegally by default. I feel curiously powerless &#8211; no loopholes to find, no leverage to apply, no help to call for, no proof that matters.</p>\n<p>They spend ten minutes of their time (split about evenly between security, taking my fingerprints and interview itself) for which they charge $170. The following evening I spend much longer on Twitter, telling many people I won’t meet them and accepting their bitter disappointment.</p></blockquote>\n<p>Lead organizer Paolo Belcastro said the team has received approximately 60 requests for invitation letters, which accounts for roughly 2% of expected attendees. Although there have been only a handful of visa denials so far, many have yet to interview. Belcastro said the team penned the letter based on the feedback of a few while they still have a chance to help them.</p>\n<p>&#8220;I think the worst about [the interview process] is how helpless it makes you feel,&#8221; Savchenko said. &#8220;Someone gets to make a judgement about you as a person and you get to pay to be called untrustworthy and unwelcome.&#8221;</p>\n<p>For WordCamp attendees who have never had to jump through the hoops of a visa application, it&#8217;s important to remember that events held in major U.S. or European cities will always be missing the faces of valuable contributors who were unable to obtain a visa. Situations like these underscore the reality that virtual, online events, while lacking in much of the excitement and interpersonal connection, are by far the most inclusive way to gather and pass on information.</p>\n<p>WCEU organizers said they hope the President of France can help &#8220;unblock the situation&#8221; for the remaining attendees who are still going through the visa application process. Belcastro said the chances of the open letter being read by anyone with the power of changing anything are small, especially since the French government went through a major change last week.</p>\n<p>&#8220;It&#8217;s important to note that we have no wish to ask for any special treatment,&#8221; Belcastro said. &#8220;It&#8217;s not about asking for automatic approval of visas for our attendees, as there are many other criteria involved that we totally respect.</p>\n<p>&#8220;Our wish is to underline that the value of a conference can&#8217;t be measured by the price of its entry ticket &#8211; the same way the value of WordPress can&#8217;t be measured by its price tag.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 May 2017 20:06:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Candy Diet\";s:7:\"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=47331\";s:7:\"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:33:\"https://ma.tt/2017/05/candy-diet/\";s: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:713:\"<blockquote><p>The bestselling novel of 1961 was Allen Drury&#8217;s <em>Advise and Consent</em>. Millions of people read this 690-page political novel. In 2016, the big sellers were coloring books.</p>\n<p>Fifteen years ago, cable channels like TLC (the &#8220;L&#8221; stood for Learning), Bravo and the History Channel (the &#8220;History&#8221; stood for History) promised to add texture and information to the blighted TV landscape. Now these networks run shows about marrying people based on how well they kiss.</p></blockquote>\n<p>It&#8217;s from a few months ago, but <a href=\"http://sethgodin.typepad.com/seths_blog/2017/01/the-candy-diet.html\">Seth Godin is really on fire in The Candy Diet</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:\"Fri, 19 May 2017 18:06:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: WordPress.com’s TV Commercials Are Confusing\";s:7:\"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:29:\"https://wptavern.com/?p=70288\";s:7:\"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://wptavern.com/wordpress-coms-tv-commercials-are-confusing\";s: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:6029:\"<p>In Matt Mullenweg&#8217;s 2016 <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">State of the Word</a>, <a href=\"https://videopress.com/v/IYfHX4jN?at=1650\">he announced</a> the <a href=\"https://wptavern.com/matt-mullenweg-proposes-wordpress-growth-council\">WordPress Growth Council</a>. The council was created as a think-tank for individuals and organizations in the WordPress community to share ideas on how best to tell WordPress&#8217; story to grow market share.</p>\n<p>The Growth Council serves as a collaborative means to combat the more than $300M in advertising spent by competitors like Squarespace and Wix. In the presentation, Mullenweg stated that marketing WordPress would become a higher priority compared to previous years.</p>\n<h2>WordPress.com&#8217;s First TV Ads</h2>\n<p>Automattic has unveiled <a href=\"https://www.youtube.com/watch?v=WwRn5wq8AJk\">five commercials</a> that are being tested in six different television markets. The videos were created <a href=\"https://design.blog/2017/05/18/how-a-detroit-hackathon-turned-into-wordpress-coms-first-ever-tv-spots/\">earlier this year</a> when a volunteer team of Automatticians visited Detroit, MI, to participate in the <a href=\"http://www.forbes.com/sites/eshachhabra/2015/03/31/8-innovative-urban-solutions-from-knight-cities-challenge/#6e5a96864d95\">Rebrand Detroit</a> project.</p>\n<p>Working with <a href=\"http://hajjflemings.com/\">Hajj Flemings</a>, founder of <a href=\"https://brandcamp.design/\">Brand Camp University</a>, the team helped launch new sites for nine small businesses over a 48 hour period. The sites that were launched include:</p>\n<ul>\n<li><a href=\"https://artinmotiondet.com/\">Art in Motion</a></li>\n<li><a href=\"https://brixdetroit.com\">Brix Wine and Charcuterie Boutique</a></li>\n<li><a href=\"https://laposadadetroit.com/\">La Posada</a></li>\n<li><a href=\"https://redbagdetroit.com/\">Red Bag Boutique</a></li>\n<li><a href=\"https://elsalpicondetroit.com\">El Salpicon</a></li>\n<li><a href=\"http://royalfreshmarketdetroit.com/\">Royal Fresh Market</a></li>\n<li><a href=\"https://mamacoosboutique.com\">Mama Coo’s Boutique</a></li>\n<li><a href=\"http://thegardenbugdetroit.com\">The Garden Bug</a></li>\n<li><a href=\"http://justjavahouse.com/\">Motor City Java House</a></li>\n</ul>\n<p>The commercials are part of a series called &#8216;Free to be&#8217; where business owners share what success means to them and the city of Detroit.</p>\n<div class=\"embed-wrap\"></div>\n<p>Each video displays a WordPress logo in the bottom-left corner of the screen with occasional factoids highlighted across the center. The commercials end with the WordPress logo displayed in the center with the words, Websites, Blogs, and Domains underneath.</p>\n<img />WordPress.com Commercial Ending\n<h2>The Message in the Commercials Is Unclear</h2>\n<p>I&#8217;ve watched each commercial a few times and my initial reaction is confusion. I don&#8217;t know exactly what WordPress.com is trying to sell me. It&#8217;s obvious that these people are seeing success with hosting their sites on WordPress.com. But is it because of the tools available or is it because the VIP team or other staff members stepped in and guided them through the process?</p>\n<p>Unlike Squarespace&#8217;s commercials that showcase the product front and center, these commercials don&#8217;t show any of the capabilities of WordPress.com. In one of the videos, the text, &#8220;Customizable websites that can change with the times&#8221; is displayed. Instead of showing the business owners changing the look of their site with the Customizer, the commercial ends.</p>\n<img />Customizable With The Times\n<p>In a different video, WordPress&#8217; total market share is used as a selling point. Using this datapoint in a commercial geared towards WordPress.com is unsettling. Eric Mann, a long time WordPress developer, <a href=\"https://ttmm.io/tech/wordpress-com-not-wordpress/\">feels the same way</a>:</p>\n<blockquote><p>I have no problem with WordPress.com advertisements on TV or the Radio or elsewhere. They’re great ways for Automattic to build recognition of their product and encourage new signups.</p>\n<p>I <em>do</em> have a problem with advertisements conflating WordPress and WordPress.com by subtly suggesting that the &#8216;27% of the Internet run on WordPress&#8217; is due to Automattic or is somehow <em>because</em> of WordPress.com.</p></blockquote>\n<p>A majority of the 27% or now 28% of the web, according to <a href=\"https://w3techs.com/technologies/overview/content_management/all\">W3Techs</a>, uses self-hosted WordPress, not WordPress.com.</p>\n<p><img /></p>\n<p>Self-hosted WordPress and WordPress.com have a symbiotic relationship. Getting into semantics may seem like nitpicking but it&#8217;s important to distinguish that they are not the same thing.</p>\n<p>The marketing material used in the screenshot above conflates them. Examples like this don&#8217;t do anything to alleviate the <a href=\"https://poststatus.com/resources/wordpress-versus-automattic/\">confusion that exists</a> between WordPress.com and self-hosted WordPress.</p>\n<p>I realize I&#8217;m not the target market for these ads but they leave me with more questions than answers. Squarespace commercials intrigue me to the point of wanting to check out what the service has to offer. Meanwhile, I don&#8217;t have any emotional reaction after watching the WordPress.com commercials.</p>\n<p>In the future, I&#8217;d like to see a commercial that highlights the tools available on WordPress.com and shows a human using them to quickly edit and change their sites. This is something I think a lot of people can relate to instead of reading text that explains what the service&#8217;s capabilities are.</p>\n<p>If you were tasked with producing a commercial for WordPress.com, how would you showcase the best of what the service has to offer? Let us know what you think of the commercials in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 May 2017 07:10:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Primary Vagrant 4.0 Updated to Use PHP 7.1, Introduces a Site Generator\";s:7:\"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:29:\"https://wptavern.com/?p=70287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/primary-vagrant-4-0-updated-to-use-php-7-1-introduces-a-site-generator\";s: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:5094:\"<p>In 2014, <a href=\"https://chriswiegman.com/\" target=\"_blank\">Chris Wiegman</a> forked VVV to create <a href=\"https://github.com/ChrisWiegman/Primary-Vagrant\" target=\"_blank\">Primary Vagrant</a>, an Apache based Vagrant configuration that uses <a href=\"https://puppetlabs.com/\" target=\"_blank\">Puppet</a>. The project has steadily evolved over the past three years and the latest release includes significant changes that require users to destroy any existing environments before upgrading.</p>\n<p><a href=\"https://chriswiegman.com/2017/05/primary-vagrant-4-0/\" target=\"_blank\">Primary Vagrant 4.0</a> runs on PHP 7.1 by default. It also introduces a <a href=\"https://github.com/ChrisWiegman/Primary-Vagrant/wiki/Adding-a-Project\" target=\"_blank\">site generator</a> that makes it easy to create and manage new sites. The project has incorporated <a href=\"https://github.com/vagrant-landrush/landrush\" target=\"_blank\">Landrush</a>, a Vagrant plugin that provides a simple DNS server without users having to edit their hosts file.</p>\n<p>Wiegman said the direction for the release came from a combination of user feedback as well as features and fixes incorporated back from a fork of Primary Vagrant that he uses at his day job as a WordPress/Web Developer at UF Health at University of Florida. He and four other colleagues use it daily, which has helped him continually improve the project. Version 4.0 was released alongside a new extensive <a href=\"https://github.com/ChrisWiegman/Primary-Vagrant/wiki\" target=\"_blank\">Wiki</a> which Wiegman created to make it easier for his team at work.</p>\n<p>Switching between PHP versions is not yet as easy as Wiegman would like it to be. It can be done but he doesn&#8217;t recommend it. He is considering moving the project to use Docker in the future but will be sticking with Vagrant for the time being.</p>\n<p>&#8220;Most Docker configs I see are really done the same way as Vagrant boxes simply swapping Docker for Vagrant,&#8221; Wiegman said. &#8220;I’ve debated moving this project to Docker but it would be done to allow more flexibility (swap nginx/mysql, php versions, etc). So far I’ve been more interested in making this as complete as possible for what I need it to do and I think with 4.0 it’s finally there.&#8221;</p>\n<p>Wiegman has been considering abandoning Vagrant for Docker for more than six months. In a November 2016 post titled <a href=\"https://chriswiegman.com/2016/11/vagrant-not-answer-everyone/\" target=\"_blank\">Vagrant Is Not the Answer for Everyone</a>, he identified a few of its shortcomings.</p>\n<p>&#8220;After working with Vagrant for nearly three years. and even writing a post on how great it is, I can now say without hesitation that it is not the solution I thought it was,&#8221; Wiegman said. &#8220;I don’t say that lightly either as I’m about to launch version 4.0 of my Primary Vagrant project. Instead I say it based on the expectations we have put on it as a development community combined with the ecosystem (or lack thereof) of the tools we have been using to attempt to bend it to our will.&#8221;</p>\n<p>Vagrant&#8217;s lack of flexibility for configuring software versions along with the lack of good interfaces to modify things like virtual host configurations have caused Weigman to take a second look at other solutions. Although Vagrant solves many issues for those who need to reproduce a development environment, dealing with the frustrating fragility of its maintenance requirements can sometimes be a major time sink.</p>\n<p>&#8220;The need for a good Vagrant box to install and configure the various pieces that make it all work means it doesn’t take much for something to fail resulting in, at best, an error message that requires another provision and, at worst, lost hours spent attempting to solve the issue in the tool that is supposed to help you build your product,&#8221; Wiegman said.</p>\n<p>The engineering team at 10up, creators of VVV, have also recognized some of the major drawbacks of using VVV, Vagrant, and Virtual Box/Hyper-V. They have recently <a href=\"https://wptavern.com/10up-releases-wp-docker-an-open-source-docker-configuration-for-local-wordpress-development\" target=\"_blank\">released WP Docker</a> as a faster, more lightweight alternative. Although the company still uses VVV in some instances, its development teams are free to choose the best solution for their projects.</p>\n<p>For Primary Vagrant&#8217;s upcoming 5.0 release, Wiegman is considering using Puppet 4 or replacing it with a new provisioning solution. He is also carefully examining a move to Docker and is experimenting to decide what will be best. Moving to Docker would offer the ability to treat PHP, MySQL, Apache, and other services more like a module that could be easily replaced, allowing for greater customization.</p>\n<p>&#8220;If I went Docker it might become Primary Docker and Primary Vagrant might be put up for adoption,&#8221; Wiegman said. &#8220;I&#8217;m not really sure yet, as that’s a pretty major change.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 May 2017 04:26:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: One Million Words\";s:7:\"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=47339\";s:7:\"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:40:\"https://ma.tt/2017/05/one-million-words/\";s: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:297:\"<p>My colleague Sara <a href=\"https://whenihavetime.com/2017/05/18/a-million-words-published-at-work-in-a-remote-company/\">has reached one million words posted to our internal sites</a>, and has some tips for distributed work and communication. I just checked my stats, I&#8217;m only at 867k.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 May 2017 23:56:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: Atom Editor Adds Git and GitHub Integration\";s:7:\"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:29:\"https://wptavern.com/?p=70245\";s:7:\"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://wptavern.com/atom-editor-adds-git-and-github-integration\";s: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:3355:\"<p>GitHub <a href=\"https://github.com/blog/1831-atom-free-and-open-source-for-everyone\" target=\"_blank\">open sourced its JavaScript-powered Atom editor</a> in 2014 with extensibility designed to be its single-most important feature. Over the past three years, a thriving ecosystem of more than 6,000 <a href=\"https://atom.io/packages\" target=\"_blank\">packages to extend the editor</a> has grown out of Atom&#8217;s open source community. GitHub estimates Atom now has 2.1 million active users.</p>\n<p>This week Atom added a major missing piece for developers who rely on GitHub as an indispensable part of their workflows. A <a href=\"https://github.atom.io/\" target=\"_blank\">new core package adds Git and GitHub integration</a> to the editor with a dock item and status bar widgets. The first iteration&#8217;s UI gives Atom users the ability to stage changes, create commits, create and switch branches, and resolve merge conflicts. Users can also see pull requests associated with the current branch in the sidebar, as well as a detailed view of issues or pull requests.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/github-package-git.png?ssl=1\"><img /></a></p>\n<p>The Atom editor is gaining popularity with WordPress developers. Its package directory lists more than a dozen <a href=\"https://atom.io/packages/search?q=WordPress\" target=\"_blank\">packages for WordPress development</a>, including <a href=\"https://wptavern.com/atom-editor-package-adds-autocomplete-for-wordpress-actions-and-filters\" target=\"_blank\">autocomplete for WordPress actions and filters</a> and <a href=\"https://wptavern.com/new-atom-editor-package-offers-code-snippets-for-wordpress-plugin-and-theme-developers\" target=\"_blank\">code snippets for plugin and theme developers</a>.</p>\n<p>GitHub also announced the launch of its new open source GitHub client. <a href=\"https://desktop.github.com/\" target=\"_blank\">GitHub Desktop Beta</a> has been redesigned in <a href=\"https://electron.atom.io/\" target=\"_blank\">Electron</a> to provide a simpler user experience for developers who are new to Git. Building the application on Electron also enables the product&#8217;s development team to move its existing desktop apps to a shared codebase, as outlined on the <a href=\"https://githubengineering.com/how-four-native-developers-wrote-an-electron-app/\" target=\"_blank\">GitHub Engineering blog</a>:</p>\n<blockquote><p>From the start, GitHub Desktop for macOS and Windows were two distinct products, each with their own team. We worked in two separate tech stacks using two different skill sets. To maintain parity across the codebases, we had to implement and design the same features twice. If we ever wanted to add Linux support, we’d have to do it all a third time. All this meant we had twice the work, twice the bugs, and far less time to build new features. As it turns out, building native apps for multiple platforms doesn’t scale.</p></blockquote>\n<p>Rewriting the desktop client on Electron allows GitHub to provide a unified cross-platform experience while reducing development time for the product. The beta app is open source and is <a href=\"https://desktop.github.com/\" target=\"_blank\">available for download</a> for users who want the newest desktop features before they are officially released.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 May 2017 03:31:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WPWeekly Episode 273 – Mental Health Awareness With Bridget Willard and Ed Finkler\";s:7:\"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:58:\"https://wptavern.com?p=70259&preview=true&preview_id=70259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/wpweekly-episode-273-mental-health-awareness-with-bridget-willard-and-ed-finkler\";s: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:2943:\"<p>The month of May is <a href=\"http://www.mentalhealthamerica.net/may\">Mental Health Awareness</a> month. On this episode, Ed Finkler, founder of <a href=\"https://osmihelp.org/\">Open Sourcing Mental Illness</a> (OSMI), and Bridget Willard, Marketing Manager for <a href=\"https://wordimpress.com/\">WordImpress</a>, join me to raise awareness of mental health.</p>\n<p>We start the show by discussing what mental health is and what it means to feel normal. We talk about the stigma associated with opening up to others and why it&#8217;s often seen as a brave action. Finkler shares tips on how people can help those battling mental illness. He also explains what not to do.</p>\n<p>The following resources were mentioned during the show:</p>\n<ul>\n<li><a href=\"http://wphugs.org/\">WPHugs</a> &#8211; A safe space for people to openly discuss mental health issues.</li>\n<li><a href=\"https://mental-health-support.herokuapp.com/\">Mental Health Support</a> &#8211; A public group on Slack that provides mental health support.</li>\n<li><a href=\"https://osmihelp.org/resources\">OSMI Handbooks</a> &#8211; Handbooks for employees, employers, and guidelines for good mental health in the workplace.</li>\n<li><a href=\"https://www.mentalhealthfirstaid.org/cs/\">Mental Health First Aid</a> &#8211; A course that educates people on how to help those with a mental health or substance-use crisis.</li>\n</ul>\n<p>Finkler announced on the show that he is stepping down from his role at Graph Story and will be working on the OSMI project full-time. OSMI is <a href=\"https://osmihelp.org/2017-campaign\">raising funds</a> for 2017. Funds will be used for traveling to speak at events, create and update helpful resources, and a salary. If you&#8217;re able, please consider donating. OSMI is a US 501(c)(3) organization, and all donations are tax-deductible.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-4-7-5-patches-six-security-issues-immediate-update-recommended\">WordPress 4.7.5 Patches Six Security Issues, Immediate Update Recommended</a><br />\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8\">What to Expect in WordPress 4.8</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 24th 3:00 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\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener noreferrer\">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\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #273:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 May 2017 00:53:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: WordCamp Europe Contributor Day to Host 13 Workshops, Event is Nearly Sold Out\";s:7:\"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:29:\"https://wptavern.com/?p=70224\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/wordcamp-europe-contributor-day-to-host-13-workshops-event-is-nearly-sold-out\";s: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:1707:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://2017.europe.wordcamp.org/2017/05/17/everything-you-need-to-know-about-wceu-contributor-day/#more-5991\" target=\"_blank\">WordCamp Europe&#8217;s Contributor Day</a> is set for Thursday, June 15th, 2017, the day before the conference days begin. Attendees will be split into contributor teams and this year the event will also feature four talks and 13 workshops. The selected team leaders are long-time WordPress core and community contributors from around the world.</p>\n<p>Scheduled talks include topics aimed at contributors, such as &#8220;How the WordPress Security Team Works&#8221; and &#8220;Why Your [Translation] Community Needs a Glossary.&#8221; The workshops are more educational sessions that kickstart contribution, i.e. setting up a development environment for contributing to WordPress, internationalization for developers, JavaScript in core, and learning how to contribute code to the Meta Team, among other topics.</p>\n<p>The Contributor Day <a href=\"https://2017.europe.wordcamp.org/schedule/contributor-day-schedule/\" target=\"_blank\">schedule</a> was published to the event&#8217;s website today with room locations identified for teams, talks, and workshops.</p>\n<p>Capacity for the event is 500 attendees, which is larger than many WordCamps. As of this morning, there were fewer than 50 spots remaining. <a href=\"http://wceurope.polldaddy.com/s/sign-up-for-contributor-day-2017\" target=\"_blank\">Contributor Day signup</a> is separate from the WordCamp registration and is still open for the last few available tickets.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 May 2017 19:30:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"HeroPress: Community saved my life: Falling down, lifted up.\";s:7:\"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:56:\"https://heropress.com/?post_type=heropress-essays&p=1842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://heropress.com/essays/community-saved-life-falling-lifted/?utm_source=rss&utm_medium=rss&utm_campaign=community-saved-life-falling-lifted\";s: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:9287:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/051717-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It is through helping others that I am helping myself every day... #mentalhealth\" /><blockquote><p>“Never doubt that a small group of thoughtful, committed, citizens can change the world. Indeed, it is the only thing that ever has.”<br />\n― Margaret Mead</p></blockquote>\n<p>This essay took me a long time to end; mainly because, in many ways, I am still writing it. My first essay for HeroPress was two years ago (&#8220;<a href=\"https://heropress.com/essays/w-w-waiting-for-the-right-circumstances/\">W-W-Waiting For The Right Circumstances</a>&#8220;), June 2015; an essay written at a time in which I was at my Zenith.</p>\n<p>It was a story written by a young man full of hope, dreams, and accomplishment. A young man peaking in his career and his relationships. A young man who still had a long way to learn in this world; especially about himself and what true community meant. This essay, the one you are reading now, is from rock bottom.</p>\n<h3>The Great Depression</h3>\n<p>People, mostly those who do not have depression, think of depression as a severe sadness; it is not sadness. Sadness can be felt. Depression is more of a vacuous endurance of life; each moment folding aimlessly into the next. Sadness would be a relief in comparison.</p>\n<p>I have had depression many times in my life prior to the one I am about to tell you about; previously I had managed to endure through it, this time was different and this time I needed help. I, unsurprisingly to me, was diagnosed with (aptly named) &#8216;manic depression&#8217;. This explained my amazing highs, my deepest lows, and the plateau of the in-between.</p>\n<p>What did this mean for me? I didn&#8217;t know, I was still me. Nothing about me had changed other than learning a new label that I had to bare. I was still me. I was still me.</p>\n<p>According to the World Health Organization (WHO) in <a href=\"http://www.who.int/whr/2001/media_centre/press_release/en/\">2001</a>:</p>\n<blockquote><p>&#8220;One in four people in the world will be affected by mental or neurological disorders at some point in their lives.&#8221;</p></blockquote>\n<p>I was one in that four people; a large number, yet I felt alone.</p>\n<p>Alone because there is so much stigma attached to having a Mental Wellness issue that we barely talk about it, its almost taboo. We are a society more comfortable with having a broken leg than to tell our bosses, colleagues, friends or peers that we are depressed.</p>\n<p>That needed to change.</p>\n<h3>WordCamp Closet</h3>\n<p>At WordCamp Cape Town 2016, I stood in-front of an audience and came out of the figurative closet with my presentation of: &#8220;<a href=\"https://wordpress.tv/2016/11/24/leo-gopal-the-wordpress-community-mental-wellness-and-you/\">The WordPress Community, Mental Wellness, and You</a>&#8221;</p>\n<p>After that talk, many people came out of their own closets to me and thanked me for being so &#8216;brave&#8217; as to talk so openly about a subject so few understood much about. My hope with that talk, with this essay, that an act of openness like this is no longer seen as &#8216;being brave&#8217; but being normal, being understood. It was the &#8216;bravery&#8217; of people like Cory Miller and Rich Robinkoff that allowed me to be brave in telling my own story.</p>\n<p>That was September 2016. In February 2017, I reached my darkest hour when I attempted to take my own life.</p>\n<h3>A New Beginning</h3>\n<p>In many ways, this is my WordPress re-origin story.</p>\n<p>After surviving my own actions, it was the WordPress community that were there to support me. It was my friends I had made in the local WordPress community, and when I opened up about my experience, the international WordPress Community came to help me.</p>\n<blockquote><p>There are so many people in the WordPress Community who I owe a huge debt to. People who genuinely reached out and cared about the response I gave when asked, &#8216;How are you?&#8217;.</p></blockquote>\n<p>It was in this moment of realizing I had the WordPress Community that I began to live again; the WordPress community saved my life. It was in this moment that I realized that if I knew I could have this support sooner, I may not have gone as far as I had gone. It was in this moment that I vowed to be blatantly honest with the world so that no one else may ever feel that they are that alone again.</p>\n<p>Is there any other software specific community that can make the claim of being so caring as to have helped someone stay alive? I do not know the answer to that question, but I do know that WordPress and its community has definitely done that for me.</p>\n<h3>WPHugs: Giving back to community</h3>\n<p>I openly wrote about my experiences.</p>\n<p>I even mention it straight up in Job Interviews, and I do believe that this, knowingly or unknowingly, has costed me various positions I could have easily received had there not been any mention of a mental illness and my recent events &#8211; and its understandable.</p>\n<p>How would you react when you ask a candidate about why he left his previous employment, and he answers: &#8220;I am manic depressive, I went a few months off my meds, I did not understand it enough at the time, and then tried to take my own life and later moved cities to be closer to family and friends&#8221;? When all I could have said was I moved cities to be closer to family, with a smile that couldn&#8217;t be argued with.</p>\n<p>I started an initiative called <a href=\"https://wphugs.org/\">WPHugs</a>, a passion project hugely inspired by HeroPress, which is designed to be a safe space in the WordPress Community where topics of Mental Health, and general well-being and life balance can be freely and non-judgmentally spoken about, with care and compassion offered by all. This reminds me, we should have a creed, all great communities have one.</p>\n<p>It is simply fortunate timing that <a href=\"https://wphugs.org/\">WPHugs.org</a> and this essay are launched and written in Mental Health Awareness Month. Some may even go as far as calling it serendipity; a word I have tattooed in Braille on my wrists.</p>\n<p>It is through helping others that I am helping myself, everyday&#8230;</p>\n<h3>In conclusion-ipsum</h3>\n<p>My story is not unique &#8211; it is simply one that is told.</p>\n<p>In speaking out about Mental Wellness and the huge role our community plays in its stigma, I hope that someone, somewhere, also gets &#8216;brave enough&#8217; to speak up and reach out.</p>\n<p>I have no conclusion to this essay&#8230; I continue, everyday, to write it; and I hope you do too.</p>\n<p>The WordPress community doesn&#8217;t just power a percentage of the internet; It empowers too.</p>\n<p>P.S. Talking about it will only become easier by talking about it, so please, continue the conversation; lets more of us talk and keep talking.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Community saved my life: Falling down, lifted up.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Community%20saved%20my%20life%3A%20Falling%20down%2C%20lifted%20up.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcommunity-saved-life-falling-lifted%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Community saved my life: Falling down, lifted up.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fcommunity-saved-life-falling-lifted%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcommunity-saved-life-falling-lifted%2F&title=Community+saved+my+life%3A+Falling+down%2C+lifted+up.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Community saved my life: Falling down, lifted up.\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/community-saved-life-falling-lifted/&media=https://heropress.com/wp-content/uploads/2017/05/051717-150x150.jpg&description=Community saved my life: Falling down, lifted up.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Community saved my life: Falling down, lifted up.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/community-saved-life-falling-lifted/\" title=\"Community saved my life: Falling down, lifted up.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/community-saved-life-falling-lifted/\">Community saved my life: Falling down, lifted up.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 17 May 2017 12:00:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Leo Gopal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: New TV Ads\";s:7:\"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=47336\";s:7:\"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:33:\"https://ma.tt/2017/05/new-tv-ads/\";s: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:416:\"<p></p>\n<p>As I mentioned in the <a href=\"https://ma.tt/2016/12/state-of-the-word-2016/\">State of the Word</a> this is the year we&#8217;re ramping up marketing. There is lots to learn and much to follow, but we have our first TV ads up in six markets to test. Each shares a story of a business in Detroit, and I actually got the chance to visit one of the businesses earlier today.</p>\n<p></p>\n<p></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:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 May 2017 05:08:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordPress 4.7.5 Patches Six Security Issues, Immediate Update Recommended\";s:7:\"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:29:\"https://wptavern.com/?p=70198\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/wordpress-4-7-5-patches-six-security-issues-immediate-update-recommended\";s: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:2543:\"<p><a href=\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\" target=\"_blank\">WordPress 4.7.5</a> was released today with fixes for six security issues. If you manage multiple sites, you may have seen automatic update notices landing in your inbox this evening. The security release is for all previous versions and WordPress is recommending an immediate update. Sites running versions older than 3.7 will require a manual update.</p>\n<p>The vulnerabilities patched in 4.7.5 were responsibly disclosed to the WordPress security team by five different parties credited in the release post. These include the following:</p>\n<ul>\n<li>Insufficient redirect validation in the HTTP class</li>\n<li>Improper handling of post meta data values in the XML-RPC API</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API</li>\n<li>A Cross Site Request Forgery (CRSF)  vulnerability was discovered in the filesystem credentials dialog</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer</li>\n</ul>\n<p>Several of the vulnerability reports came from security researchers on HackerOne. In a recent <a href=\"https://www.hackerone.com/blog/Q-and-A-with-Wordpress-security-team-lead-aaron-campbell\" target=\"_blank\">interview with HackerOne</a>, WordPress Security Team Lead Aaron Campbell said the team has had a spike in reports since <a href=\"https://wptavern.com/wordpress-is-now-on-hackerone-launches-bug-bounties\" target=\"_blank\">publicly launching its bug bounty program</a>.</p>\n<p>&#8220;The increase in volume of reports was drastic as expected, but also our team really hadn’t had to process any invalid reports before moving the program public,&#8221; Campbell said. &#8220;The dynamics of the Hacker Reputation system really came into play for the first time, and it was really interesting to figure out how to best work within it.&#8221;</p>\n<p>If WordPress continues to sustain the same volume of reports on its new HackerOne account, users may see more frequent security releases in the future.</p>\n<p>WordPress 4.7.5 also includes a handful of maintenance fixes. Check out the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\" target=\"_blank\">full list of changes</a> for more details.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 May 2017 01:44:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"WPTavern: What to Expect in WordPress 4.8\";s:7:\"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:29:\"https://wptavern.com/?p=70132\";s:7:\"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://wptavern.com/what-to-expect-in-wordpress-4-8\";s: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:4951:\"<p>WordPress 4.8 Beta 1 <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">is available for testing</a> and has a couple of features that will likely have a big impact.</p>\n<h2>New Image, Video, and Audio Widgets</h2>\n<p>WordPress 4.8 has three new core widgets and adds a visual editor to the Text widget. Adding video, audio, or images to text widgets typically involves using custom HTML.</p>\n<p>Each of the new widgets in 4.8 takes advantage of the WordPress Media Library. Because the widgets use the media modal, users can insert content from a URL. This is particularly convenient for the Video widget as most videos are not stored locally.</p>\n\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8/corevideowidget\"><img width=\"341\" height=\"454\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/CoreVideoWidget.png?fit=341%2C454&ssl=1\" class=\"attachment-full size-full\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8/coreaudiowidget\"><img width=\"341\" height=\"251\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/CoreAudioWidget.png?fit=341%2C251&ssl=1\" class=\"attachment-full size-full\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8/coreimagewidget\"><img width=\"341\" height=\"360\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/CoreImageWidget.png?fit=341%2C360&ssl=1\" class=\"attachment-full size-full\" alt=\"Core Image Widget\" /></a>\n\n<p>Here is what the core widgets look like on Twenty Seventeen after they&#8217;ve been configured.</p>\n<img />Core Widgets on The Frontend\n<p>The text widget now has a visual editor with a couple of basic formatting tools available. The visual editor supports Keyboard shortcuts. However, it does not support <a href=\"https://codex.wordpress.org/Embeds\">oEmbed</a>. Like the post editor, you can switch between Visual and HTML mode. The HTML version of the editor benefits from the upgrade as it provides users with the same formatting tools that are available in the visual editor.</p>\n<img />Text Widget HTML Mode\n<h2>Link Boundaries</h2>\n<p>Link boundaries are <a href=\"https://github.com/WordPress/gutenberg/issues/89\">a byproduct</a> of the ongoing work to <a href=\"https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\">Gutenberg</a>, WordPress&#8217; new block-based editor. If you&#8217;ve ever written links in the visual editor, you may have noticed that sometimes it&#8217;s difficult to move the cursor outside of the link element.</p>\n<p>In WordPress 4.8, link boundaries provide a visual cue of when the cursor is inside a link element. <a href=\"https://cloudup.com/c49BKKIE7SW\">This video</a> recorded by Matias Ventura provides a visual demonstration of how link boundaries work.</p>\n<img />Inside Link Boundary\n<img />Outside Link Boundary\n<p>During testing it felt like this was more of a bug fix to how the visual editor behaves rather than a new feature.</p>\n<h2>Dashboard News Widget Includes Upcoming Local WordPress Meetups</h2>\n<p>There are <a href=\"https://www.meetup.com/topics/wordpress/\">1,180 WordPress meetups</a> registered on Meetup.com and <a href=\"https://central.wordcamp.org/\">close to 100 WordCamps</a> scheduled for this year. In an effort to remind users of the WordPress communities that exist around them world-wide, the WordPress News Dashboard widget has been modified to include Meetups and WordCamps near a user&#8217;s location.</p>\n<img />News Widget Shows Upcoming Meetups and WordCamps\n<p>The widget will try to guess your location automatically. If it&#8217;s incorrect, clicking the Pencil button opens a box where you can type in your city. The bottom of the widget includes links to the <a href=\"https://make.wordpress.org/community/meetups-landing-page\">WordPress Meetup landing page</a>, <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central Schedule</a>, and the <a href=\"https://wordpress.org/news/\">WordPress.org news blog</a>.</p>\n<h2>WordPress 4.8 Sets the Stage for Gutenberg</h2>\n<p>It should be noted that WordPress 4.8 will not include Gutenberg. It does, however, lay the foundation for Gutenberg to arrive in a future release.</p>\n<p>The easiest way to install and test WordPress 4.8 Beta 1 is to install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Beta Tester plugin</a> on a staging site. Once activated, visit Tools &gt; Beta Testing and select Point release nightlies and then update WordPress.</p>\n<p>If you believe you&#8217;ve encountered a bug, you can report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the WordPress support forums. Please provide as much detail about the bug as possible. WordPress 4.8 is <a href=\"https://make.wordpress.org/core/4-8/\">tentatively scheduled</a> for release June 8th.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 23:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: Hookr Plugin Rebrands as WP Inspect, Project to Shift to a Module-Based Architecture\";s:7:\"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:29:\"https://wptavern.com/?p=70093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/hookr-plugin-rebrands-as-wp-inspect-project-to-shift-to-a-module-based-architecture\";s: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:3162:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/wp-inspect.png?ssl=1\"><img /></a></p>\n<p>A year and a half after the <a href=\"https://wptavern.com/new-free-hookr-plugin-displays-all-available-hooks-inside-wordpress\" target=\"_blank\">initial release</a> of the controversially-named Hookr plugin, its creator, Christopher Sanford, has rebranded the plugin as WP Inspect. The plugin provides a WordPress hook/API reference for developers and displays the actions and filters that fired as the page loaded. At launch Sanford was fairly committed to the Hookr brand, despite criticism, due to an oversaturated market for WordPress developer plugins. After 3,500 downloads, Sanford decided to rebrand and put the plugin in the official directory.</p>\n<p>&#8220;Based on the usage and positive feedback, I wanted to target a broader audience, which led to both the re-brand and submission to the WordPress Plugin repository,&#8221; Sanford said. &#8220;Leveraging the plugin repo, it will be much easier to coordinate/communicate updates, which is somewhat lacking today.&#8221;</p>\n<p>The 1.0.0 release of <a href=\"https://wordpress.org/plugins/wp-inspect/\" target=\"_blank\">WP Inspect</a> includes mostly bug fixes and technical debt cleanup with two major enhancements:</p>\n<ul>\n<li>WP Inspect will only be active under specific roles, with Administrators being enabled by default. (Previously it was active for everyone.)</li>\n<li>Action detail now requires no additional clicks. (Before, if users wanted to inspect an action, they would have to click the action name.)</li>\n</ul>\n<p>Sanford said WP Inspect will be migrating to a module-based architecture that will allow users to create their own tooling. He is also planning to release several commercial modules that will expand the debugging capabilities of the plugin. He said he doesn&#8217;t anticipate the type of demand or usage that would warrant a marketplace for third-party modules, but he&#8217;s open to the idea.</p>\n<p>With the plugin now rebranded and released, Sandford is using his time to create the infrastructure to offer Hookr as a SaaS product for commercial theme and plugin developers.</p>\n<p>&#8220;Depending on membership level, users can interface with HookrAPI to get additional details for debugging,&#8221; Sandford said. &#8220;Users may submit their current codebase for &#8216;comment coverage&#8217; analysis, which is great for determining the quantity and quality of inline code documentation. Finally, users may submit their projects to HookrAPI for real time code parsing and documentation to be included with their commercial theme or plugin.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/hookr-api-e1494965787732.png?ssl=1\"><img /></a></p>\n<p>Sanford plans to launch a sister site to the online <a href=\"http://hookr.io/\" target=\"_blank\">Hookr.io</a> reference, under another &#8220;G-rated&#8221; name with a simplified interface, as well as an offline version of Hookr. These will lay the groundwork for the next item on the roadmap: native mobile applications with offline data.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 22:54:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Dev Blog: WordPress 4.7.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2304:\"<p>WordPress 4.7.5 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.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CSRF)  vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</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.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</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:\"Tue, 16 May 2017 22:39:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: U.S. District Court Denies Pre-Trial Motion to Dismiss GPL Infringement Case\";s:7:\"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:29:\"https://wptavern.com/?p=70100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/u-s-district-court-denies-pre-trial-motion-to-dismiss-gpl-infringement-case\";s: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:6120:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/gavel.jpg?ssl=1\"><img /></a>photo credit: weiss_paarz_photos <a href=\"http://www.flickr.com/photos/141290938@N03/27193168442\">Gavel &#8211; Courtroom and Gavel</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>The District Court for the Northern District of California has denied a motion to dismiss a complaint of breach of contract and copyright infringement claims in <a href=\"https://docs.justia.com/cases/federal/district-courts/california/candce/3:2016cv06982/305835/32\" target=\"_blank\">a case regarding the GPL</a>. The plaintiff, <a href=\"http://artifex.com/\" target=\"_blank\">Artifex Software Inc.</a>, is the creator of <a href=\"http://artifex.com/products-ghostscript-overview/\" target=\"_blank\">Ghostscript</a>, an AGPL-licensed PDF interpreter. In 2016, the company filed a lawsuit against <a href=\"http://hancom.com\" target=\"_blank\">Hancom</a>, a South Korean software company that incorporated Ghostscript into its Hangul word processing software without complying with the GPL.</p>\n<p>Ghostscript is available for free for those who use it in compliance with its AGPL license. Artifex also offers a <a href=\"http://artifex.com/licensing/\" target=\"_blank\">commercial license of Ghostscript</a> that is required if the user is including it and distributing it within an application that is not licensed under the AGPL. Richard Stallman outlined this common practice of <a href=\"https://www.fsf.org/blogs/rms/selling-exceptions\" target=\"_blank\">&#8220;selling exceptions&#8221; to the GPL</a> in 2010, saying that he has considered it acceptable since the 1990&#8217;s, because &#8220;this approach has made it possible for important programs to become free software.&#8221;</p>\n<p>According to the <a href=\"https://docs.justia.com/cases/federal/district-courts/california/candce/3:2016cv06982/305835/32\" target=\"_blank\">complaint</a>, Hancom failed to purchase a commercial license and also did not distribute the source code as required by the AGPL:</p>\n<blockquote><p>Because Defendant did not have a commercial license for Ghostscript, its use and distribution of Ghostscript constituted consent to the terms of the GNU GPL&#8230;In addition, Defendant’s website stated that it had licensed Ghostscript under the GNU GPL. Nonetheless, Defendant failed to comply with key provisions of the GNU GPL. In particular, because Defendant integrated Ghostscript into its software without revealing to the end-user that Ghostscript was part of the Hancom software, the GNU GPL required Defendant to distribute its software with the accompanying source code. Defendant did not do so and thus violated the GNU GPL, terminating Defendant’s license to use Ghostscript. Defendant’s failure to obtain a commercial license deprived Plaintiff of a licensing fee, or, alternatively, its failure to comply with the GNU GPL deprived Plaintiff of the opportunity “to further promote the advancement of interpreter technologies.”</p></blockquote>\n<p>Although Hancom is said to have removed Ghostscript from its software in August 2016, Artifex is asking for a court order for Hancom to stop the infringement and seeks compensation for damages. Artifex also requests that the court require Hancom to distribute to each licensee of Hangul and Hancom Office the complete source code for the products in accordance with the GPL.</p>\n<p>Hancom responded by filing a motion to dismiss the complaint on the grounds that Artifex had not demonstrated the existence of a contract, how it was breached, or the damages caused by a breach.</p>\n<p>An order issued by Magistrate Judge Jacqueline Scott Corley ruled that Artifex has sufficiently established the existence of a contract:</p>\n<blockquote><p>The GNU GPL, which is attached to the complaint, provides that the Ghostscript user agrees to its terms if the user does not obtain a commercial license. Plaintiff alleges that Defendant used Ghostscript, did not obtain a commercial license, and represented publicly that its use of Ghostscript was licensed under the GNL GPU. These allegations sufficiently plead the existence of a contract.</p></blockquote>\n<p>Furthermore, the ruling also recognized the damage that results from a company failing to comply with an open source license, citing the 2008 ruling on Jacobsen v. Katzer, another open source licensing dispute:</p>\n<blockquote><p>Indeed, as the Federal Circuit has recognized, there is harm which flows from a party’s failure to comply with open source licensing: “[t]he lack of money changing hands in open source licensing should not be presumed to mean that there is no economic consideration” because “[t]here are substantial benefits, including economic benefits, to the creation and distribution of copyrighted works under public licenses that range far beyond traditional license royalties.” Jacobsen v. Katzer, 535 F.3d 1373, 1379 (Fed. Cir. 2008).</p></blockquote>\n<p>Although QZ.com and other media outlets are reporting that this is a groundbreaking ruling that <a href=\"https://qz.com/981029/a-federal-court-has-ruled-that-an-open-source-license-is-an-enforceable-contract/\" target=\"_blank\">makes open source licenses an enforceable contract</a>, the case has not yet gone to trial. The court has simply denied Hancom&#8217;s arguments that because the company didn&#8217;t sign anything, the GPL does not constitute a contract. The ruling states that Artifex&#8217;s allegations regarding the dual licensing structure for its product are enough for the company to begin the process of pleading damages for its claim that Hancom breached its contract. It is not a ruling about whether or not copyleft licenses are enforceable.</p>\n<p>Artifex is now free to pursue its case of breach of contract and copyright infringement claims against Hancom, but it&#8217;s still very early and may end in a settlement. Hancom is ordered to file its answer by May 18 and both parties are scheduled to appear for an Initial Case Management Conference on June 15.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 19:09:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"WPTavern: WordPress.com Experiments With Allowing Business Plan Customers to Install Third-Party Plugins and Themes\";s:7:\"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:29:\"https://wptavern.com/?p=70129\";s:7:\"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:126:\"https://wptavern.com/wordpress-com-experiments-with-allowing-business-plan-customers-to-install-third-party-plugins-and-themes\";s: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:2521:\"<p>One of the most important things that distinguishes self-hosted WordPress from WordPress.com is the ability to install custom themes and plugins. A <a href=\"https://en.support.wordpress.com/com-vs-org/\">recent change</a> to WordPress.com&#8217;s Business Plan removes this limitation, allowing customers to install most third-party plugins and themes.</p>\n<img />WordPress.com Comparison Chart\n<p>In a <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2944050\">WordPress.com support thread</a> created in February, a user asked how to install plugins on WordPress.com. Volunteers responded with the usual explanation that plugins can not be installed on WordPress.com and that they would need to use the self-hosted version of WordPress instead.</p>\n<p>A few days ago, Valedeoro, a member of WordPress.com&#8217;s support staff, <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2943898\">updated the thread</a> announcing that third-party plugin support had recently been opened to customers on the WordPress.com Business Plan.</p>\n<blockquote><p>Quick update on third-party plugins: We&#8217;ve recently opened the opportunity to install plugins for Business Plan users. Keep in mind that most features are covered already by the plugin included in your WordPress.com account, so it is possible that you do not need any additional plugins.</p></blockquote>\n<p>Further into the thread, a second support staff member <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2944050\">acknowledged</a> that WooCommerce can be installed. A third support staff member <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2944290\">confirmed</a> that the ability to install most third-party plugins and themes was added to the Business Plan.</p>\n<p>Details of the changes have not been published yet. &#8220;We’re still in an experimentation phase,&#8221; Automattic representative Mark Armstrong said. &#8220;It’s something we’ve rolled out to Business Plan users over the last couple weeks, and we’re looking forward to continued testing.&#8221;</p>\n<p>This move would place WordPress.com squarely in the managed WordPress hosting space. If installing custom plugins and themes becomes a permanent feature, it will be interesting to see how it affects <a href=\"https://bobwp.com/living-in-a-state-of-wordpress-confusion/\">the confusion</a> between WordPress.com and self-hosted WordPress.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 08:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Rules for Standards\";s:7:\"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=47321\";s:7:\"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/2017/05/rules-for-standards/\";s: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:187:\"<p>Dave Winer has <a href=\"http://scripting.com/2017/05/09/rulesForStandardsmakers.html\">one rule that matters and a number of other good points on making standards and protocols</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:\"Mon, 15 May 2017 20:34:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WordPress Is Now on HackerOne, Launches Bug Bounties\";s:7:\"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:29:\"https://wptavern.com/?p=66796\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-is-now-on-hackerone-launches-bug-bounties\";s: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:2607:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/02/hackerone-logo.png?ssl=1\"><img /></a></p>\n<p>WordPress now has its own <a href=\"https://hackerone.com/wordpress\" target=\"_blank\">official HackerOne account</a> where security researchers can responsibly disclose vulnerabilities to the security team. The project&#8217;s page was previously listed under Automattic&#8217;s profile before <a href=\"https://wptavern.com/hackerone-launches-free-community-edition-for-non-commercial-open-source-projects\" target=\"_blank\">HackerOne launched its free community edition for open source projects</a>. WordPress has now <a href=\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\" target=\"_blank\">transitioned to its own account</a>, which also includes sister projects BuddyPress, bbPress, GlotPress, and WP-CLI, along with all of their respective websites.</p>\n<p>The WordPress Security team launched its HackerOne profile privately at first and had been inviting reporters to use it when they reported security issues via email. Having the profile public makes it possible for the team to work together on triaging the issues that are submitted. WordPress Security Czar Aaron Campbell said the new system will reduce the time spent on responding to commonly reported issues, allowing the team to spend its time more effectively.</p>\n<p>&#8220;We have about 40 people with access to triage reports, although, like most volunteer groups, not everyone is usually triaging at the same time,&#8221; Campbell said.</p>\n<p>The project also launched bug bounties to reward reporters for responsibly disclosing security issues and Campbell said the team has awarded more than $3,700 in bounties to seven different reporters.</p>\n<p>&#8220;So far bounties have ranged from $150 to $1,337,&#8221; Campbell said. &#8220;Anything that qualifies for a cash bounty will be $150+. We have a few swag bounties (hoodies) for really small things that will be going out soon as well (finishing getting everything set up with the swag store to do this now).&#8221;</p>\n<p>Campbell confirmed that $1,337 is not the upper limit of the bounties and that there are bugs that could qualify for larger bounties.</p>\n<p>&#8220;Bounties are calculated based on bug severity, the product or site it&#8217;s on (WordPress core being weighted more heavily than say the swag store), and also the quality of the report,&#8221; Campbell said. <a href=\"https://automattic.com/\" target=\"_blank\">Automattic</a> is sponsoring the bounty payouts on behalf of the WordPress project.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 May 2017 19:51:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"BuddyPress: Naturkontakt, Organising Sweden’s Largest Environmental NGO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=265947\";s:7:\"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:\"https://buddypress.org/2017/05/naturkontakt-organising-swedens-largest-environmental-ngo/\";s: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:9271:\"<div><em>This is a guest post by Alexander Berthelsen (<a href=\"https://profiles.wordpress.org/lakrisgubben\">lakrisgubben</a>) from the Swedish WordPress agency <a href=\"https://www.klandestino.se/\">Klandestino AB</a></em>.</div>\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a></p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/front-page.png\" alt=\"Naturkontakt front page\" width=\"1675\" height=\"919\" class=\"size-full wp-image-265953\" /></p>\n<p><a href=\"https://naturkontakt.naturskyddsforeningen.se/\">Naturkontakt</span></a> (Nature contact) is the home for members of the <a href=\"http://www.naturskyddsforeningen.se/in-english\">Swedish Society for Nature Conservation</a> (SSNC), Sweden’s largest environmental NGO with over 200,000 members. This is a private site where SSNC members can read and publish internal news about the organisation, take part in forum discussions, and join or create groups to help them organise their work. Members of SSNC can create WordPress user accounts using their membership numbers from the organization&#8217;s CRM (Customer Relationship Management) software.</p>\n<h2>Background</h2>\n<p>Naturkontakt has been around since the 90’s, powered by <a href=\"https://en.wikipedia.org/wiki/FirstClass\">FirstClass</a>. By 2010, that platform had become outdated and its market share was declining. This led some members to write proposals to find a new platform. Their goal was to select a platform which would serve as a hub for all the different aspects of SSNC’s mission and vision. These include &#8220;spreading knowledge, charting environmental threats, proposing solutions, and influencing politicians and authorities, both nationally and internationally. Under democratic forms, we work regionally in 24 county branches and locally in 270 community branches.&#8221;</p>\n<h2>Moving to WordPress</h2>\n<p>In 2011, SSNC acted on their decision to set up a new web-based platform for internal communications and contacted us at <a href=\"https://www.klandestino.se/\">Klandestino</a> to work on this project. After evaluating different platforms, we chose WordPress. Some deciding factors include WordPress&#8217; open source licensing, our experience working with the platform, and the plethora of different plugins that extended WordPress to make it suitable for online communities.</p>\n<p>The first iteration of the new Naturkontakt site was launched in 2011, powered by WordPress and <a href=\"https://wordpress.org/plugins/wp-symposium-pro/\">WP Symposium</a>. This was quite a while ago but as I recall (plus email logs), the choice stood between BuddyPress and WP Symposium. At that time, WP Symposium already had a forums component while BuddyPress lacked a solid forum integration. Remember that this was the time of the stand-alone bbPress forums which took a tortuous and unstable route to integrate to both WordPress and BuddyPress.</p>\n<h2>bbPress 2.0 to the Rescue</h2>\n<p>A year after we launched the new site, we undertook an evaluation which revealed some pain points. To name a few, WP Symposium had limited extensibility, some security issues, and major problems with performance. With those challenges in mind, we researched again into other community solutions for WordPress. By that time, the <a href=\"https://bbpress.org/blog/2011/09/bbpress-2-0-now-available/\">new bbPress 2.0 plugin was available</a> and it worked very well with BuddyPress.</p>\n<p>It was an easy decision to switch from WP Symposium to BuddyPress and bbPress. The major tasks were the arduous migration of data and continuous testing. This new set up has stood the test of time, we&#8217;re really pleased with it. The BuddyPress-bbPress combination gave us a running start with forums, groups, profiles, and messages, which are some of the required pieces of functionality needed on Naturkontakt.  </p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/profile-forums-page.png\" alt=\"Profile page\" width=\"1668\" height=\"785\" class=\"size-full wp-image-265954\" /></p>\n<p>Further development of Naturkontakt 2.0 led to the introduction of multisite features to the community. Fortunately, BuddyPress works very well in a multisite environment. Each local organisation (group) of SSNC could have their own subsite to publish news.</p>\n<p>To make this work as smoothly as possible, we wrote custom plugins for the following functionalities:</p>\n<ul>\n<li>Many-to-many relationships between groups and subsites. For example, the group coordinating work on forest issues could be connected to the subsite publishing news about forest issues.</li>\n<li>File archives for groups so that members can upload and version docs, PDFs, images, etc.</li>\n<li>Sitewide search, a plugin that indexes all content from the entire multisite network into a “ghost” site to make it possible to have a centralised search throughout the entire network and blog/archive pages that lists posts from all sites.</li>\n<li>A drag and drop front page workflow where the editors of the site can search for and list articles from all sites on the network on the main site front page.</li>\n</ul>\n<p>This second version of Naturkontakt was released in late 2012. Since then, the basic functionalities have remained more or less the same. The site did get a facelift a few years ago when we focused on making the site work better on phones and tablets.</p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/blog-archive.png\" alt=\"Blog Archive\" width=\"1677\" height=\"920\" class=\"size-full wp-image-265955\" /></p>\n<h2>Going forward with PHP 7</h2>\n<p>Last year, after a month of capacity/speed problems, a new evaluation showed that some long-delayed upgrades had to be made. We started a new project to focus mainly on stability and speed improvements. We finished the project just right before this article was written.</p>\n<p>We implemented the following improvements:</p>\n<ul>\n<li><strong>Combed through the codebases</strong>. We searched for deprecated functions and places where custom functionality could be replaced with newly added functionality from BuddyPress, WordPress, and bbPress. We decreased the number of active plugins by a third because of the new features that had been rolled into the above-mentioned projects.</li>\n<li><strong>Switched over to<a href=\"https://www.elastic.co/\"> Elasticsearch</a>/<a href=\"https://www.elasticpress.io/\">ElasticPress</a></strong>. Our custom sitewide search has served its purpose well. However, since it’s only been used on this platform its development has fallen behind. And compared to new technologies such as Elasticsearch it didn’t cut the mustard. By switching to Elasticsearch we have offloaded a lot of the most expensive queries currently done by WordPress to a server/platform that’s fine-tuned for that kind of work.</li>\n<li><strong>Upgraded to PHP 7</strong>. This was the last part of the project. We’ve seen major improvements in the response time from the server, on average about 50%-70% decrease in response times! That is, of course, very important on a dynamic site such as for any community where static page caching often isn’t an option.</li>\n</ul>\n<h2>In conclusion</h2>\n<p>Our stats show the continued growth of the SSNC community, even though the competition from Facebook can be really hard. One of the major advantages of using WordPress, BuddyPress, and bbPress is that SSNC owns its own data.</p>\n<p>Of course, there are always things to improve on. When we completed the recent project to improve performance, despite limited budgets and time constraints, we were all satisfied and hopeful that the site will be around for many more years. We also expect that upcoming development work will be focused more on the user interaction elements of the site, hopefully by building upon and extending the great work that has gone into <a href=\"https://github.com/buddypress/next-template-packs\">BP Nouveau.</a> &lt;3</p>\n<p>To end on a personal note I’d like to thank all of the wonderful contributors to BuddyPress who have welcomed me into the community and helped me along with trac tickets and patches. Beyond my satisfaction with Naturkontakt and working with SSNC (whom I share a lot of political views with), and the functionality that BuddyPress has provided for the project, the best part of having worked on this site is that I also feel that I’ve become part of a community that tries to do something constructive about the unpleasant grip that Facebook has over our personal and professional lives.</p>\n<div><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/lakrisgubben.jpeg\" alt=\"lakrisgubben\" width=\"150\" height=\"150\" class=\"alignleft size-full wp-image-265950\" /> <em><a href=\"https://profiles.wordpress.org/lakrisgubben\">Alexander Berthelsen</a> and his two colleagues are co-owners of the web development co-operative <a href=\"http://klandestino.se/\">Klandestino AB</a>. Based in the suburbs of Stockholm, Sweden they mainly do WordPress work with a focus on NGO’s and member organisations. Alexander spends most of his five-for-the-future time on making small contributions to BuddyPress.</em>\n</div>\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:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 May 2017 16:16:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Dev Blog: WordPress Now on HackerOne\";s:7:\"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=4730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";s: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:1717:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We&#8217;ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</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, 15 May 2017 16:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";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:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"HeroPress: HeroPress Geography: Western Europe\";s:7:\"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:29:\"https://heropress.com/?p=1834\";s:7:\"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:135:\"https://heropress.com/heropress-geography-western-europe/?utm_source=rss&utm_medium=rss&utm_campaign=heropress-geography-western-europe\";s: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:4897:\"<img width=\"960\" height=\"402\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/western_europe_heropress-1024x429.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Map of Western Europe with HeroPress points on it\" /><p>When HeroPress started I didn&#8217;t plan on having contributors from western Europe, any more than the U.S.  As it turns out, we ended up with lots of people from both places. I&#8217;d still love to get people from Spain, Portugal, Italy, and Ireland. If you know anyone in those places with a great WordPress story, please have them <a href=\"https://heropress.com/contribute/\">fill out the contributor form</a>.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/going-back-roots/\">Going Back To My Roots</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/over-the-atlantic/\">Over The Atlantic</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\">Uncomfortable doesn’t mean walk away</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/burning-the-midnight-oil/\">Burning the Midnight Oil</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/bumpy-journey-becoming/\">The Bumpy Journey of Becoming</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/\">How to Learn WordPress Without Doing It on Your Own</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/living-better-life-thanks-wordpress/\">Living A Better Life Thanks To WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/sense-true-freedom/\">A Sense Of True Freedom</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/my-road-to-wordpress/\">My Road to WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/getting-a-life/\">Getting A Life</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-is-what-we-make-of-it/\">WordPress is What We Make of It</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/coming-home/\">Coming Home</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/moving-on-from-moving-on-stage/\">Moving On From Moving On Stage</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress Geography: Western Europe\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Geography%3A%20Western%20Europe&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-western-europe%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Geography: Western Europe\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-geography-western-europe%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-western-europe%2F&title=HeroPress+Geography%3A+Western+Europe\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Geography: Western Europe\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-geography-western-europe/&media=https://heropress.com/wp-content/uploads/2017/05/western_europe_heropress-150x150.png&description=HeroPress Geography: Western Europe\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Geography: Western Europe\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-geography-western-europe/\" title=\"HeroPress Geography: Western Europe\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-geography-western-europe/\">HeroPress Geography: Western Europe</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Sun, 14 May 2017 00:21:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Dev Blog: WordPress 4.8 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4727\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1147:\"<p>We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</em></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:\"Sat, 13 May 2017 00:15:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: WPWeekly Episode 272 – Interview With James Farmer, Co-Founder and CEO of Incsub\";s:7:\"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:58:\"https://wptavern.com?p=70009&preview=true&preview_id=70009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/wpweekly-episode-272-interview-with-james-farmer-co-founder-and-ceo-of-incsub\";s: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:4563:\"<p>On this episode of WordPress Weekly, I&#8217;m joined by <a href=\"https://premium.wpmudev.org/blog/author/james/\">James Farmer</a>, co-founder and CEO of <a href=\"https://incsub.com/\">Incsub</a>. Farmer has been involved in the WordPress community for 11 years and in that time, he and I have butted heads, mildly speaking.</p>\n<p>Last year, Farmer <a href=\"https://premium.wpmudev.org/blog/10-years-as-a-wordpress-entrepreneur/\">looked back</a> at the last 10 years of being a WordPress entrepreneur. In that post, he shares emails and conversations he has had in the WordPress community that are cringe-worthy. Because of the extremely poor interactions I&#8217;ve had with Farmer in the past, I&#8217;ve kept away from his work and the projects he is associated with.</p>\n<p>In the past few months, I&#8217;ve read interviews with Farmer where he appears to have turned over a new leaf. In an <a href=\"https://torquemag.io/2017/04/qa-wpmu-dev-ceo-james-farmer/\">interview on Torquemag</a> congratulating him on WPMU Dev&#8217;s Smush Image Compression plugin <a href=\"http://torquemag.io/2017/04/wp-smush-defeats-wordfence-wins-plugin-madness-2017/\">winning the Plugin Madness competition</a>, Farmer is asked what advice he would give to aspiring plugin developers?</p>\n<p>&#8220;Make the free version as brilliant as you possibly can. Give back to the community as much as you can and it’ll come back to you in spades,&#8221; Farmer said. &#8220;Contribute to the wordpress.org support forums and community, commit code if you can, speak at WordCamps, and be as helpful and useful as possible, it’ll ALL be worth it, I promise.&#8221;</p>\n<p>When asked what&#8217;s the most important lesson he&#8217;s learned as CEO and co-founder of WPMU Dev, he responded:</p>\n<blockquote><p>That is a very good question, and one I think I’m actually probably not able to answer as there are basically so so many important things.</p>\n<p>I think though if I had to pick one, it goes along the same lines as my last answer: the more you give out, the more you give of yourself and the more, kinda, selfless that you are… the more you get back. And, sadly (and from painful experience), the opposite is also true.</p></blockquote>\n<p>Because of the way he answered these questions and my curiosity for his career in WordPress, I invited him on WordPress Weekly. We talked about his entrepreneurial career and some of the failures along the way. He explains the genesis behind the <a href=\"https://wordpress.org/plugins/wp-smushit/\">Smush Image Optimization Plugin</a> and shares what it&#8217;s like to be part of the WordPress community in Australia.</p>\n<p>My favorite part of the interview is when Farmer describes his experience at WordCamp Europe a few years ago that fundamentally changed his perception of the WordPress community.</p>\n<p>After this interview, I can confidently say that the past between us is water under the bridge. I look forward to future conversations with Farmer and taking a closer look at his company&#8217;s products.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/bbpress-2-6-beta-3-likely-as-team-focuses-on-solid-data-migration-path\">bbPress 2.6 Beta 3 Likely as Team Focuses on Solid Data Migration Path</a><br />\n<a href=\"https://wptavern.com/versionpress-4-0-tentatively-scheduled-to-ship-in-september\">VersionPress 4.0 Tentatively Scheduled to Ship in September</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-release-targeted-for-june-8\">WordPress 4.8 Release Targeted for June 8</a><br />\n<a href=\"https://wptavern.com/wphugs-a-community-devoted-to-educating-discussing-and-raising-awareness-of-mental-health\">WPHugs: A Community Devoted to Educating, Discussing, and Raising Awareness of Mental Health</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 17th 3:00 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\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener noreferrer\">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\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #272:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 May 2017 23:34:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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_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:69:\"WPTavern: VersionPress 4.0 Tentatively Scheduled to Ship in September\";s:7:\"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:58:\"https://wptavern.com?p=69948&preview=true&preview_id=69948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/versionpress-4-0-tentatively-scheduled-to-ship-in-september\";s: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:2320:\"<p>Nealy a year ago, <a href=\"https://wptavern.com/versionpress-3-0-adds-new-search-feature-bulk-undo-and-commit-tracking-per-environment\">VersionPress 3.0 was released</a>. This version added new search capabilities, bulk undo, and a number of bug fixes. It was the first release since it became a <a href=\"https://wptavern.com/versionpress-transitions-into-a-free-open-source-project\">free, open source project</a>.</p>\n<p>In a post on the <a href=\"https://blog.versionpress.net/2017/05/versionpress-4-0-update/\">project&#8217;s development blog</a>, Borek Bernard, co-founder of VersionPress, describes what the team is focusing on for 4.0 which includes a tentative release schedule.</p>\n<p>VersionPress 4.0 beta is planned to ship in June with 4.0-final scheduled to ship in September. In addition, the team will be labeling the project as a Developer Preview to better indicate its production-readiness.</p>\n<p>&#8220;With every major release, you rightfully ask about the status of the project when it comes to production-readiness,&#8221; Bernard said. &#8220;The answer is &#8216;your mileage may vary&#8217; but we feel we should better indicate that it’s only really intended for developers, currently. Therefore, we’ll be adding the ‘Developer Preview’ label for the project as a whole.&#8221;</p>\n<p>VersionPress 4.0 beta 1 will support Jetpack and WooCommerce via <a href=\"https://github.com/versionpress/versionpress/blob/master/docs/Plugin-Support.md\">plugin definitions</a>. Updates to internal data structures, compatibility fixes with WordPress 4.7, and other improvements are also slated to be in 4.0.</p>\n<p>Bernard also provides an outline of what to expect from the project in the near future. The team hopes to release Version 5.0 later this year or early next year with definitions for the most popular plugins. It will also be the first version rolled out on the project&#8217;s upcoming platform. Version 6.0 is expected a year after that.</p>\n<p>To contribute to VersionPress, you can get in touch with the founders through <a href=\"https://gitter.im/versionpress/versionpress\">Gitter</a> or visit the <a href=\"https://github.com/versionpress/versionpress/projects/2\">project&#8217;s Github page</a> where pull requests are welcomed.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 May 2017 00:34:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: Akismet WordPress Plugin 3.3.2 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1940\";s:7:\"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://blog.akismet.com/2017/05/10/akismet-wordpress-plugin-3-3-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:869:\"<p>Version 3.3.2 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. This update fixes a bug that was preventing some JavaScript from executing in wp-admin in some older browsers.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1940/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1940/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1940&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 May 2017 17:19:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"HeroPress: There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1813\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://heropress.com/essays/no-shortcut-success/?utm_source=rss&utm_medium=rss&utm_campaign=no-shortcut-success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13563:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/051017-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress gave me a chance in my life to prove that I could do something different.\" /><p><a href=\"http://heropress.com/feed/#hindi\">वर्डप्रेसने मुझे मेरे ज़िंदगी में कुछ अलग करने का मौक़ा दिया।</a></p>\n<p>Udaipur is known as the city of lakes, is one of the beautiful city in Rajasthan and that is where I come from. Since the beginning, I have been close to Udaipur. With the studies and growing up here, the thought of leaving this beautiful city have never occurred to me. Everything I have achieved in life could never have been possible without the support of my parents.</p>\n<p>The 6 months after the graduation have been the most troublesome. At the time it felt as if finding a job was a big challenge, but I never gave up. There is a saying that “No work is big or small. It’s not the stature of work that matters, but what you learn from working that counts” and that is when I started to look for a job out of my field of expertise. My life had a new turn and me, fortunately, got a job at KPO and that was a new beginning of my life.</p>\n<h3>How I got into WordPress</h3>\n<p>Before joining into IdeaBox I don&#8217;t know much about WordPress. Before knowing about WordPress my identity was just a beginner. By keep working on WordPress I got so much involvement in that. WordPress gave me a chance in my life to prove that I could do something different and I felt like I have the skills and potential and I could do something. I got my confidence back. I always try to learn something new in WordPress.</p>\n<p>I do theme development in WordPress. I have learned so much from WordPress. I can proudly say I am the part of WordPress community. One thing I got a chance to learn is in life, there is no shortcut for success. Whatever person get in life is only because of the hard work.</p>\n<p>I have completed 3 years in WordPress and I love to be a part of it. I love WordPress and it has the wonderful community. In my free time, I do WordPress translations. I try to contribute in every possible way by giving support, translating and any other things.</p>\n<h3>First Speaking Experience at WordCamp</h3>\n<p>WordCamp Udaipur got organized recently. In that, I was the organizer and speaker. It was the amazing experience which I never felt before. After WordCamp only I get to know that how big community it is. When I become the speaker of the WordPress is the most memorable and the greatest experience of my life. I will never forget this moment in my life.</p>\n<p>One thing is I was part of the organizing team and my first session. I was totally nervous. The session went so well and all nervousness went away in happiness. Because I realized that talking in front of these many people is not an easy task. So, I was very Happy. If I get a chance to perform In WordPress community, I will do my contribution in any way.</p>\n<h3>Thank you note</h3>\n<p>Thanks to WordPress for changing my life and I want to especially thank my parents for supporting and believe me always.</p>\n<hr />\n<h1 id=\"hindi\">सफलता का कोई शॉर्टकट नहीं है</h1>\n<p>उदयपुर को झीलों के शहर के रूप में भी जाना जाता है, यह राजस्थान के खूबसूरत शहर में से एक है और यही वह जगह है जहाँ से मैं हूं। शुरुआत से ही मैं उदयपुर में रहने और पढ़ाई के साथ और यहां पले बड़े होने की वजह से इस खूबसूरत शहर को छोड़ने का विचार मुझे कभी नहीं आया। जीवन में जो कुछ भी हासिल किया है, वह मेरे माता-पिता के समर्थन के बिना कभी संभव नहीं हो सकता था।</p>\n<p>पढ़ाई पूरी होने के ६ महीने बाद तक सबसे ज्यादा परेशानी रही। समय के साथ ऐसा महसूस हुआ जैसे काम ढूंढना काम करने से ज्यादा कठिन था, लेकिन मैंने अपना मनोबल टूटने नहीं दिया और धैर्य से काम लिया। जैसा कि कहा जाता है &#8220;कोई काम बड़ा या छोटा नहीं है, किसी काम को करने से जो आप सीखते है वह मायने रखता है&#8221; और तब मैंने अपने विशेषज्ञता के क्षेत्र से हटकर नौकरी खोजना शुरू कर दिया। मेरी जिंदगी का एक नया मोड़ था और मुझे सौभाग्य से केपीओ में नौकरी मिली और यही वह जगह थी जहां मेरे जीवन की एक नई शुरुआत शुरू हुई।</p>\n<h3>कैसे मैंने WordPress को जाना</h3>\n<p>आइडियाबॉक्स में शामिल होने से पहले मुझे वर्डप्रेस के बारे में अधिक जानकारी नहीं थी। वर्डप्रेस के बारे में जानने से पहले मेरी पहचान सिर्फ एक प्रवर्तक के रूप में थी। वर्डप्रेस पर काम करते रहने से, मेरी इसमें सहभागिता बढ़ती गयी। वर्डप्रेस ने मुझे अपने जीवन में एक मौका दिया है ताकि साबित हो कि मैं कुछ अलग कर सकती हूं और मुझे लगा कि मेरे पास कौशल और क्षमता है और मैं कुछ कर सकती हूं। मुझे अपना आत्मविश्वास वापस मिल गया। मैं हमेशा वर्डप्रेस में कुछ नया सीखने की कोशिश करती हूं।</p>\n<p>मैं वर्डप्रेस में थीम डेवलपमेंट करती हूं। मैंने वर्डप्रेस में बहुत कुछ सीखा है। मैं गर्व से कह सकता हूं कि मैं वर्डप्रेस समुदाय का हिस्सा हूं। एक बात मुझे जीवन में जानने को मिली है कि सफलता के लिए कोई शॉर्टकट नहीं है। जो कुछ भी जीवन में मिलता है, कड़ी मेहनत के कारण ही मिलता है।</p>\n<p>मैंने वर्डप्रेस में 3 साल पूरे किए हैं और मैं इसका हिस्सा बनकर बेहद खुश हूं। मुझे वर्डप्रेस पसंद है और इसमें अद्भुत समुदाय है मेरे खाली समय में मैं वर्डप्रेस अनुवाद करती हूं। मैं वर्डप्रेस में समर्थन, अनुवाद और अन्य चीजें देने के हर संभव तरीके से योगदान करने की कोशिश करती हूं।</p>\n<h3>WordCamp में पहली बार वक्ता बनने का अनुभव</h3>\n<p>Wordcamp उदयपुर हाल ही में आयोजित किया गया। उसमें मैं आयोजक और स्पीकर थी यह अद्भुत अनुभव था जिसे मैंने पहले कभी महसूस नहीं किया था। वर्डकैंप में मुझे पता है कि यह कितना बड़ा समुदाय है। यह मेरे जीवन का सबसे यादगार और सबसे बड़ा अनुभव है। मैं इसे एक क्षण के लिए भी नहीं भूलूंगी।</p>\n<p>एक बात यह है कि मैं आयोजक टीम का हिस्सा थी और मेरा पहला सेशन। मैं पूरी तरह नर्वस थी। सेशन बहुत अच्छा गया और सभी घबराहट खुशी में बदल गई। क्योंकि मुझे एहसास हुआ कि इतने लोगों के सामने बात करना आसान बात नहीं थी। इसलिए मैं बहुत खुश थी। यदि मुझे वर्डप्रेस समुदाय में प्रदर्शन करने का मौका मिलता है तो मैं किसी भी तरह से योगदान करुँगी।</p>\n<h3>धन्यवाद पत्र</h3>\n<p>वर्डप्रेस के लिए धन्यवाद जिसने मुझे खुद को साबित करने का मौका दिया और मैं अपने माता-पिता के लिए विशेष रूप से धन्यवाद करना चाहती हूं कि उन्होंने हमेशा मुझ पर विश्वास किया और मुझे प्रोत्साहित किया।</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: There is No Shortcut to Success &#8211; सफलता का कोई शॉर्टकट नहीं है\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=There%20is%20No%20Shortcut%20to%20Success%20%2D%20%E0%A4%B8%E0%A4%AB%E0%A4%B2%E0%A4%A4%E0%A4%BE%20%E0%A4%95%E0%A4%BE%20%E0%A4%95%E0%A5%8B%E0%A4%88%20%E0%A4%B6%E0%A5%89%E0%A4%B0%E0%A5%8D%E0%A4%9F%E0%A4%95%E0%A4%9F%20%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82%20%E0%A4%B9%E0%A5%88&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fno-shortcut-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: There is No Shortcut to Success &#8211; सफलता का कोई शॉर्टकट नहीं है\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fno-shortcut-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fno-shortcut-success%2F&title=There+is+No+Shortcut+to+Success+%26%238211%3B+%E0%A4%B8%E0%A4%AB%E0%A4%B2%E0%A4%A4%E0%A4%BE+%E0%A4%95%E0%A4%BE+%E0%A4%95%E0%A5%8B%E0%A4%88+%E0%A4%B6%E0%A5%89%E0%A4%B0%E0%A5%8D%E0%A4%9F%E0%A4%95%E0%A4%9F+%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82+%E0%A4%B9%E0%A5%88\" rel=\"nofollow\" target=\"_blank\" title=\"Share: There is No Shortcut to Success &#8211; सफलता का कोई शॉर्टकट नहीं है\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/no-shortcut-success/&media=https://heropress.com/wp-content/uploads/2017/05/051017-150x150.jpg&description=There is No Shortcut to Success - सफलता का कोई शॉर्टकट नहीं है\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: There is No Shortcut to Success &#8211; सफलता का कोई शॉर्टकट नहीं है\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/no-shortcut-success/\" title=\"There is No Shortcut to Success &#8211; सफलता का कोई शॉर्टकट नहीं है\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/no-shortcut-success/\">There is No Shortcut to Success &#8211; सफलता का कोई शॉर्टकट नहीं है</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 10 May 2017 12:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Nidhi Jain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: bbPress 2.6 Beta 3 Likely as Team Focuses on Solid Data Migration Path\";s:7:\"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:29:\"https://wptavern.com/?p=69367\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/bbpress-2-6-beta-3-likely-as-team-focuses-on-solid-data-migration-path\";s: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:3387:\"<p>For the past few months, users have been testing <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/\">bbPress 2.6 Beta 2</a>. bbPress 2.6 will be the first major version update since 2014 and will include the following features:</p>\n<ul>\n<li>Per-forum moderators</li>\n<li>Improved favorites and subscriptions management</li>\n<li>Improved BuddyPress integration</li>\n<li>Performance improvements</li>\n<li>User experience improvements to meta-boxes and admin-area tools</li>\n<li>Tighter integration with the WordPress Dashboard</li>\n<li>Template tweaks and clean-up</li>\n</ul>\n<p>In an <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/page/3/#post-183637\">interview published last week</a>, John James Jacoby, bbPress lead developer, shared insight into bbPress 2.6&#8217;s development. According to Jacoby, there will likely be a third beta as the team continues to work on a solid data migration path from 2.5 to 2.6.</p>\n<p>&#8220;In the process of working on 2.6, some interesting things sort of happened all at the same time,&#8221; he said. &#8220;It kind of goes back to the old bbPress problem where WordPress.org is running 2.5 and is also running a hybrid of 2.6 to take advantage of performance improvements.&#8221;</p>\n<p>Throughout the process of migrating WordPress.org from bbPress 2.5 to 2.6, the development team was able to resolve a number of bottlenecks associated with <a href=\"https://wptavern.com/mattnote-from-wordcamp-san-francisco\">turning bbPress into a plugin</a>.</p>\n<p>&#8220;With every beta comes more feedback and the closer we get to release, the more feedback that comes in,&#8221; he said. &#8220;As we upgrade WordPress.org and receive more feedback, we fix more things.&#8221;</p>\n<p>&#8220;With a small team, there&#8217;s no dedicated resources on the project which is the same problem that existed in 2014 when I did my <a href=\"https://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development\">Indiegogo campaign</a>. I&#8217;m really trying to spend a lot of time working on it but I&#8217;m also spending a lot of time on the security team, contributing to WordPress core, Multisite, and other projects. bbPress is my focus for as much as I can afford it to be.</p>\n<p>&#8220;bbPress 2.6 will ship, I promise, and it will be a better bbPress than it has ever been.&#8221;</p>\n<p>Jacoby confirmed that there will likely be a third beta released sometime in the near future. Those who have upgraded to bbPress 2.6 Beta 2 are <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/page/3/#post-183637\">reporting substantial performance improvements</a>.</p>\n<p>If you use bbPress 2.5 and want to upgrade to 2.6 Beta 2, Jacoby encourages users to create a full backup of the site&#8217;s database as the upgrade migrates data for subscriptions and favorites. These changes are not easily reverted should you choose to downgrade back to 2.5.</p>\n<p>For your convenience, I&#8217;ve clipped the portion from the full interview that includes our conversation about bbPress and BuddyPress that you can listen too below.</p>\n<a href=\"https://wptavern.com/wp-content/uploads/2017/05/John-James-Jacoby-Gives-bbPress-2.6-Update.mp3\">https://wptavern.com/wp-content/uploads/2017/05/John-James-Jacoby-Gives-bbPress-2.6-Update.mp3</a>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 May 2017 20:19:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: New WordPress Plugin Blocks Spam User Registrations Using Stop Forum Spam Database\";s:7:\"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:29:\"https://wptavern.com/?p=69810\";s:7:\"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:103:\"https://wptavern.com/new-wordpress-plugin-blocks-spam-user-registrations-using-stop-forum-spam-database\";s: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:3435:\"<p>When it comes to spam, comments are one of the first things that comes to mind. However, spam user registrations can be just as prolific on sites with open registration. Leland Fiegel, founder of <a href=\"https://themetry.com/\">Themetry</a>, has developed a new plugin called <a href=\"https://wordpress.org/plugins/stop-signup-spam/\">Stop Signup Spam</a> that prevents users from registering an account if their email or IP address is on the <a href=\"http://stopforumspam.com/\">Stop Forum Spam</a> database.</p>\n<p>Stop Forum Spam is a free service that records reports of spam registrations from blogs, forums, wikis, and more. Stop Signup Spam integrates with the WordPress registration form and Restrict Content Pro. Fiegel launched a new site over the weekend and despite not announcing it, it received a handful of spam registrations.</p>\n<p>After Googling the registrants&#8217; email addresses, he discovered a number of them were reported on Stop Forum Spam&#8217;s site. &#8220;I had never heard of Stop Forum Spam before, but it is basically an Akismet equivalent for forum sign up spam,&#8221; Fiegel said. &#8220;I noticed they had a dead link to a WordPress plugin. I looked up the <a href=\"http://stopforumspam.com/usage\">Stop Forum Spam API documentation</a> and built a basic one myself a couple of days ago. I submitted it to WordPress.org and it was approved within a day.&#8221;</p>\n<p>When a user is blocked from registering, the following error is displayed: Cannot register. Please contact site administrator for assistance.</p>\n<p>Although users can check the<a href=\"http://stopforumspam.com/search\"> Stop Forum Spam database</a> to see if their email or IP address is blocked, the error message doesn&#8217;t inform them that Stop Forum Spam is what blocked their registration.</p>\n<p>&#8220;I wanted to keep the error message vague so users wouldn&#8217;t lash out at site administrators for accusing them of being &#8216;spammers&#8217; but clear enough that the site administrator would know it was a false positive when it was reported to them,&#8221; Fiegel said.</p>\n<p>In the <a href=\"https://wordpress.org/plugins/stop-signup-spam/\">plugin&#8217;s description</a>, Fiegel is clear about <a href=\"https://www.stopforumspam.com/privacy\">what data</a> is sent to the service. Each time a user attempts to register an account, an API call that contains the user&#8217;s email and IP address is sent to Stop Forum Spam and checked against its database. Although the plugin uses the service&#8217;s API, it does not require users to register for an API key. This allows the plugin to function upon activation without having to configure anything. Registrants that are incorrectly blocked as spammers can <a href=\"http://stopforumspam.com/removal\">submit a request</a> to have their IP or email address removed from the database.</p>\n<p>Fiegel has no plans to integrate support for other forms but is open to <a href=\"https://github.com/lelandf/stop-signup-spam\">pull requests</a> from those who would like to contribute integration support of their own. I did not test this plugin on an active site, but Fiegel says it has dramatically cut down on the number of spam registrations on his new site. If user spam registration is an issue you&#8217;re dealing with, consider giving <a href=\"https://wordpress.org/plugins/stop-signup-spam/\">Stop Signup Spam</a> a try.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 May 2017 22:39:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Everything is Hitched\";s:7:\"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=47310\";s:7:\"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:44:\"https://ma.tt/2017/05/everything-is-hitched/\";s: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:184:\"<p><img /></p>\n<blockquote><p>&#8220;When we try to pick out anything by itself, we find it hitched to everything else in the Universe.&#8221;</p></blockquote>\n<p>&#8212; John Muir</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, 08 May 2017 18:29:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"BuddyPress: Largest Turkish Recipe Site Spiced Up with BuddyPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=265777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://buddypress.org/2017/05/largest-turkish-recipe-site-spiced-up-with-buddypress/\";s: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:9626:\"<div><em>This a guest post by Mustafa Uysal (<a href=\"https://profiles.wordpress.org/m_uysl\">m_uysl</a>). He is from Turkey and works as a full-stack developer at <a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri.com</a>.</em></div>\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a></p>\n<p><img class=\"alignnone size-large wp-image-265785\" src=\"https://buddypress.org/wp-content/uploads/1/2017/05/nefis-yemek-tarifleri-1024x805.jpg\" alt=\"nefisyemektarifleri site\" width=\"700\" height=\"550\" /></p>\n<p><a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri.com</a> is the largest Turkish recipe sharing platform in the world. It has more than 290,000 recipes that reach millions of users every single day. <a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri</a> is a unique platform that uses WordPress and BuddyPress for all its applications &#8212; desktop, mobile web, Android, iOS, and AndroidTV.</p>\n<p><strong>Current status:</strong></p>\n<ul>\n<li>290k+ recipes, <code>~500</code> new recipes from different authors per day</li>\n<li><code>~2.2M+</code> registered users with <code>~2.6M</code> xprofile_data, 24M+ usermeta</li>\n<li><code>~4M</code> native apps download, <code>~1M</code> active usage</li>\n<li><code>~100TB</code> CDN BW usage per month</li>\n<li>3M+ BuddyPress activities and <code>~4M+</code> notifications</li>\n<li>300k+ search requests per day</li>\n</ul>\n<p>We use <a href=\"https://uysalmustafa.com/2016/04/12/how-to-scale-10m-search-request-with-elasticpress/\">ElasticPress to handle 10M+ requests</a>. To scale this platform, we use various tools which we <a href=\"https://stackshare.io/nefisyemektarifleri-com/nefisyemektarifleri\">share at Stackshare</a>. We share some of our stats on Twitter <a href=\"https://twitter.com/search?q=nytstats&src=typd\">#nytstats</a>.</p>\n<h2>BuddyPress for a Growing User Base</h2>\n<p>NefisYemekTarifleri.com is turning 10 years old this August and has been using BuddyPress for the last 5 years. According to my boss, “BuddyPress has helped a lot to increase our user base.”</p>\n<p>Our platform is community-driven, i.e., all the recipes come from our users. The membership and number of recipes submitted have increased dramatically since we started using BuddyPress. The users feel more welcome because they have their &#8220;own space&#8221; where they can easily add their avatars, cover images, post their recipes, and share other social media links. BuddyPress has enabled users to engage more with other registered members as well as invite new users to the site. Our editorial team spends a majority of their time editing user recipe submissions.</p>\n<p>Currently, we are using all BuddyPress core components except Friends and Groups. Thankfully, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>‘s <a href=\"https://wordpress.org/plugins/buddypress-followers/\">BuddyPress Followers</a> plugin is a great replacement to the built-in Friends component.</p>\n<h2>Customized BuddyPress Features</h2>\n<h3>Notifications</h3>\n<p>Our notification system is quite different from the standard BuddyPress notifications. It supports push and web push notifications and works async over the message queue.</p>\n<p><img class=\"alignnone size-large wp-image-265786\" src=\"https://buddypress.org/wp-content/uploads/1/2017/05/nyt-notification-1024x512.jpg\" alt=\"Site notifications schema\" width=\"700\" height=\"350\" /></p>\n<p>There are a lot of activities which can trigger notifications. There were and are many instances when we send notifications to tens of thousands users every day. For example, when one author with thousands of &#8220;followers&#8221; publishes a new recipe, it took a long time to send a simple notification like, “Hi there! Jane Doe published a new recipe, take a look!” Consider when we have 10 authors with many followers publishing new recipes at the same time.</p>\n<p>In the early days, we created a custom `nyt_bp_add_notification` script which called BuddyPress’ own notification that added a function for bulk messaging. We found out that it was causing lags on our slave MySQL servers because the impact on the disk IO was dramatic. Our solution was a new custom script, `nyt_bp_add_bulk_notification`, which inserts data directly to database (as a bulk SQL query). By the way, we highly recommend Percona’s <a href=\"https://www.percona.com/doc/percona-monitoring-and-management/index.html\">PMM</a> for catching performance hogs.</p>\n<p>At the end of 2016, we migrated from parse.com to our <a href=\"https://github.com/parse-community/parse-server\">self hosted parse</a> for push notifications. After which, we used <a href=\"https://github.com/web-push-libs/web-push-php\">web-push-php</a> for the web push notifications.</p>\n<h3>Cover Image</h3>\n<p>We decided to replace the built-in cover image feature and create our own Facebook-inspired UI which was more user-friendly. The feedback has been quite positive from our members.</p>\n<p><img src=\"https://uysalmustafa.files.wordpress.com/2017/04/cover-image.gif\" width=\"981\" height=\"398\" alt=\"New cover image UI\" class=\"alignnone size-large\" /></p>\n<p>Features of our new cover image UI:</p>\n<ul>\n<li>A user can directly upload a cover image by clicking on an icon on top of the cover image area.</li>\n<li>The full-size image is saved behind the scenes.</li>\n<li>Quick image resizing after the image upload has completed.</li>\n<li>A user can change image position via drag-drop.</li>\n<li>The full path and image coordinates are recorded as meta.</li>\n</ul>\n<h3>Messages</h3>\n<p>The Messaging component is active but not fully open for the end users. We will make this available for everyone when we&#8217;ve completed our mobile app integration. This is how we are setting this up for our site:</p>\n<ul>\n<li>All messages have to be between two people, we canceled group messaging.</li>\n<li>When someone you are not following sends a message, that message is marked as “pending”. You also &#8220;block&#8221; that person.</li>\n<li>Fluent messaging: all conversations between two people use the same thread.</li>\n</ul>\n<h2>Workarounds/Hacks/Yikes!</h2>\n<p><strong>Cache:</strong> We hated touching BuddyPress directly, but we had to hack core file to fix memory issues.  (We have submitted <a href=\"https://buddypress.trac.wordpress.org/attachment/ticket/7130/7130.diff\">a patch </a>that reduces memory usage for <a href=\"https://buddypress.trac.wordpress.org/ticket/7130\">BP#7130</a>)</p>\n<p><strong>Messaging, reimagined</strong>: We made some necessary changes a bit in a hacky way on the messaging component. Changing messaging behavior was not easy and there are some edge cases we have to monitor and address.</p>\n<p><strong>Limit notifications</strong>: Only allow 200 notifications per user, WordPress’ cron cleans up on a daily basis.</p>\n<p><strong>API Endpoints</strong>: We had to be careful on managing API endpoints, addressing the mobile apps a bit differently than web, especially when you do caching inside the device.</p>\n<p><strong>Long-running process</strong>: MQ workers are long-running PHP scripts and they caused memory problems on production after a while. We fixed this issue with <a href=\"https://github.com/10up/ElasticPress/blob/157e65b112d90bcc15e532dc33f86592805cdb13/bin/wp-cli.php#L795\">stop_the_insanity</a>.</p>\n<h2>In the Works</h2>\n<p>Following are some of the features we have in queue:</p>\n<ul>\n<li>Upgrading BuddyPress, of course</li>\n<li>Elasticsearch integration over ElasticPress. (We haven&#8217;t tried it yet but <a href=\"https://github.com/swissspidy\">Pascal</a> already wrote <a href=\"https://github.com/swissspidy/wptalents/blob/feature/buddypress-integration/classes/core/ElasticPress.php\">some code</a> we can start playing with.)</li>\n<li>User suggestion to follow a member.</li>\n<li>Activity improvements (currently, just acting like feed).</li>\n<li>PHP 7.1 upgrade with dockerizing all the things. (Still using different versions of PHP)</li>\n</ul>\n<p>BuddyPress allows us to build one of the largest niche communities in the world. Fortunately for everyone, BuddyPress is being maintained by developers who are active contributors to WordPress core. Our thanks to all BuddyPress contributors, especially the BP core team.</p>\n<div><img class=\"alignleft size-full wp-image-265793\" src=\"https://buddypress.org/wp-content/uploads/1/2017/05/m_uysl.jpeg\" alt=\"Mustafa Uysal\" width=\"150\" height=\"150\" /> <em><a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a> of <a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri.com</a> also runs his own company, <a href=\"http://skop.com.tr/\">SKOP</a>. He&#8217;s a plugin developer who enjoys solving tough problems and making things faster and scalable. He’s also a workaholic and was interested in archery <a href=\"https://uysalmustafa.com/2015/10/14/im-an-archer/\">once upon a time</a>. Mustafa is one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=tr_TR\">WordPress Translation Editors</a> for the Turkish language.<br />\nLinks: <a href=\"https://twitter.com/m_uysl\">Twitter</a>, <a href=\"https://github.com/mustafauysal\">Github</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">WordPress.org</a>, <a href=\"https://www.linkedin.com/in/uysalmustafa/\">Linkedin</a>, <a href=\"https://www.instagram.com/m_uysl/\">Instagram</a>, <a href=\"https://uysalmustafa.com/\">My Blog</a>, and <a href=\"http://www.nefisyemektarifleri.com/u/mustafauysal/hakkinda/\">nefisyemektarifleri</a></em></div>\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:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 May 2017 16:55:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"HeroPress: TOMORROW is the last day to apply!\";s:7:\"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:29:\"https://heropress.com/?p=1792\";s:7:\"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:\"https://heropress.com/tomorrow-last-day-apply/?utm_source=rss&utm_medium=rss&utm_campaign=tomorrow-last-day-apply\";s: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:2668:\"<img width=\"960\" height=\"639\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/ipad-uandr-1-1024x682.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Two hands holding an ipad so we can see the screen.\" /><p>Tomorrow is the last day to apply for the <a href=\"https://heropress.com/up-running-scholarship-heropress-wpshout/\">The Up and Running Scholarship, from HeroPress and WPShout</a>! Once the entry time is closed then we&#8217;ll package up the submissions and send them to the judging panel.</p>\n<p>NO SUBMISSIONS WILL BE ACCEPTED after 23:59:59 UTC 09 May.</p>\n<p>If you&#8217;ve been waiting to apply, don&#8217;t wait any more!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: TOMORROW is the last day to apply!\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=TOMORROW%20is%20the%20last%20day%20to%20apply%21&via=heropress&url=https%3A%2F%2Fheropress.com%2Ftomorrow-last-day-apply%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: TOMORROW is the last day to apply!\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ftomorrow-last-day-apply%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Ftomorrow-last-day-apply%2F&title=TOMORROW+is+the+last+day+to+apply%21\" rel=\"nofollow\" target=\"_blank\" title=\"Share: TOMORROW is the last day to apply!\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/tomorrow-last-day-apply/&media=https://heropress.com/wp-content/uploads/2017/04/ipad-uandr-1-150x150.png&description=TOMORROW is the last day to apply!\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: TOMORROW is the last day to apply!\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/tomorrow-last-day-apply/\" title=\"TOMORROW is the last day to apply!\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/tomorrow-last-day-apply/\">TOMORROW is the last day to apply!</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Mon, 08 May 2017 13:28:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Weglot Multilingual Plugin Closes $450K in Seed Funding\";s:7:\"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:29:\"https://wptavern.com/?p=69667\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/weglot-multilingual-plugin-closes-450k-in-seed-funding\";s: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:3879:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/10/weglot.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://weglot.com/\" target=\"_blank\">Weglot</a>, a multilingual plugin which has been in the WordPress market for a little over a year, has <a href=\"http://blog.weglot.com/7k-21keuromonthly-6months-growth-e450k-fundraising/\" target=\"_blank\">closed $450K in seed funding from SIDE Capital</a>. Co-founder Rémy Berda reports that there are now more than 10,000 websites using Weglot and the company has passed 30K€ in monthly revenue.</p>\n<p>Over the past six months Berda and his small team have been working to add improvements based on user feedback. Weglot will now detect a visitor&#8217;s language and automatically redirect to serve the translated page. Weglot users can also connect with <a href=\"https://www.textmaster.com/\" target=\"_blank\">Textmaster</a>&#8216;s marketplace to order professional translations through their accounts. The support burden has also increased from 10-20 emails per day to more than 80 per day, challenging the small team&#8217;s resources.</p>\n<p>&#8220;Over the past few months, we started to be overworked by the amount of support or the number of features we wanted to add to the product,&#8221; Berda said. &#8220;We got a bit frustrated not to be able to improve the product as we wanted to through lack of time. So we understood that if we wanted to keep growing at a fast pace, we would need to scale up our two-person company and raising money was the perfect way to do it.&#8221;</p>\n<p>After making the connection with SIDE Capital at the end of 2016, Weglot decided to partner with them to fund the further expansion if its support team. The team is currently comprised of two founders, one lead developer, one head of support, and one support agent. Approximately 1,500 of Weglot&#8217;s 10,000 users are on an active paid plan, but the remaining 85% of free users make up a significant portion of the support load. Berda said they are investing their resources in support, which serves both free and paid users, in order to maintain the same quality.</p>\n<p>In tandem with improving the performance of the plugin and its support, Berda said the team is also developing other integrations to test Weglot&#8217;s service outside of the WordPress market.</p>\n<p>Weglot is growing rapidly in the North American market. Although the Asian market is not represented on the plugin&#8217;s user breakdown below, Berda said it has more than doubled in the past two months.</p>\n<p>&#8220;We have been seeing an accelerating growth in the Americas in the past 6 months,&#8221; Berda said. &#8220;We went from 5% of our clients to 25% now. Asia is still small but has been quickly growing in the past two months from 3% to 8%.&#8221;</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/05/weglot-users-countries-breakdown.png?ssl=1\"><img /></a></p>\n<p>One year after officially launching Weglot, Berda and his team have found that WordPress is a ripe market for entrepreneurs who are ready to move quickly and provide a high level of customer service. His advice to newcomers?</p>\n<p>&#8220;You&#8217;re in the right place,&#8221; Berda said. &#8220;WordPress is a huge market with real needs, and it is often overlooked by many entrepreneurs. There is an active and strong community with &#8216;caring&#8217; values.  So WordPress is definitely a great place to build a business.&#8221; He recommends keeping to a brisk timeline:</p>\n<p>&#8220;One month after you have the idea, you must have some people (1 to 10) testing a MVP,&#8221; Berda said. &#8220;One more month later, you must have your first paying customer to validate the needs. Finally, never neglect customer support. Done carefully, customer supports transforms into customer acquisition.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 May 2017 20:13:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: WordPress 4.8 Release Targeted for June 8\";s:7:\"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:29:\"https://wptavern.com/?p=69778\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/wordpress-4-8-release-targeted-for-june-8\";s: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:2349:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/gutenberg-editor.png?ssl=1\"><img /></a></p>\n<p>WordPress 4.8 kicked off in this week&#8217;s core developer meeting and the <a href=\"https://make.wordpress.org/core/4-8/\" target=\"_blank\">schedule</a> for the upcoming release is now published. Beta 1 is scheduled for May 12 and the official release is targeted for June 8. This will be the first major release in 2017 and is focused on laying the foundation for the new <a href=\"https://github.com/WordPress/gutenberg\" target=\"_blank\">Gutenberg</a> editor. The schedule identifies the features that contributors are aiming to ship in 4.8:</p>\n<ul>\n<li>TinyMCE inline element / link boundaries</li>\n<li>New media widgets</li>\n<li>WYSIWYG in text widget</li>\n<li>WordCamp / meetup dashboard upgrade to the “news” section</li>\n</ul>\n<p>Several contributors expressed concern during the meeting about the compressed timeline, as both the beta and RC testing times have roughly half the time they have been given in the past. Also, the release&#8217;s close proximity to WordCamp Europe, which officially begins activities the following week, presented additional concerns about the added workload of a release within the May/June timeframe.</p>\n<p>&#8220;I think people are thinking of this as a normal release, a train leaving the station that a bunch of stuff (multisite! meta!) has to get on to make it in,&#8221; 4.8 release lead Matt Mullenweg said. &#8220;I agree that needs a much longer timeframe.</p>\n<p>&#8220;What is really going on is that we have a few simple, already working as plugin enhancements that add a few files, and we want to get those in the hands of users sooner rather than later. We already update TinyMCE all the time. Potential breakage or compatibility should be limited to things that interact with the text widget or the news dashboard module.&#8221;</p>\n<p>After a brief discussion on the <a href=\"https://make.wordpress.org/core/2017/05/04/dev-chat-summary-may-3rd-4-8-week-1/\" target=\"_blank\">dev meeting notes</a>, the proposed schedule was confirmed. The feature project merge deadline is coming up on May 10, followed by Beta 1 two days later. Any enhancements that are not ready to proceed on this timeline will be put on hold for a future release.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 May 2017 18:13:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: WPHugs: A Community Devoted to Educating, Discussing, and Raising Awareness of Mental Health\";s:7:\"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:29:\"https://wptavern.com/?p=69625\";s:7:\"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:110:\"https://wptavern.com/wphugs-a-community-devoted-to-educating-discussing-and-raising-awareness-of-mental-health\";s: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:3983:\"<p>In the past two years, there has been an increased effort in the WordPress community to raise awareness of mental health. <a href=\"http://wordpress.tv/2016/12/10/cory-miller-managing-your-iceberg/\">Cory Miller</a>, <a href=\"https://videopress.com/v/n53MNL3C\">Rich Robinkoff</a>, <a href=\"https://videopress.com/v/fBYZcOBz\">Michele Butcher</a>, and <a href=\"https://wphugs.org/talks/\">others</a> have presented on the subject at numerous WordCamps.</p>\n<p>A common theme that surrounds mental health is the fear of discussing it openly. <a href=\"https://wphugs.org/\">WPHugs.org</a>, a passion project by Leo Gopal, aims to provide a safe space for people to connect, educate, and raise awareness of mental health.</p>\n<p>&#8220;I suffered many times in my life so far with extreme depression,&#8221; Gopal said. &#8220;One of the most difficult parts of dealing with extreme depression is the feeling that you can&#8217;t tell anyone about it. This can include your boss or colleagues who you spend most of your time with.&#8221;</p>\n<p>&#8220;Until, at <a href=\"https://videopress.com/v/dhGqDhV5\">WordCamp Cape Town 2016</a>, I stood in front of a conference room full of people and &#8216;confessed&#8217; that I am afflicted with depression. After the talk, many people came to me and called me &#8216;brave&#8217; to be so open, and many opened up and thanked me for helping them realize that they too are not alone.</p>\n<p>&#8220;After my recovery from attempted suicide, it was the friends I had made in the WordPress Community that gave me the most support. I reached my darkest point, and I got there feeling alone. WPHugs hopes to be a torch that allows others to never get to such a space.&#8221;</p>\n<p>WPHugs has a <a href=\"https://wphugs.org/wp-login.php?action=slack-invitation\">Slack group</a> that&#8217;s free to join that provides an opportunity for like-minded people to discuss topics in real-time. While the conversations in the Slack channel are not private, Gopal is hopeful that the community will be built around trust and honesty.</p>\n<p>&#8220;I suspect that there will be more direct messages than there will be channel messages, and that&#8217;s okay, the connections are being made, we are talking more,&#8221; he said.</p>\n<p>WPHugs is a not-for-profit passion project and although the site has <a href=\"https://wphugs.org/sponsorships/\">sponsorship opportunities</a> available, Gopal is looking for companies and people who can contribute time and resources.</p>\n<p>&#8220;If companies want to contribute licenses to their software to help expand, grow, reach more people, by all means it is completely welcome,&#8221; Gopal said. &#8220;Sponsor time or resources, whatever you can to make this project thrive and survive, because it&#8217;s important, it could save someone&#8217;s life.&#8221;</p>\n<p>Gopal admits he&#8217;s not an authority on how to maintain good mental health but plans to crowdsource tips, tricks, and host conversations to help others. Heavily inspired by <a href=\"http://heropress.com/\">HeroPress</a>, Gopal wants to publish weekly essays called Mental Health War Stories.</p>\n<p>The most important message WPHugs wants to get across is that people who are suffering from mental illnesses are not alone.</p>\n<p>&#8220;It&#8217;s about making us aware of ourselves, taking care of our own mental health and how important it is for those around us. It&#8217;s also about being more empathetic for those around us who suffer in their own way and know that someone cares,&#8221; Gopal said.</p>\n<p>&#8220;I went through a struggle discovering my mental illness and learning about it, and I did it alone. I don&#8217;t want that journey for others to be as solitary. I am a hugger.&#8221;</p>\n<p>To share a mental health war story or to get involved with the project, you can get in touch with Gopal through the WPHugs <a href=\"https://wphugs.org/contact/\">contact form</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 May 2017 02:39:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: WordPress Security Issue in Password Reset Emails to Be Fixed in Future Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=69665\";s:7:\"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:100:\"https://wptavern.com/wordpress-security-issue-in-password-reset-emails-to-be-fixed-in-future-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4135:\"<p>Security researcher Dawid Golunski of <a href=\"https://legalhackers.com/\" target=\"_blank\">Legal Hackers</a> has published the details of an <a href=\"https://exploitbox.io/vuln/WordPress-Exploit-4-7-Unauth-Password-Reset-0day-CVE-2017-8295.html\" target=\"_blank\">unauthorized password reset vulnerability</a> in WordPress core. Golunski demonstrated how, under certain circumstances, an attacker could intercept the password reset email and gain access to a user&#8217;s account.</p>\n<p>His proof of concept takes advantage of WordPress using the SERVER_NAME variable to get the hostname of the server in order to create a From/Return-Path header of the outgoing password reset email.</p>\n<blockquote><p>Major web servers such as Apache by default set the SERVER_NAME variable using the hostname supplied by the client (within the HTTP_HOST header):</p>\n<p>https://httpd.apache.org/docs/2.4/mod/core.html#usecanonicalname</p>\n<p>Because SERVER_NAME can be modified, an attacker could set it to an arbitrary domain of his choice e.g:</p>\n<p>attackers-mxserver.com</p>\n<p>which would result in WordPress setting the $from_email to </p>\n<p>wordpress@attackers-mxserver.com</p>\n<p>and thus result in an outgoing email with From/Return-Path set to this malicious address.</p></blockquote>\n<p>The results of this particular attack would depend on the server environment, the specific configuration of the mail server, and in some cases would require interaction from the user in question. Golunski&#8217;s <a href=\"https://exploitbox.io/vuln/WordPress-Exploit-4-7-Unauth-Password-Reset-0day-CVE-2017-8295.html\" target=\"_blank\">report</a> has a more specific breakdown of the possible methods that could be employed.</p>\n<p>After reporting the issue to the WordPress security team in July 2016 and also via the HackerOne website, Golunski saw no progress on it and decided to release the vulnerability details to the public.</p>\n<p>Although there is no official patch yet, WordPress Security Czar Aaron Campbell said the issue is not quite as severe as it may seem.</p>\n<p>&#8220;It&#8217;s a lower priority issue, but we are aware of it and it is in our queue to address,&#8221; Campbell said. He explained the unique set of conditions that would be required in order for this to be a serious vulnerability.</p>\n<p>&#8220;In order for the issue to have a security impact, a server needs to allow a user-supplied header to overwrite <code>$_SERVER[\'SERVER_NAME\']</code>,&#8221; Campbell said. &#8220;We would consider that a poor server configuration (like leaving <code>display_errors</code> on on a production server), which is unfortunately outside our control.&#8221;</p>\n<p>Campbell tested his personal Apache and nginx servers and none of them allowed for this. In addition to having a poorly configured server, Campbell said one of the following actions also needs to happen:</p>\n<ul>\n<li>a user needs to reply to a password reset email</li>\n<li>an auto-reply needs to reply to the E-Mail and include the original</li>\n<li>an E-Mail server has to be compromised or overloaded and the message returned to sender with content intact</li>\n</ul>\n<p>&#8220;If your server is susceptible and you don&#8217;t have the ability to fix the actual server configuration, you still don&#8217;t have to make changes to WordPress files to mitigate the issue,&#8221; Campbell said. &#8220;A little PHP like this in a plugin will set the from E-Mail to a static E-Mail address of your choice:&#8221;</p>\n<p><code>add_filter( \'wp_mail_from\', function( $from_email ) { return \'wordpress@mysite.com\'; } );</code></p>\n<p>Campbell said any changes WordPress makes to core will likely be done via a <a href=\"https://core.trac.wordpress.org/ticket/25239\" target=\"_blank\">ticket</a> that is currently tracking the issue from a non-security perspective. He said a fix is mostly likely not going to be coming in the next security release, but the team is actively working on it. If they find a good mitigation for the issue, Campbell said they will share it once they have worked through all the potential ramifications.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 May 2017 22:41:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WordPress Community Team Considers New Retreat-Style WordCamp\";s:7:\"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:29:\"https://wptavern.com/?p=69642\";s:7:\"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:\"https://wptavern.com/wordpress-community-team-considers-new-retreat-style-wordcamp\";s: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:3741:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/journey.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/2DEL42UQ7M\">Jesse Bowser</a>\n<p>The WordPress Community Team is <a href=\"https://make.wordpress.org/community/2017/05/03/a-new-type-of-wordcamp/\" target=\"_blank\">debating the merits of a new type of WordCamp</a>, a hybrid event with the traditional WordCamp content in a retreat-style format. <a href=\"https://profiles.wordpress.org/mahype/\" target=\"_blank\">Sven Wagener</a> and the <a href=\"https://www.meetup.com/WordPress-Meetup-Koln/\" target=\"_blank\">Köln meetup group</a> in Germany, which has more than 700 members, have proposed a new style of camp that would potentially be called &#8220;WordCamp in the Green&#8221; or &#8220;WordCamp Retreat.&#8221;</p>\n<p>The event would be held outside of town at a venue where all attendees stay in the same hotel. In addition to the regular WordCamp sessions and Contributor Day, attendees have the opportunity to participate in local outdoor activities.</p>\n<p>The WordPress Community Team is open to considering different formats for WordCamps that serve a specific niche. <a href=\"https://wptavern.com/wordcamp-for-publishers-to-be-held-in-denver-august-17-19\" target=\"_blank\">WordCamp for Publishers</a>, the first WordCamp focused around a specific topic, is a recent example of this flexibility.</p>\n<p>The proposed format is very similar to the interest-based meetups that the <a href=\"https://wptavern.com/community-translation-and-wapuu-how-japan-is-shaping-wordpress-history\" target=\"_blank\">Japanese WordPress community</a> has been doing for years. Members spend time together in activities unrelated to WordPress, as opposed to simply focusing on improving technical skills, and as a result they become more connected with their local community. For example, the <a href=\"http://2014onsen.wbsendai.com/\" target=\"_blank\">Word温泉 (WordOnsen) meetup</a> includes members who enjoy hot springs. They gather in Fukushima where they stay at the same hotel, host WordPress sessions, and end with a party night. This format has successfully grown the Japanese meetup community to more than 50 local groups.</p>\n<p>The Köln meetup group&#8217;s proposal for a WordCamp doesn&#8217;t stray too far from the traditional WordCamp program, as the only differences seem to be a more rural setting where everyone stays at the same venue. A more radical change would be an event where WordPress community members meet simply for networking and connecting with no planned educational component. These types of niche unofficial WordCamps have been happening for years outside of the WordPress-sanctioned events.</p>\n<p>The WordPress Community Team is seeking feedback on the proposed &#8220;WordCamp Retreat,&#8221; as approval of the event would set a precedent.</p>\n<p>&#8220;If we introduce a new type of WordCamp event like this, we want it to be something that works in many communities, scales effectively for larger (or smaller) groups, and is able to be reproduced by any organizers who wish to do so,&#8221; Commnity Team member Hugh Lashbrooke said.</p>\n<p>The organizing team for the proposed WordCamp has already prepared a budget and is ready to move forward once given approval. Lashbrooke said the Community Team anticipates the new event types will have &#8220;a huge amount of interest from other communities around the world,&#8221; so they wanted to pitch it to the community for feedback.</p>\n<p>If you have strong opinions on the topic, you can <a href=\"https://make.wordpress.org/community/2017/05/03/a-new-type-of-wordcamp/\" target=\"_blank\">join the discussion 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:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 May 2017 02:05:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: WPWeekly Episode 271 – Recapping WordCamp Chicago 2017 With John James Jacoby\";s:7:\"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:58:\"https://wptavern.com?p=69622&preview=true&preview_id=69622\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/wpweekly-episode-271-recapping-wordcamp-chicago-2017-with-john-james-jacoby\";s: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:2066:\"<p>In this episode, I&#8217;m joined by <a href=\"https://jjj.blog/\">John James Jacoby</a>. We recap WordCamp Chicago 2017 and learn about what he&#8217;s been up to as of late. Jacoby was recently elected as a trustee by the Village of East Troy, WI. We discussed what lessons he&#8217;s learned through open source software development that he&#8217;ll apply to his Trustee role.</p>\n<p>We talk about how important mental health is and near the end of the show, he provides status updates on the bbPress and BuddyPress projects. Jacoby also weighed in on the stories making headlines in recent weeks.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/shopify-discontinues-its-official-plugin-for-wordpress\">Shopify Discontinues Its Official Plugin for WordPress</a><br />\n<a href=\"https://wptavern.com/wordcamp-us-2017-ramps-up-ticket-sales-organizers-plan-for-2500-attendees\">WordCamp US 2017 Ramps Up Ticket Sales, Organizers Plan for 2,500 Attendees</a><br />\n<a href=\"https://wptavern.com/automattic-to-close-san-francisco-office\">Automattic to Close San Francisco Office</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-will-end-support-for-internet-explorer-versions-8-9-and-10\">WordPress 4.8 Will End Support for Internet Explorer Versions 8, 9, and 10</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 10th 3:00 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\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener noreferrer\">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\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #271:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 May 2017 00:26:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Exploiting Democracy\";s:7:\"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=47306\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2017/05/exploiting-democracy/\";s: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:153:\"<p>One of my favorite talks from TED last week was by Laura Galante. The most hackable device on the planet is your own mind:</p>\n<p></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:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 May 2017 19:48:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Jetpack 4.9 Introduces EU Cookie Law Banner Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=69520\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/jetpack-4-9-introduces-eu-cookie-law-banner-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2298:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/eu-cookie-law-banner-widget-jetpack.png?ssl=1\"><img /></a><a href=\"https://jetpack.com/2017/05/02/jetpack-4-9-widgets-and-improvements/\" target=\"_blank\">Jetpack 4.9</a> gives self-hosted WordPress users access to some of the widgets that are available on WordPress.com. One of the most useful ones for European websites is the new EU Cookie Law Banner widget. The WordPress plugin directory has <a href=\"https://wordpress.org/plugins/search/eu+cookie+law/\" target=\"_blank\">dozens of plugins related to cookie consent</a>, but Jetpack users can now get this feature bundled with the popular plugin.</p>\n<p>The widget launches a notice at the bottom of the screen where users can click to accept cookies. The widget banner text, color scheme, policy URL, and button text can be customized, and administrators can hide the banner based on different user behaviors.</p>\n<p>The EU Cooke Law is an online privacy directive that was introduced in 2011 with the objective of allowing website visitors the right to refuse cookies that reduce their privacy. Sites that serve primarily EU audiences are required to comply. Companies in the U.S. and outside the EU with no legal EU presence are not likely to have any consequences for not complying, as the law is difficult to enforce outside the EU.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/internet-defense-league-red-cat.png?ssl=1\"><img /></a>Jetpack 4.9 also adds a new Flickr widget and one for the <a href=\"https://www.internetdefenseleague.org/\" target=\"_blank\">Internet Defense League</a>, an organization dedicated to defending internet freedom. The widget lets users select from three different badges to show support. Note that this widget does not sign the website up to broadcast specific campaigns. That feature is available in the <a href=\"https://wordpress.org/plugins/cat-signal/\" target=\"_blank\">Internet Defense League Cat Signal</a> plugin.</p>\n<p>This release also includes several minor fixes and improvements under the hood. Check out the full <a href=\"https://wordpress.org/plugins/jetpack/#developers\" target=\"_blank\">changelog</a> on WordPress.org to see everything included in version 4.9.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 May 2017 17:55:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Manage Multiple Social Media Accounts in WordPress With Social Media Suite\";s:7:\"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:29:\"https://wptavern.com/?p=69526\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/manage-multiple-social-media-accounts-in-wordpress-with-social-media-suite\";s: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:2613:\"<p>Managing social media accounts across multiple networks can be a cumbersome task. <a href=\"https://wordpress.org/plugins/social-web-suite/\">Social Media Suite</a> by <a href=\"https://www.linkedin.com/in/tinatodorovic/\">Tina Todorovic</a> and <a href=\"https://twitter.com/dejanmmarkovic\">Dejan Markovic</a>, based in Toronto, Canada, aims to make managing those accounts a breeze.</p>\n<p>At its core, Social Media Suite is a social media marketing management platform. To use it, you&#8217;ll first have to install the <a href=\"https://wordpress.org/plugins/social-web-suite/\">Social Media Suite connector Plugin</a> to connect your site to the service.</p>\n<p>Once activated, click the Go to Control Panel button which loads Social Web Suite&#8217;s control panel where you can connect social media accounts.</p>\n<p><img /></p>\n<p>I highly recommend that you open the control panel in a new browser tab as opening it in the same browser tab makes it difficult to browse back to the WordPress backend.</p>\n<p>Through Social Web Suite, users can publish or schedule Tweets and other messages across social networks such as Facebook. After connecting my Twitter account, I was able to publish a Tweet from the site&#8217;s interface.</p>\n<img />Social Media Suite Twitter Interface\n<p>Social Web Suite includes a number of sharing options. You can configure whether or not to share posts, pages, or both, how many times they can be shared, if the featured image is displayed, and if content is shared at the same time it&#8217;s published.</p>\n<p>Other configuration options include, message formatting, hashtag support, which categories to include or exclude, and the ability to exclude specific pages or posts.<img /></p>\n<p>To see how well messages are performing, Social Web Suite offers an analytics dashboard that displays a similar set of statistics provided by Twitter. This allows you to quickly see which messages are having the most impact.</p>\n<img />Social Media Suite Analytics Dashboard\n<p>As far as privacy is concerned, Social Media Suite stores marketing management content on its servers and will not ask users for their login information. The service is currently in Beta and is available by <a href=\"https://socialwebsuite.com/get-your-invitation/\">invitation only</a>. I tested <a href=\"https://wordpress.org/plugins/social-web-suite/\">Social Media Suite</a> on WordPress 4.7.4 and didn&#8217;t encounter any issues. If you&#8217;re looking for a service to manage your social media marketing strategy, consider giving Social Media Suite a try.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 May 2017 16:09:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"HeroPress: Notes From My Former Self\";s:7:\"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:56:\"https://heropress.com/?post_type=heropress-essays&p=1759\";s:7:\"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:124:\"https://heropress.com/essays/notes-from-my-former-self/?utm_source=rss&utm_medium=rss&utm_campaign=notes-from-my-former-self\";s: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:11029:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/050317-min-1-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Sleep more, worry less, rely on those around you, and just get on with doing what you do best.\" /><p>I’ve written and rewritten this essay so many times now I’ve forgotten what it originally looked like. In the beginning it was going to be the short(ish) story of my first year with WordPress and the lessons I’ve learned about myself. It always ends up being a long and boring story of a year of my life without ever getting to the purpose of why I want to share it. I’ve decided to over simplify it as much as possible, in order to get to the ‘why’. If you really want to read about my ‘WordPress Year 1’ you can probably put most of it together from reading my blog for 2016.</p>\n<p>So in the spirit of TL;DR:</p>\n<p>After an amazing first WordCamp experience at WordCamp Cape Town 2015 I chose the path of freelance WordPress developer. My current situation doesn&#8217;t lend itself to being employed full time and I decided (at the time possibly stupidly) that building WordPress websites was what I was going to do. It would be easy right?</p>\n<blockquote><p>I had a developer license for the Divi theme and all I had to do was find small business clients to build websites for. What could possibly go wrong?</p></blockquote>\n<p>I spent the first year banging my head against a quite a few walls, trying to expand my mind, my skills and my experience to reach a goal that, for me anyway, was wholly unobtainable. In the end I realised the what I needed to do was trust in myself and my experience, find a better system for obtaining work and focus on the areas that I was actually good at.</p>\n<p>I also learned the importance of community.</p>\n<p>What follows are the notes I would send to myself, were I able to send a time capsule back one year, to be read on January 1, 2016. Hopefully it helps someone else out there.</p>\n<h3>The WordPress community is an amazing thing.</h3>\n<p>I’ve often said that the reason everyone in the community is (mostly) so open and welcoming and helpful is that it was founded in the spirit of open source. Open source software at it’s core is about being free, open and available, the ability to question a specific solution and find answers to problems and being able to extend and adapt to new requirements. The WordPress community is that in spades. Sure, there are some aspects of it that can get brutal or nasty, sometimes some parts of the community feel unheard or ignored and when I read about things like that it makes me sad. In my experience it has been a positive part of my journey.</p>\n<blockquote><p>From the local WordPress South Africa Slack team, to the two WordCamps in Cape Town and Johannesburg I attended this year, all the way to the international Slacks, forums and Facebook groups, almost everyone I’ve dealt with is positive and supportive.</p></blockquote>\n<p>I’ve contacted CEOs and owners of premium WordPress business, asking them questions via Slack. Every time they answered. In what corporate culture does the owner or CEO of a company take time to answer some random developer question? I’ve met some amazing people, locally and internationally, in person and online, and they have all been the same. Friendly, helpful and willing to answer questions. I can honestly say that without the help and support of the WordPress community I would have been able to make it ‘on my own’ last year.</p>\n<h3>Being a freelancer is more about finding your purpose and less about finding clients.</h3>\n<p>I spent the majority of 2016 trying to force myself down a new path. One where I had little or no experience and where I was surrounded by giants. My gut told me that clients would be looking for websites. So building websites with WordPress became the logical step. However I am not a web designer, a content strategist or an SEO expert. In the words of Jeremy Clarkson, ‘How hard can it be?’. I soon learned how hard. While it is good to try and expand on your weaknesses, trying to earn an income this way is eventually going to kill you. The path to true work/life fulfilment lies at the intersection of that which you love, that which you are good at, that which the world needs and (most importantly) that which you can be paid for (the Japanese call it ‘Ikigai’, roughly translated as ‘a reason for being’).</p>\n<blockquote><p>The biggest mistake I made was thinking that because of WordPress there would be no work for a PHP developer.</p></blockquote>\n<p>I soon learned that the reality was that because of WordPress there was an abundance of work for a PHP developer, I was just looking at it the wrong way. Once I knew what my Ikigai was, finding the right platform and clients to match that became much, much easier.</p>\n<h3>Never judge your experience based on someone else.</h3>\n<p>I’ll be the first to admit, I’m not the most up to date of developers. I only recently really grasped the concepts of name spacing and I still don’t quite get the whole MySQL character set thing. And that is OK. Being a developer is more about solving a problem than the tools you use to do so. There isn’t one ‘right’ way to build a plugin. There are a few recommended ways, which often differ from each other in small but important ways but they are all ‘the right way’. The important thing is to pay attention to things like standards, simplicity and security. Everything else can be learned from others. The beauty of an open source project is that everyone is learning from the community. So whatever I don’t know I can learn from someone else. At the end of the day the community benefits and you benefit. (also, refer back to ‘The WordPress community is an amazing thing’).</p>\n<h3>Look after yourself.</h3>\n<p>These seem obvious, but I soon found myself in some very bad patterns. Sleep was the first to go. It is way too easy to end up working until 1 or 2am, ‘just to get this one thing finished’. That’s great if you can sleep in the next morning, but when you are guaranteed to be woken at around 7am by your 5 year old, it soon starts adding up.</p>\n<blockquote><p>Once the sleep deprivation starts the bad food choices kick in.</p></blockquote>\n<p>Coffee becomes more of a crutch than an enjoyment and meal time decision making is ruled more by what tastes nice than what is healthy. Eventually you end up getting sick for a week and you are so run down you get nothing done until you recover, meaning your earning potential lessens. So you start trying to work longer hours. It is a vicious cycle. The problem, however, is actually a bit deeper&#8230;.</p>\n<h3>Your time is valuable.</h3>\n<p>The quickest way to the downward sleep/life cycle is to devalue yourself and your time.</p>\n<p>Learn to estimate better. Spend more (paid) time on researching the intricacies of a project to ensure you have thought about everything you can, then estimate accordingly. Otherwise you end up realising you missed something half way through, and you have to make a choice. Usually that choice is to suck up the time and add the feature. That is the wrong choice.</p>\n<p>Your time is valuable. It is better to admit to a client that you missed something and that you will need to adjust the time line or quote than to try and kill yourself to make it based on your original estimates. Worse case the client says no and cancels the project. Learn and apply the knowledge to the next one. Better case they agree to give you more time but not more money. Well at least you aren’t going to kill yourself to get it done. Best case they understand everyone is human. I’ve rarely found clients who don’t get it.</p>\n<h3>You are capable.</h3>\n<p>Have you ever experienced this? &#8211; You have a project coming up. You&#8217;ve done all the ground work and made sure you&#8217;ve estimated to the best of your abilities, but suddenly you are gripped with fear/concern/worry that the actual project is going to be above your capabilities. So you keep putting it off and do other less important things, trying to build up the courage to tackle it. When you eventually sit down and start you realise it is well within your capabilities and had you started sooner you would probably be done already, instead of now where you are a bit behind and you&#8217;ll have to either work in some extra time to make that deadline or come up with some excuse as to why you missed it.</p>\n<p>All. The. Damn. Time.</p>\n<p>Stop it. You can do it. You’ve done it a 100 times before. Trust in your experience and yourself.</p>\n<p>So in short, sleep more, worry less, rely on those around you and just get on with doing what you do best. It isn&#8217;t really much simpler than that. I’m still trying to figure out why I tried to make it more complicated than what it is, but perhaps that is another journey in the human psyche, for another day.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Notes From My Former Self\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Notes%20From%20My%20Former%20Self&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fnotes-from-my-former-self%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Notes From My Former Self\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fnotes-from-my-former-self%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fnotes-from-my-former-self%2F&title=Notes+From+My+Former+Self\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Notes From My Former Self\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/notes-from-my-former-self/&media=https://heropress.com/wp-content/uploads/2017/05/050317-min-1-150x150.jpg&description=Notes From My Former Self\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Notes From My Former Self\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/notes-from-my-former-self/\" title=\"Notes From My Former Self\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/notes-from-my-former-self/\">Notes From My Former Self</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 03 May 2017 11:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Akismet: Limited Time 20% Discount off all Jetpack Plans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1931\";s:7:\"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:63:\"https://blog.akismet.com/2017/05/03/discount-off-jetpack-plans/\";s: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:1119:\"<p>As part of #SmallBusinessWeek, Jetpack and Akismet are offering a limited time 20% discount off all Jetpack&#8217;s <a href=\"https://jetpack.com/pricing/\">paid plans</a> &#8212; all of which include the Akismet service as well as other security essentials like automated backups and priority support.</p>\n<p>You can read more about why Akismet and Jetpack are the ideal WordPress plugins for small business websites over on the <a href=\"https://jetpack.com/2017/04/30/jetpack-the-ideal-small-business-plugin/\">Jetpack blog</a>.</p>\n<p>To take advantage of this offer, just use the code <span>SMALLBIZ</span> at checkout, and of course, if you have any questions, please don’t hesitate to <a href=\"https://jetpack.com/contact-support\">contact us</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1931/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1931/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1931&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 May 2017 08:26:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Richard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Seattle to Host WooConf 2017 in October, Conference to Focus on Developers\";s:7:\"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:29:\"https://wptavern.com/?p=69514\";s:7:\"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:\"https://wptavern.com/seattle-to-host-wooconf-2017-in-october-conference-to-focus-on-developers\";s: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:4507:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/05/wooconf.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://wooconf.com\" target=\"_blank\">WooConf</a>, the official WooCommerce developer&#8217;s conference, is returning for its third edition October 19-20, 2017. In line with previous years&#8217; events that were hosted in major U.S. tech hubs (San Francisco and Austin), WooConf 2017 will be held in Seattle. The organizing team, which is made up of almost a dozen people from around the world of WooCommerce, is planning for 500 attendees.</p>\n<p>WooCommerce downloads have doubled from 12 million in 2016 to 24 million today. The plugin is active on more than 3 million websites and has a strong third-party plugin and theme ecosystem contributing to its growth.</p>\n<p>This year&#8217;s speaker lineup will feature more than 30 sessions aimed at developers, along with hands-on workshops. Organizers announced the event with a note that this edition of WooConf will cater specifically to developers:</p>\n<blockquote><p>Anyone who runs their business with WooCommerce will enjoy WooConf. However, we’re building out this year’s speaker list and workshops to appeal mainly to freelancers, agencies, WooExperts, and other developers working with WooCommerce on a daily basis.</p>\n<p>This includes anyone writing code, designing websites, or working with clients as a project manager or business owner. It also includes those of you who design, customize, and write code for your own store (or lend your services to a friend now and then).</p></blockquote>\n<p>Last year&#8217;s conference in Austin included content for both store owners and developers, and attendees were a mixture of experts and casual WooCommerce fans. The organizing team decided that the event could benefit from a more narrow focus.</p>\n<p>&#8220;Basically, we realized that we need to focus on either developers or store owners,&#8221; WooConf co-organizer Patrick Rauland said. &#8220;The content at last year&#8217;s WooConf was great. But you can&#8217;t have two priorities.</p>\n<p>&#8220;We want to have a conference that&#8217;s remarkable, meaning people talk about it. There are a lot of great WordPress events and a lot of great e-commerce events. We want people to talk about WooConf in both of those circles. And by focusing on one target we hope to achieve that.&#8221;</p>\n<p>Speaker submissions are already open and the suggested topics reflect this year&#8217;s developer focus:</p>\n<ul>\n<li>Running an Agency / Client Relations – Scoping projects, fostering repeat business, keeping projects on track, finding and hiring developers, productizing client functionality and so on.</li>\n<li>Extending WooCommerce – Using the REST API, JavaScript frameworks (React &#038; Backbone), case studies on customization, tips and tricks for customizing specific parts of WooCommerce (emails, checkout flow, product pages and so on) and accessibility.</li>\n<li>Scaling – Anything from server-side, backend, frontend or case studies</li>\n<li>eCommerce Fundamentals – Creating a cohesive experience (between multiple sites, apps, mobile sites, Amazon, etc), personalization, conversion rate optimization</li>\n</ul>\n<p><a href=\"https://wooconf.com/product/early-bird-ticket/\" target=\"_blank\">Early bird tickets</a> for WooConf are on sale for $499 until July 1 when the price will go up $200.</p>\n<p>Organizers will also be hosting the Golden Ticket competition this year, which offers prospective attendees the chance to win an all-expenses-paid trip to the event in Seattle, including travel, accommodation, and admission to the conference. Developers who want to be considered are asked to create a video showing how they use WooCommerce and post it to Instagram. The call for submissions will kick off later this month and the competition has historically been fairly stiff. In 2014, <a href=\"https://woocommerce.com/2014/08/case-study-o-v-e-r-clothing/\" target=\"_blank\">Sinisa from OVER Clothing</a> won out over 2,000 other entrants.</p>\n<p>WooConf 2017 will take place at <a href=\"https://www.bellharbor.com/\" target=\"_blank\">Bell Harbor International Conference Center</a>, within walking distance of Pike Place Market, the Space Needle, and many hotels. For the thousands of WooCommerce developers and enthusiasts around the world who are not able to attend, a live streaming option will be available and recorded talks will be published after the event.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 May 2017 02:36:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: Akismet WordPress Plugin 3.3.1 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1928\";s:7:\"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://blog.akismet.com/2017/05/02/akismet-wordpress-plugin-3-3-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1383:\"<p>Version 3.3.1 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>For a full list of the changes in this release, see the <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk?action=stop_on_copy&mode=stop_on_copy&rev=1649900&stop_rev=1604754+&limit=100&sfp_email=&sfph_mail=\">revision log</a>, but here are the highlights:</p>\n<ul>\n<li>A couple of bugs that could cause PHP warnings in the error log have been fixed.</li>\n<li>Performance has been improved by preventing some comments-specific code from running on pages without comments.</li>\n<li>Both the &#8220;Remove author URL&#8221; and link preview features now work after a comment is Quick Edited in wp-admin.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1928/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1928/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1928&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 May 2017 19:15:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Matt: Longreads and Original Journalism\";s:7:\"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=47299\";s:7:\"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://ma.tt/2017/05/longreads-and-original-journalism/\";s: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:809:\"<p class=\"simple-headline\"><a href=\"http://www.niemanlab.org/2017/05/amid-the-wreckage-of-fallen-startups-longreads-is-increasing-the-original-reporting-it-funds/\">Amid the wreckage of fallen startups, Longreads is increasing the original reporting it funds</a>:</p>\n<blockquote>\n<p class=\"simple-headline\">Longreads has raised about $250,000 from “thousands of members” since it added memberships in 2012. The suggested monthly amount is now $5 a month or $50 a year, though readers can choose to donate any amount, and Armstrong said that the company’s gotten some thousand-dollar donations. All of that money now goes to pay authors, and WordPress.com matches every $1 from a reader with an additional $3, which clearly makes it a lot easier for Longreads to do what it wants to do.</p>\n</blockquote>\";s: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, 02 May 2017 04:52:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 May 2017 15:32:21 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 22 May 2017 15:15:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911143210\";}", "no");
INSERT INTO `wpos_options` VALUES("796", "swpsmtp_options", "a:3:{s:16:\"from_email_field\";s:21:\"site@mlksolutions.org\";s:15:\"from_name_field\";s:21:\"website MLK solutions\";s:13:\"smtp_settings\";a:6:{s:4:\"host\";s:21:\"mail.mlksolutions.org\";s:15:\"type_encryption\";s:4:\"none\";s:4:\"port\";s:2:\"25\";s:13:\"autentication\";s:3:\"yes\";s:8:\"username\";s:21:\"site@mlksolutions.org\";s:8:\"password\";s:16:\"cHRsaW5rbDBrbw==\";}}", "yes");
INSERT INTO `wpos_options` VALUES("797", "smtp_test_mail", "a:3:{s:10:\"swpsmtp_to\";s:9:\"ar@mlk.pt\";s:15:\"swpsmtp_subject\";s:5:\"teste\";s:15:\"swpsmtp_message\";s:5:\"teste\";}", "yes");
INSERT INTO `wpos_options` VALUES("2007", "duplicator_ui_view_state", "a:3:{s:22:\"dup-pack-storage-panel\";s:1:\"1\";s:22:\"dup-pack-archive-panel\";s:1:\"1\";s:24:\"dup-pack-installer-panel\";s:1:\"1\";}", "yes");
INSERT INTO `wpos_options` VALUES("727", "pum-apikey", "u428787-5d9e112be492a5862ef840bb", "yes");
INSERT INTO `wpos_options` VALUES("728", "pum-cache", "a:2:{s:4:\"data\";s:1052:\"{\"stat\": \"ok\", \"offset\": \"0\", \"limit\": \"50\", \"total\": \"2\", \"timezone\": \"+0\",\"monitors\":{\"monitor\":[{\"id\":\"778817771\",\"friendlyname\":\"MLK Solutions Hosting\",\"url\":\"185.90.56.121\",\"type\":\"3\",\"subtype\":\"\",\"keywordtype\":\"\",\"keywordvalue\":\"\",\"httpusername\":\"\",\"httppassword\":\"\",\"port\":\"\",\"interval\":\"300\",\"status\":\"2\",\"alltimeuptimeratio\":\"99.99\",\"log\":[{\"type\":\"2\",\"datetime\":\"03/31/2017 00:44:25\"},{\"type\":\"1\",\"datetime\":\"03/31/2017 00:41:35\"},{\"type\":\"2\",\"datetime\":\"03/30/2017 23:23:31\"},{\"type\":\"1\",\"datetime\":\"03/30/2017 23:17:04\"},{\"type\":\"2\",\"datetime\":\"03/18/2017 00:33:12\"},{\"type\":\"1\",\"datetime\":\"03/18/2017 00:32:45\"},{\"type\":\"2\",\"datetime\":\"03/17/2017 09:17:15\"},{\"type\":\"98\",\"datetime\":\"03/17/2017 09:17:11\"}]},{\"id\":\"778874102\",\"friendlyname\":\"MLK Care\",\"url\":\"173.236.22.82\",\"type\":\"3\",\"subtype\":\"\",\"keywordtype\":\"\",\"keywordvalue\":\"\",\"httpusername\":\"\",\"httppassword\":\"\",\"port\":\"\",\"interval\":\"300\",\"status\":\"2\",\"alltimeuptimeratio\":\"100\",\"log\":[{\"type\":\"2\",\"datetime\":\"04/03/2017 00:14:01\"},{\"type\":\"98\",\"datetime\":\"04/03/2017 00:13:51\"}]}]}}\";s:9:\"timestamp\";i:1495466942;}", "yes");
INSERT INTO `wpos_options` VALUES("729", "pum-time", "1495466942", "yes");
INSERT INTO `wpos_options` VALUES("730", "pum-hidemonitors", "", "yes");
INSERT INTO `wpos_options` VALUES("1971", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1495467229;s:7:\"checked\";a:5:{s:8:\"arkahost\";s:5:\"5.1.3\";s:9:\"multihost\";s:5:\"1.5.8\";s:13:\"twentyfifteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"1.1\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:1:{s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.2.zip\";}}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wpos_options` VALUES("774", "mail_from", "support@mlk.pt", "yes");
INSERT INTO `wpos_options` VALUES("775", "mail_from_name", "Website MLK", "yes");
INSERT INTO `wpos_options` VALUES("776", "mailer", "smtp", "yes");
INSERT INTO `wpos_options` VALUES("777", "mail_set_return_path", "", "yes");
INSERT INTO `wpos_options` VALUES("778", "smtp_host", "mail.mlk.pt", "yes");
INSERT INTO `wpos_options` VALUES("779", "smtp_port", "25", "yes");
INSERT INTO `wpos_options` VALUES("780", "smtp_ssl", "none", "yes");
INSERT INTO `wpos_options` VALUES("781", "smtp_auth", "true", "yes");
INSERT INTO `wpos_options` VALUES("782", "smtp_user", "support@mlk.pt", "yes");
INSERT INTO `wpos_options` VALUES("783", "smtp_pass", "ptlinkl0ko", "yes");
INSERT INTO `wpos_options` VALUES("784", "pepipost_user", "", "yes");
INSERT INTO `wpos_options` VALUES("785", "pepipost_pass", "", "yes");
INSERT INTO `wpos_options` VALUES("786", "pepipost_port", "2525", "yes");
INSERT INTO `wpos_options` VALUES("787", "pepipost_ssl", "none", "yes");
INSERT INTO `wpos_options` VALUES("1199", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"ar@mlksolutions.org\";s:7:\"version\";s:5:\"4.7.5\";s:9:\"timestamp\";i:1494975087;}", "no");
INSERT INTO `wpos_options` VALUES("1933", "_transient_timeout_yst_sm_page_1:4W7j6_vkyL", "1495446647", "no");
INSERT INTO `wpos_options` VALUES("1934", "_transient_yst_sm_page_1:4W7j6_vkyL", "C:24:\"WPSEO_Sitemap_Cache_Data\":2127:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:2079:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/</loc>\n		<lastmod>2017-04-05T11:19:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/blog/</loc>\n		<lastmod>2015-07-18T03:53:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/mega_menu_content-hosting-menu/</loc>\n		<lastmod>2016-02-02T07:49:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/mega_menu_contact/</loc>\n		<lastmod>2016-02-02T08:22:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/mega_menu_features/</loc>\n		<lastmod>2016-02-02T10:19:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/latest-from-blog/</loc>\n		<lastmod>2016-02-10T08:59:21+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-table/</loc>\n		<lastmod>2016-02-10T11:30:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/home-whmpress/</loc>\n		<lastmod>2016-02-17T13:35:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/faqs/</loc>\n		<lastmod>2017-04-04T10:23:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/tos/</loc>\n		<lastmod>2017-04-04T15:14:27+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/uptime/</loc>\n		<lastmod>2017-04-04T16:04:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/contacto/</loc>\n		<lastmod>2017-04-05T09:57:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/mlkcare/</loc>\n		<lastmod>2017-04-09T01:54:42+00:00</lastmod>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02.png</image:loc>\n			<image:title><![CDATA[MLK CARE-02]]></image:title>\n		</image:image>\n		<image:image>\n			<image:loc>https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02.png</image:loc>\n		</image:image>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("1983", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1495510339", "no");
INSERT INTO `wpos_options` VALUES("1984", "_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 May 2017 23:34:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.8-beta1-40811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 22:39:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4734\";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:373:\"WordPress 4.7.5 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.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC [&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";s: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:2349:\"<p>WordPress 4.7.5 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.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CSRF)  vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.7.5&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</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.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Now on HackerOne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";s: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, 15 May 2017 16:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4730\";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:322:\"WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that WordPress is now officially [&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s: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:1718:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We&#8217;ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4730\";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:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 May 2017 00:15:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4727\";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:342:\"We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements: An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.) A revamp of the dashboard news widget to [&#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/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:\"\";}}}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:1148:\"<p>We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</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:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4727\";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:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.7.4 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2017/04/wordpress-4-7-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Apr 2017 17:54:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4710\";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:376:\"After almost sixty million downloads of WordPress 4.7, we are pleased to announce the immediate availability of WordPress 4.7.4, a maintenance release. This release contains 47 bug fixes and enhancements, chief among them an incompatibility between the upcoming Chrome version and the visual editor, inconsistencies in media handling, and further improvements to the REST API.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";s: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:4518:\"<p>After almost sixty million downloads of WordPress 4.7, we are pleased to announce the immediate availability of WordPress 4.7.4, a maintenance release.</p>\n<p>This release contains 47 maintenance fixes and enhancements, chief among them an incompatibility between the upcoming Chrome version and the visual editor, inconsistencies in media handling, and further improvements to the REST API. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.7.4\">release notes</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/4.7?rev=40487&amp;stop_rev=40224\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.4</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.4.</p>\n<p>Thanks to everyone who contributed to 4.7.4:<br />\n<a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</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/aussieguy123/\">aussieguy123</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/boldwater/\">boldwater</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/chesio/\">chesio</a>, <a href=\"https://profiles.wordpress.org/curdin/\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidbenton/\">davidbenton</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ghosttoast/\">Gustave F. Gerhardt</a>, <a href=\"https://profiles.wordpress.org/ig_communitysites/\">ig_communitysites</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/karinedo/\">karinedo</a>, <a href=\"https://profiles.wordpress.org/lukasbesch/\">lukasbesch</a>, <a href=\"https://profiles.wordpress.org/maguiar/\">maguiar</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mayurk/\">Mayur Keshwani</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/delawski/\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pratikshrestha/\">Pratik Shrestha</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/sagarkbhatt/\">sagarkbhatt</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati/\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/sboisvert/\">sboisvert</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4710\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-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:\"Mon, 06 Mar 2017 17:53:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4696\";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:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect [&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"James Nylen\";s: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:6191:\"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata.  Reported by <a href=\"https://www.securesolutions.no/\">Chris Andrè Dale</a>, <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation.  Reported by <a href=\"http://www.danielchatfield.com/\">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by <a href=\"https://hackerone.com/triginc\">TrigInc</a> and <a href=\"http://b.360.cn/\">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by <a href=\"https://twitter.com/marcs0h\">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names.  Reported by <a href=\"https://profiles.wordpress.org/deltamgm2\">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.7.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</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/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/drrobotnik/\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/ccprog/\">ccprog</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/codegeass/\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/reldev/\">reldev</a>, <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O&#8217;Rourke</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/wpfo/\">wpfo</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:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.7.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 19:34:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4676\";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:357:\"WordPress 4.7.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.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. [&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s: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:2142:\"<p>WordPress 4.7.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.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we&#8217;ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://github.com/mjangda\">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href=\"https://iandunn.name/\">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href=\"https://twitter.com/MarcS0h\">Marc-Alexandre Montpas</a> of Sucuri Security. *</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.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.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\">Disclosure of Additional Security Fix in WordPress 4.7.2</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:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";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:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-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:\"Wed, 11 Jan 2017 03:53:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4650\";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:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: [&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s: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:6520:\"<p>WordPress 4.7 has been <a href=\"https://wordpress.org/download/counter/\">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. 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.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer &#8211; <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href=\"https://poststatus.com/\">Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href=\"https://twitter.com/Abdulahhusam\">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href=\"https://pentest.blog/\">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren&#8217;t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href=\"https://itsjack.cc/\">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.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.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</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/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dreamon11/\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hristo-sg/\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">monikarao</a>, <a href=\"https://profiles.wordpress.org/natereist/\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nullvariable/\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/sirbrillig/\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sfpt/\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom/\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n	\n\n\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.7 “Vaughan”\";s:7:\"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/12/vaughan/\";s: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, 06 Dec 2016 19:27:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4596\";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:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:45518:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &#8220;Sassy&#8221; Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><video id=\"v-AHz0Ca46-1-video\" width=\"632\" height=\"354\" poster=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4\" type=\"video/mp4; codecs=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354\" data-recalc-dims=\"1\" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style=\"text-align:center\">Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&amp;ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2 style=\"text-align:center\">Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div style=\"width: 632px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-4596-1\" width=\"632\" height=\"346\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\" /><a href=\"https://wordpress.org/news/files/2016/12/starter-content.mp4\">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></video></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry &#8211; nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Edit Shortcuts</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-2\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Edit-Shortcuts.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\" /><a href=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></video></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Video Headers</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-3\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Header-Video.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\" /><a href=\"https://wordpress.org/news/files/2016/12/video-headers.mp4\">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></video></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Smoother Menu Building</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Custom CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>PDF Thumbnail Previews</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Dashboard in your language</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align:center\">Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href=\"https://developer.wordpress.org/rest-api/reference/\">Check out the REST API reference.</a></p>\n<hr />\n<h2 style=\"text-align:center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2 style=\"text-align:center\">The Squad</h2>\n<p>This release was led by <a href=\"https://helen.blog\">Helen Hou-Sandí</a>, backed up by <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a> and <a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/wraithkenny\">[Inactive]</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</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/andrewp-2\">Andreas Panag</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/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</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/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</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/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</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/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</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/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran &#352;erić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</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/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</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/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</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/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</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/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</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/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</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/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</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/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</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/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</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/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</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/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/quasel\">quasel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</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/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</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/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</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/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</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/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;<br />\nSpecial thanks go to <a href=\"https://ramiabraham.com/\">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">beta</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 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 &#8211; we hope you enjoy!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";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:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Moving Toward SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2016/12/moving-toward-ssl/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2016 17:20:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";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:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle [&#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/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:\"\";}}}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:1627:\"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href=\"https://letsencrypt.org/\">Let&#8217;s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">SSL as a search engine ranking factor</a> and will begin <a href=\"http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https\">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p>&nbsp;</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.7 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/11/wordpress-4-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4579\";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:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, [&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4331:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, 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.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39353&amp;stop_rev=39263&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what&#8217;s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> And if you haven&#8217;t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</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:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 May 2017 15:32:20 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 18 May 2017 23:34:12 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:\"20130911143210\";}", "no");
INSERT INTO `wpos_options` VALUES("1985", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1495510339", "no");
INSERT INTO `wpos_options` VALUES("1986", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1495467139", "no");
INSERT INTO `wpos_options` VALUES("1991", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1495510340", "no");
INSERT INTO `wpos_options` VALUES("1992", "_transient_feed_b9388c83948825c1edaef0d856b7b109", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Popular — WordPress Plugins\";s:7:\"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:29:\"https://wordpress.org/plugins\";s: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:57:\"Plugins extend and expand the functionality of 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 May 2017 15:25:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.8-beta1-40811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/contact-form-7/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:43:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins-wp/contact-form-7/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5831:\"<p><!--section=description--></p>\n<p>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>\n<h4>Docs &amp; Support</h4>\n<p>You can find <a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">docs</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a> and more detailed information about Contact Form 7 on <a href=\"https://contactform7.com/\" rel=\"nofollow\">contactform7.com</a>. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the <a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">support forum</a> on WordPress.org. If you can&#8217;t locate any topics that pertain to your particular issue, post a new topic for it.</p>\n<h4>Contact Form 7 Needs Your Support</h4>\n<p>It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider <a href=\"https://contactform7.com/donate/\" rel=\"nofollow\"><strong>making a donation</strong></a>. Your donation will help encourage and support the plugin&#8217;s continued development and better user support.</p>\n<h4>Recommended Plugins</h4>\n<p>The following plugins are recommended for Contact Form 7 users:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi &#8211; With Flamingo, you can save submitted messages via contact forms in the database.</li>\n<li><a href=\"https://wordpress.org/plugins/postman-smtp/\">Postman</a> by<br />\nJason Hendriks &#8211; Postman is a next-generation SMTP Mailer, software that assists in the delivery of email generated by your WordPress site.</li>\n<li><a href=\"https://wordpress.org/plugins/bogo/\">Bogo</a> by Takayuki Miyoshi &#8211; Bogo is a straight-forward multilingual plugin that doesn&#8217;t cause headaches.</li>\n</ul>\n<h4>Translations</h4>\n<p>You can <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow\">translate Contact Form 7</a> on <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\"><strong>translate.wordpress.org</strong></a>.</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n</ol>\n<p>You will find &#8216;Contact&#8217; menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n<p><!--section=faq--></p>\n<p>Do you have questions or issues with Contact Form 7? Use these support channels appropriately.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">Docs</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">Support Forum</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow\">Support</a></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n</ol>\n<p>You will find &#8216;Contact&#8217; menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow\">Releases</a>.</p>\n<h4>4.7</h4>\n<ul>\n<li>Added REST API custom endpoints to manipulate contact form data.</li>\n<li>Config Validator: Added test items for field names and attachment file paths.</li>\n<li>Added custom DOM events: <code>wpcf7invalid</code>, <code>wpcf7spam</code>, <code>wpcf7mailsent</code>, <code>wpcf7mailfailed</code> and <code>wpcf7submit</code>.</li>\n<li>New action hook: <code>wpcf7_after_flamingo</code>.</li>\n<li>Added <code>size</code> option to <code>select</code> and <code>select*</code> form-tag types.</li>\n<li>Made it possible to use the 3rd parameter of <code>wpcf7_add_form_tag()</code> to specify &#8220;features&#8221; of the form-tag type.</li>\n</ul>\n<h4>4.6.1</h4>\n<ul>\n<li>Fixed: &#8220;0&#8221; input could pass the <code>minlength</code> validation.</li>\n<li>Fixed: <code>exclude_blank</code> option was applied to all mail fields, not only to the message body.</li>\n<li>Fixed: <code>wpcf7_autop()</code> incorrectly inserted <code>&lt;br /&gt;</code> around hidden and block-type form-tags.</li>\n<li>Fixed: Applying <code>strtolower()</code> to uploaded file names was unnecessary and could cause troubles in a non-English environment.</li>\n</ul>\n<h4>4.6</h4>\n<ul>\n<li>Ajax loader: HTML markup changed to <code>&lt;span&gt;</code> to be easily customizable with CSS.</li>\n<li>Appends a proper header and footer to HTML mail content automatically.</li>\n<li><code>[_serial_number]</code> special mail-tag.</li>\n<li>New form-tag type for hidden fields.</li>\n<li><code>default:shortcode_attr</code> form-tag option.</li>\n<li><code>WPCF7_Shortcode</code>, <code>WPCF7_ShortcodeManager</code>, <code>wpcf7_add_shortcode()</code>, <code>wpcf7_scan_shortcode()</code>, and some other classes and functions have become deprecated.</li>\n<li>Removed all language files from the <em>languages</em> folder. Translations have moved to <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\">translate.wordpress.org</a>.</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/contact-form-7/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://wordpress.org/plugins/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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/akismet/#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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Oct 2005 08:57:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins-wp/akismet/\";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:103:\"Akismet checks your comments and contact form submissions against our global database of spam to&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:18320:\"<p><!--section=description--></p>\n<p>Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog&#8217;s &#8220;Comments&#8221; admin screen.</p>\n<p>Major features in Akismet include:</p>\n<ul>\n<li>Automatically checks all comments and filters out the ones that look like spam.</li>\n<li>Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator.</li>\n<li>URLs are shown in the comment body to reveal hidden or misleading links.</li>\n<li>Moderators can see the number of approved comments for each user.</li>\n<li>A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.</li>\n</ul>\n<p>PS: You&#8217;ll need an <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a> to use it.  Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.</p>\n<p><!--section=installation--></p>\n<p>Upload the Akismet plugin to your blog, Activate it, then enter your <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a>.</p>\n<p>1, 2, 3: You&#8217;re done!</p>\n<p><!--section=changelog--></p>\n<h4>3.3.2</h4>\n<p><em>Release Date &#8211; 10 May 2017</em></p>\n<ul>\n<li>Fixed a bug causing JavaScript errors in some browsers.</li>\n</ul>\n<h4>3.3.1</h4>\n<p><em>Release Date &#8211; 2 May 2017</em></p>\n<ul>\n<li>Improve performance by only requesting the akismet_comment_nonce option when absolutely necessary.</li>\n<li>Fixed two bugs that could cause PHP warnings.</li>\n<li>Fixed a bug that was preventing the &#8220;Remove author URL&#8221; feature from working after a comment was edited using &#8220;Quick Edit.&#8221;</li>\n<li>Fixed a bug that was preventing the URL preview feature from working after a comment was edited using &#8220;Quick Edit.&#8221;</li>\n</ul>\n<h4>3.3</h4>\n<p><em>Release Date &#8211; 23 February 2017</em></p>\n<ul>\n<li>Updated the Akismet admin pages with a new clean design.</li>\n<li>Fixed bugs preventing the <code>akismet_add_comment_nonce</code> and <code>akismet_update_alert</code> wrapper functions from working properly.</li>\n<li>Fixed bug preventing the loading indicator from appearing when re-checking all comments for spam.</li>\n<li>Added a progress indicator to the &#8220;Check for Spam&#8221; button.</li>\n<li>Added a success message after manually rechecking the Pending queue for spam.</li>\n</ul>\n<h4>3.2</h4>\n<p><em>Release Date &#8211; 6 September 2016</em></p>\n<ul>\n<li>Added a WP-CLI module. You can now check comments and recheck the moderation queue from the command line.</li>\n<li>Stopped using the deprecated jQuery function <code>.live()</code>.</li>\n<li>Fixed a bug in <code>remove_comment_author_url()</code> and <code>add_comment_author_url()</code> that could generate PHP notices.</li>\n<li>Fixed a bug that could cause an infinite loop for sites with very very very large comment IDs.</li>\n<li>Fixed a bug that could cause the Akismet widget title to be blank.</li>\n</ul>\n<h4>3.1.11</h4>\n<p><em>Release Date &#8211; 12 May 2016</em></p>\n<ul>\n<li>Fixed a bug that could cause the &#8220;Check for Spam&#8221; button to skip some comments.</li>\n<li>Fixed a bug that could prevent some spam submissions from being sent to Akismet.</li>\n<li>Updated all links to use https:// when possible.</li>\n<li>Disabled Akismet debug logging unless WP_DEBUG and WP_DEBUG_LOG are both enabled.</li>\n</ul>\n<h4>3.1.10</h4>\n<p><em>Release Date &#8211; 1 April 2016</em></p>\n<ul>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n<li>Fixed a bug that could have resulted in comments that were caught by the core WordPress comment blacklist not to have a corresponding History entry.</li>\n<li>Fixed a bug that could have caused avoidable PHP warnings in the error log.</li>\n</ul>\n<h4>3.1.9</h4>\n<p><em>Release Date &#8211; 28 March 2016</em></p>\n<ul>\n<li>Add compatibility with Jetpack so that Jetpack can automatically configure Akismet settings when appropriate.</li>\n<li>Fixed a bug preventing some comment data from being sent to Akismet.</li>\n</ul>\n<h4>3.1.8</h4>\n<p><em>Release Date &#8211; 4 March 2016</em></p>\n<ul>\n<li>Fixed a bug preventing Akismet from being used with some plugins that rewrite admin URLs.</li>\n<li>Reduced the amount of bandwidth used on Akismet API calls</li>\n<li>Reduced the amount of space Akismet uses in the database</li>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n</ul>\n<h4>3.1.7</h4>\n<p><em>Release Date &#8211; 4 January 2016</em></p>\n<ul>\n<li>Added documentation for the &#8216;akismet_comment_nonce&#8217; filter.</li>\n<li>The post-install activation button is now accessible to screen readers and keyboard-only users.</li>\n<li>Fixed a bug that was preventing the &#8220;Remove author URL&#8221; feature from working in WordPress 4.4</li>\n</ul>\n<h4>3.1.6</h4>\n<p><em>Release Date &#8211; 14 December 2015</em></p>\n<ul>\n<li>Improve the notices shown after activating Akismet.</li>\n<li>Update some strings to allow for the proper plural forms in all languages.</li>\n</ul>\n<h4>3.1.5</h4>\n<p><em>Release Date &#8211; 13 October 2015</em></p>\n<ul>\n<li>Closes a potential XSS vulnerability.</li>\n</ul>\n<h4>3.1.4</h4>\n<p><em>Release Date &#8211; 24 September 2015</em></p>\n<ul>\n<li>Fixed a bug that was preventing some users from automatically connecting using Jetpack if they didn&#8217;t have a current Akismet subscription.</li>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n<li>Error messages and instructions have been simplified to be more understandable.</li>\n<li>Link previews are enabled for all links inside comments, not just the author&#8217;s website link.</li>\n</ul>\n<h4>3.1.3</h4>\n<p><em>Release Date &#8211; 6 July 2015</em></p>\n<ul>\n<li>Notify users when their account status changes after previously being successfully set up. This should help any users who are seeing blank Akismet settings screens.</li>\n</ul>\n<h4>3.1.2</h4>\n<p><em>Release Date &#8211; 7 June 2015</em></p>\n<ul>\n<li>Reduced the amount of space Akismet uses in the commentmeta table.</li>\n<li>Fixed a bug where some comments with quotes in the author name weren&#8217;t getting history entries</li>\n<li>Pre-emptive security improvements to ensure that the Akismet plugin can&#8217;t be used by attackers to compromise a WordPress installation.</li>\n<li>Better UI for the key entry field: allow whitespace to be included at the beginning or end of the key and strip it out automatically when the form is submitted.</li>\n<li>When deactivating the plugin, notify the Akismet API so the site can be marked as inactive.</li>\n<li>Clearer error messages.</li>\n</ul>\n<h4>3.1.1</h4>\n<p><em>Release Date &#8211; 17th March, 2015</em></p>\n<ul>\n<li>Improvements to the &#8220;Remove comment author URL&#8221; JavaScript</li>\n<li>Include the pingback pre-check from the 2.6 branch.</li>\n</ul>\n<h4>3.1</h4>\n<p><em>Release Date &#8211; 11th March, 2015</em></p>\n<ul>\n<li>Use HTTPS by default for all requests to Akismet.</li>\n<li>Fix for a situation where Akismet might strip HTML from a comment.</li>\n</ul>\n<h4>3.0.4</h4>\n<p><em>Release Date &#8211; 11th December, 2014</em></p>\n<ul>\n<li>Fix to make .htaccess compatible with Apache 2.4.</li>\n<li>Fix to allow removal of https author URLs.</li>\n<li>Fix to avoid stripping part of the author URL when removing and re-adding.</li>\n<li>Removed the &#8220;Check for Spam&#8221; button from the &#8220;Trash&#8221; and &#8220;Approved&#8221; queues, where it would have no effect.</li>\n<li>Allow automatic API key configuration when Jetpack is installed and connected to a WordPress.com account</li>\n</ul>\n<h4>3.0.3</h4>\n<p><em>Release Date &#8211; 3rd November, 2014</em></p>\n<ul>\n<li>Fix for sending the wrong data to delete_comment action that could have prevented old spam comments from being deleted.</li>\n<li>Added a filter to disable logging of Akismet debugging information.</li>\n<li>Added a filter for the maximum comment age when deleting old spam comments.</li>\n<li>Added a filter for the number per batch when deleting old spam comments.</li>\n<li>Removed the &#8220;Check for Spam&#8221; button from the Spam folder.</li>\n</ul>\n<h4>3.0.2</h4>\n<p><em>Release Date &#8211; 18th August, 2014</em></p>\n<ul>\n<li>Performance improvements.</li>\n<li>Fixed a bug that could truncate the comment data being sent to Akismet for checking.</li>\n</ul>\n<h4>3.0.1</h4>\n<p><em>Release Date &#8211; 9th July, 2014</em></p>\n<ul>\n<li>Removed dependency on PHP&#8217;s fsockopen function</li>\n<li>Fix spam/ham reports to work when reported outside of the WP dashboard, e.g., from Notifications or the WP app</li>\n<li>Remove jQuery dependency for comment form JavaScript</li>\n<li>Remove unnecessary data from some Akismet comment meta</li>\n<li>Suspended keys will now result in all comments being put in moderation, not spam.</li>\n</ul>\n<h4>3.0.0</h4>\n<p><em>Release Date &#8211; 15th April, 2014</em></p>\n<ul>\n<li>Move Akismet to Settings menu</li>\n<li>Drop Akismet Stats menu</li>\n<li>Add stats snapshot to Akismet settings</li>\n<li>Add Akismet subscription details and status to Akismet settings</li>\n<li>Add contextual help for each page</li>\n<li>Improve Akismet setup to use Jetpack to automate plugin setup</li>\n<li>Fix &#8220;Check for Spam&#8221; to use AJAX to avoid page timing out</li>\n<li>Fix Akismet settings page to be responsive</li>\n<li>Drop legacy code</li>\n<li>Tidy up CSS and Javascript</li>\n<li>Replace the old discard setting with a new &#8220;discard pervasive spam&#8221; feature.</li>\n</ul>\n<h4>2.6.0</h4>\n<p><em>Release Date &#8211; 18th March, 2014</em></p>\n<ul>\n<li>Add ajax paging to the check for spam button to handle large volumes of comments</li>\n<li>Optimize javascript and add localization support </li>\n<li>Fix bug in link to spam comments from right now dashboard widget</li>\n<li>Fix bug with deleting old comments to avoid timeouts dealing with large volumes of comments</li>\n<li>Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications</li>\n<li>Add pre-check for pingbacks, to stop spam before an outbound verification request is made</li>\n</ul>\n<h4>2.5.9</h4>\n<p><em>Release Date &#8211; 1st August, 2013</em></p>\n<ul>\n<li>Update &#8216;Already have a key&#8217; link to redirect page rather than depend on javascript</li>\n<li>Fix some non-translatable strings to be translatable</li>\n<li>Update Activation banner in plugins page to redirect user to Akismet config page</li>\n</ul>\n<h4>2.5.8</h4>\n<p><em>Release Date &#8211; 20th January, 2013</em></p>\n<ul>\n<li>Simplify the activation process for new users</li>\n<li>Remove the reporter_ip parameter</li>\n<li>Minor preventative security improvements</li>\n</ul>\n<h4>2.5.7</h4>\n<p><em>Release Date &#8211; 13th December, 2012</em></p>\n<ul>\n<li>FireFox Stats iframe preview bug</li>\n<li>Fix mshots preview when using https</li>\n<li>Add .htaccess to block direct access to files</li>\n<li>Prevent some PHP notices</li>\n<li>Fix Check For Spam return location when referrer is empty</li>\n<li>Fix Settings links for network admins</li>\n<li>Fix prepare() warnings in WP 3.5</li>\n</ul>\n<h4>2.5.6</h4>\n<p><em>Release Date &#8211; 26th April, 2012</em></p>\n<ul>\n<li>Prevent retry scheduling problems on sites where wp_cron is misbehaving</li>\n<li>Preload mshot previews</li>\n<li>Modernize the widget code</li>\n<li>Fix a bug where comments were not held for moderation during an error condition</li>\n<li>Improve the UX and display when comments are temporarily held due to an error</li>\n<li>Make the Check For Spam button force a retry when comments are held due to an error</li>\n<li>Handle errors caused by an invalid key</li>\n<li>Don&#8217;t retry comments that are too old</li>\n<li>Improve error messages when verifying an API key</li>\n</ul>\n<h4>2.5.5</h4>\n<p><em>Release Date &#8211; 11th January, 2012</em></p>\n<ul>\n<li>Add nonce check for comment author URL remove action</li>\n<li>Fix the settings link</li>\n</ul>\n<h4>2.5.4</h4>\n<p><em>Release Date &#8211; 5th January, 2012</em></p>\n<ul>\n<li>Limit Akismet CSS and Javascript loading in wp-admin to just the pages that need it</li>\n<li>Added author URL quick removal functionality</li>\n<li>Added mShot preview on Author URL hover</li>\n<li>Added empty index.php to prevent directory listing</li>\n<li>Move wp-admin menu items under Jetpack, if it is installed</li>\n<li>Purge old Akismet comment meta data, default of 15 days</li>\n</ul>\n<h4>2.5.3</h4>\n<p><em>Release Date &#8211; 8th Febuary, 2011</em></p>\n<ul>\n<li>Specify the license is GPL v2 or later</li>\n<li>Fix a bug that could result in orphaned commentmeta entries</li>\n<li>Include hotfix for WordPress 3.0.5 filter issue</li>\n</ul>\n<h4>2.5.2</h4>\n<p><em>Release Date &#8211; 14th January, 2011</em></p>\n<ul>\n<li>Properly format the comment count for author counts</li>\n<li>Look for super admins on multisite installs when looking up user roles</li>\n<li>Increase the HTTP request timeout</li>\n<li>Removed padding for author approved count</li>\n<li>Fix typo in function name</li>\n<li>Set Akismet stats iframe height to fixed 2500px.  Better to have one tall scroll bar than two side by side.</li>\n</ul>\n<h4>2.5.1</h4>\n<p><em>Release Date &#8211; 17th December, 2010</em></p>\n<ul>\n<li>Fix a bug that caused the &#8220;Auto delete&#8221; option to fail to discard comments correctly</li>\n<li>Remove the comment nonce form field from the &#8216;Akismet Configuration&#8217; page in favor of using a filter, akismet_comment_nonce</li>\n<li>Fixed padding bug in &#8220;author&#8221; column of posts screen</li>\n<li>Added margin-top to &#8220;cleared by &#8230;&#8221; badges on dashboard</li>\n<li>Fix possible error when calling akismet_cron_recheck()</li>\n<li>Fix more PHP warnings</li>\n<li>Clean up XHTML warnings for comment nonce</li>\n<li>Fix for possible condition where scheduled comment re-checks could get stuck</li>\n<li>Clean up the comment meta details after deleting a comment</li>\n<li>Only show the status badge if the comment status has been changed by someone/something other than Akismet</li>\n<li>Show a &#8216;History&#8217; link in the row-actions</li>\n<li>Translation fixes</li>\n<li>Reduced font-size on author name</li>\n<li>Moved &#8220;flagged by&#8230;&#8221; notification to top right corner of comment container and removed heavy styling</li>\n<li>Hid &#8220;flagged by&#8230;&#8221; notification while on dashboard</li>\n</ul>\n<h4>2.5.0</h4>\n<p><em>Release Date &#8211; 7th December, 2010</em></p>\n<ul>\n<li>Track comment actions under &#8216;Akismet Status&#8217; on the edit comment screen</li>\n<li>Fix a few remaining deprecated function calls ( props Mike Glendinning ) </li>\n<li>Use HTTPS for the stats IFRAME when wp-admin is using HTTPS</li>\n<li>Use the WordPress HTTP class if available</li>\n<li>Move the admin UI code to a separate file, only loaded when needed</li>\n<li>Add cron retry feature, to replace the old connectivity check</li>\n<li>Display Akismet status badge beside each comment</li>\n<li>Record history for each comment, and display it on the edit page</li>\n<li>Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham</li>\n<li>Highlight links in comment content</li>\n<li>New option, &#8220;Show the number of comments you&#8217;ve approved beside each comment author.&#8221;</li>\n<li>New option, &#8220;Use a nonce on the comment form.&#8221;</li>\n</ul>\n<h4>2.4.0</h4>\n<p><em>Release Date &#8211; 23rd August, 2010</em></p>\n<ul>\n<li>Spell out that the license is GPLv2</li>\n<li>Fix PHP warnings</li>\n<li>Fix WordPress deprecated function calls</li>\n<li>Fire the delete_comment action when deleting comments</li>\n<li>Move code specific for older WP versions to legacy.php</li>\n<li>General code clean up</li>\n</ul>\n<h4>2.3.0</h4>\n<p><em>Release Date &#8211; 5th June, 2010</em></p>\n<ul>\n<li>Fix &#8220;Are you sure&#8221; nonce message on config screen in WPMU</li>\n<li>Fix XHTML compliance issue in sidebar widget</li>\n<li>Change author link; remove some old references to WordPress.com accounts</li>\n<li>Localize the widget title (core ticket #13879)</li>\n</ul>\n<h4>2.2.9</h4>\n<p><em>Release Date &#8211; 2nd June, 2010</em></p>\n<ul>\n<li>Eliminate a potential conflict with some plugins that may cause spurious reports</li>\n</ul>\n<h4>2.2.8</h4>\n<p><em>Release Date &#8211; 27th May, 2010</em></p>\n<ul>\n<li>Fix bug in initial comment check for ipv6 addresses</li>\n<li>Report comments as ham when they are moved from spam to moderation</li>\n<li>Report comments as ham when clicking undo after spam</li>\n<li>Use transition_comment_status action when available instead of older actions for spam/ham submissions</li>\n<li>Better diagnostic messages when PHP network functions are unavailable</li>\n<li>Better handling of comments by logged-in users</li>\n</ul>\n<h4>2.2.7</h4>\n<p><em>Release Date &#8211; 17th December, 2009</em></p>\n<ul>\n<li>Add a new AKISMET_VERSION constant</li>\n<li>Reduce the possibility of over-counting spam when another spam filter plugin is in use</li>\n<li>Disable the connectivity check when the API key is hard-coded for WPMU</li>\n</ul>\n<h4>2.2.6</h4>\n<p><em>Release Date &#8211; 20th July, 2009</em></p>\n<ul>\n<li>Fix a global warning introduced in 2.2.5</li>\n<li>Add changelog and additional readme.txt tags</li>\n<li>Fix an array conversion warning in some versions of PHP</li>\n<li>Support a new WPCOM_API_KEY constant for easier use with WordPress MU</li>\n</ul>\n<h4>2.2.5</h4>\n<p><em>Release Date &#8211; 13th July, 2009</em></p>\n<ul>\n<li>Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls</li>\n</ul>\n<h4>2.2.4</h4>\n<p><em>Release Date &#8211; 3rd June, 2009</em></p>\n<ul>\n<li>Fixed a key problem affecting the stats feature in WordPress MU</li>\n<li>Provide additional blog information in Akismet API calls</li>\n</ul>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>Upload the Akismet plugin to your blog, Activate it, then enter your <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a>.</p>\n<p>1, 2, 3: You&#8217;re done!</p>\n</dd>\n</dl>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/plugins/akismet/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n		\n		\n		\n		\n		\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Oct 2010 20:55:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins-wp/wordpress-seo/\";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:90:\"WordPress out of the box is already technically quite a good platform for SEO. This&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:12921:\"<p><!--section=description--></p>\n<p>WordPress out of the box is already technically quite a good platform for SEO. This was true when Joost wrote his original <a href=\"https://yoast.com/articles/wordpress-seo/\" rel=\"nofollow\">WordPress SEO</a> article in 2008 (updated every few months) and it&#8217;s still true today, but that doesn&#8217;t mean you can&#8217;t improve it further! This plugin is written from the ground up by Joost de Valk and his team at <a href=\"https://yoast.com/\" rel=\"nofollow\">Yoast</a> to improve your site&#8217;s SEO on <em>all</em> needed aspects. While this <a href=\"https://yoast.com/wordpress/plugins/seo/\" rel=\"nofollow\">Yoast SEO plugin</a> goes the extra mile to take care of all the technical optimization, more on that below, it first and foremost helps you write better content.  Yoast SEO forces you to choose a focus keyword when you&#8217;re writing your articles, and then makes sure you use that focus keyword everywhere.</p>\n<blockquote>\n<p><strong>Premium Support</strong><br />\n  The Yoast team does not always provide active support for the Yoast SEO plugin on the WordPress.org forums. One-on-one email support is available to people who bought the <a href=\"https://yoast.com/wordpress/plugins/seo-premium/\" rel=\"nofollow\">Premium Yoast SEO plugin</a> only.<br />\n  Note that the Premium SEO plugin has several extra features too, including the option to have multiple focus keywords and a redirect manager, so it might be well worth your investment!</p>\n<p>You should also check out the <a href=\"https://yoast.com/wordpress/plugins/local-seo/\" rel=\"nofollow\">Yoast Local SEO</a>, <a href=\"https://yoast.com/wordpress/plugins/news-seo/\" rel=\"nofollow\">Yoast News SEO</a> and <a href=\"https://yoast.com/wordpress/plugins/video-seo/\" rel=\"nofollow\">Yoast Video SEO</a> extensions to Yoast SEO. These of course come with support too.</p>\n<p><strong>Bug Reports</strong><br />\n  Bug reports for Yoast SEO are <a href=\"https://github.com/Yoast/wordpress-seo\" rel=\"nofollow\">welcomed on GitHub</a>. Please note GitHub is <em>not</em> a support forum, and issues that aren&#8217;t properly qualified as bugs will be closed.</p>\n</blockquote>\n<h4>Write better content with Yoast SEO</h4>\n<p>Using the snippet preview, you can see a rendering of what your post or page will look like in the search results, whether your title is too long or too short, and whether your meta description makes sense in the context of a search result. This way the plugin will help you not only increase rankings but also increase the click through rate for organic search results.</p>\n<h4>Page Analysis</h4>\n<p>The Yoast SEO plugins <a href=\"https://yoast.com/content-seo-wordpress-linkdex/\" rel=\"nofollow\">Page Analysis</a> functionality checks simple things you&#8217;re bound to forget. It checks, for instance, if you have images in your post and whether they have an alt tag containing the focus keyword for that post. It also checks whether your posts are long enough, whether you&#8217;ve written a meta description and if that meta description contains your focus keyword, if you&#8217;ve used any subheadings within your post, etc. etc.</p>\n<p>The plugin alsgruo allows you to write meta titles and descriptions for all your category, tag and custom taxonomy archives, giving you the option to further optimize those pages.</p>\n<p>Combined, this plugin makes sure that your content is the type of content search engines will love!</p>\n<h4>Technical WordPress Search Engine Optimization</h4>\n<p>While out of the box WordPress is pretty good for SEO, it needs some tweaks here and there. This Yoast SEO plugin guides you through some of the settings needed, for instance by reminding you to enable pretty permalinks. But it also goes beyond that, by automatically optimizing and inserting the meta tags and link elements that Google and other search engines like so much:</p>\n<h4>Meta &amp; Link Elements</h4>\n<p>With the Yoast SEO plugin you can control which pages Google shows in its search results and which pages it doesn&#8217;t show. By default, it will tell search engines to index all of your pages, including category and tag archives, but to only show the first pages in the search results. It&#8217;s not very useful for a user to end up on the third page of your &#8220;personal&#8221; category, right?</p>\n<p>WordPress itself only shows canonical link elements on single pages, but Yoast SEO makes it output canonical link elements everywhere. Google has recently announced they would also use <code>rel=\"next\"</code> and <code>rel=\"prev\"</code> link elements in the <code>head</code> section of your paginated archives. This plugin adds those automatically. See <a href=\"https://yoast.com/rel-next-prev-paginated-archives/\" rel=\"nofollow\">this post</a> for more info.</p>\n<h4>XML Sitemaps</h4>\n<p>The Yoast SEO plugin has the most advanced XML Sitemaps functionality in any WordPress plugin. Once you check the box, it automatically creates XML sitemaps and notifies Google &amp; Bing of the sitemaps&#8217; existence. These XML sitemaps include the images in your posts &amp; pages too, so that your images may be found better in the search engines too.</p>\n<p>These XML Sitemaps will even work on large sites, because of how they&#8217;re created, using one index sitemap that links to sub-sitemaps for each 1,000 posts. They will also work with custom post types and custom taxonomies automatically, while giving you the option to remove those from the XML sitemap should you wish to.</p>\n<p>Because of using <a href=\"https://yoast.com/xsl-stylesheet-xml-sitemap/\" rel=\"nofollow\">XSL stylesheets for these XML Sitemaps</a>, the XML sitemaps are easily readable for the human eye too, so you can spot things that shouldn&#8217;t be in there.</p>\n<h4>RSS Optimization</h4>\n<p>Are you being outranked by scrapers? Instead of cursing at them, use them to your advantage! By automatically adding a link to your RSS feed pointing back to the original article, you&#8217;re telling the search engine where they should be looking for the original. This way, the Yoast SEO plugin increases your own chance of ranking for your chosen keywords and gets rid of scrapers in one go!</p>\n<h4>Breadcrumbs</h4>\n<p>If your theme is compatible, and themes based on for instance Genesis or by WooThemes often are, you can use the built-in Breadcrumbs functionality. This allows you to create an easy navigation that is great for both users and search engines, and will support the search engines in understanding the structure of your site.</p>\n<p>Making your theme compatible isn&#8217;t hard either, check <a href=\"https://kb.yoast.com/kb/implement-wordpress-seo-breadcrumbs/\" rel=\"nofollow\">these instructions</a>.</p>\n<h4>Edit your .htaccess and robots.txt file</h4>\n<p>Using the built-in file editor, you can edit your WordPress blog&#8217;s <code>.htaccess</code> and <code>robots.txt</code> file, giving you direct access to the two most powerful files, from an SEO perspective, in your WordPress install.</p>\n<h4>Social Integration</h4>\n<p>SEO and Social Media are heavily intertwined. That&#8217;s why this plugin also comes with a Facebook OpenGraph implementation and will soon also support Google+ sharing tags.</p>\n<h4>Multi-Site Compatible</h4>\n<p>The Yoast SEO plugin, unlike some others, is fully Multi-Site compatible. The XML Sitemaps work fine in all setups and you even have the option, in the Network settings, to copy the settings from one blog to another, or make blogs default to the settings for a specific blog.</p>\n<h4>Import &amp; Export functionality</h4>\n<p>If you have multiple blogs, setting up plugins like this one on all of them might seem like a daunting task. Except that it&#8217;s not, because what you can do is simple: you set up the plugin once. You then export your settings and simply import them on all your other sites. It&#8217;s that simple!</p>\n<h4>Import functionality for other WordPress SEO plugins</h4>\n<p>If you&#8217;ve used All In One SEO Pack or HeadSpace2 before using this plugin, you might want to import all your old titles and descriptions. You can do that easily using the built-in import functionality. There&#8217;s also import functionality for some of the older Yoast plugins, like Robots Meta and RSS footer.</p>\n<p>Should you have a need to import from another SEO plugin to Yoast SEO, or from a theme like Genesis or Thesis, you can use the <a href=\"https://wordpress.org/extend/plugins/seo-data-transporter/\" rel=\"nofollow\">SEO Data Transporter</a> plugin, which will easily convert your SEO meta data from and to a whole set of plugins like Platinum SEO, SEO Ultimate, Greg&#8217;s High Performance SEO, and themes like Headway, Hybrid, WooFramework, Catalyst etc.</p>\n<p>Read <a href=\"https://yoast.com/all-in-one-seo-pack-migration/\" rel=\"nofollow\">this migration guide</a> if you still have questions about migrating from another SEO plugin to Yoast SEO.</p>\n<h4>Yoast SEO Plugin in your Language!</h4>\n<p>Currently a huge translation project is underway, translating Yoast SEO in as much as 24 languages. So far, the translations for French and Dutch are complete, but we still need help on a lot of other languages, so if you&#8217;re good at translating, please join us at <a href=\"http://translate.yoast.com\" rel=\"nofollow\">translate.yoast.com</a>.</p>\n<h4>News SEO</h4>\n<p>Be sure to also check out the premium <a href=\"https://yoast.com/wordpress/plugins/news-seo/\" rel=\"nofollow\">News SEO module</a> if you need Google News Sitemaps. It tightly integrates with Yoast SEO to give you the combined power of News Sitemaps and full Search Engine Optimization.</p>\n<h4>Further Reading</h4>\n<p>For more info, check out the following articles:</p>\n<ul>\n<li>The <a href=\"https://kb.yoast.com/kb/category/yoast-seo/\" rel=\"nofollow\">Yoast SEO Knowledgebase</a>.</li>\n<li><a href=\"https://yoast.com/articles/wordpress-seo/\" rel=\"nofollow\">WordPress SEO &#8211; The definitive Guide by Yoast</a>.</li>\n<li>Once you have great SEO, you&#8217;ll need the <a href=\"https://yoast.com/articles/wordpress-hosting/\" rel=\"nofollow\">best WordPress Hosting</a>.</li>\n<li>The <a href=\"https://yoast.com/wordpress/plugins/seo/\" rel=\"nofollow\">Yoast SEO Plugin</a> official homepage.</li>\n<li>Other <a href=\"https://yoast.com/wordpress/plugins/\" rel=\"nofollow\">WordPress Plugins</a> by the same team.</li>\n<li>Follow Yoast on <a href=\"https://facebook.com/yoast\" rel=\"nofollow\">Facebook</a> &amp; <a href=\"http://twitter.com/yoast\" rel=\"nofollow\">Twitter</a>.</li>\n</ul>\n<h3>From within WordPress</h3>\n<ol>\n<li>Visit &#8216;Plugins &gt; Add New&#8217;</li>\n<li>Search for &#8216;Yoast SEO&#8217;</li>\n<li>Activate Yoast SEO from your Plugins page.</li>\n<li>Go to &#8220;after activation&#8221; below.</li>\n</ol>\n<h3>Manually</h3>\n<ol>\n<li>Upload the <code>wordpress-seo</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the Yoast SEO plugin through the &#8216;Plugins&#8217; menu in WordPress</li>\n<li>Go to &#8220;after activation&#8221; below.</li>\n</ol>\n<h3>After activation</h3>\n<ol>\n<li>You should see (a notice to start) the Yoast SEO configuration wizard.</li>\n<li>Go through the configuration wizard and set up the plugin for your site.</li>\n<li>You&#8217;re done!</li>\n</ol>\n<p><!--section=faq--></p>\n<p>You&#8217;ll find answers to many of your questions on <a href=\"https://kb.yoast.com/kb/category/yoast-seo/\" rel=\"nofollow\">kb.yoast.com</a>.</p>\n<p><!--section=changelog--></p>\n<h4>4.7.1</h4>\n<p>Release Date: May 9th, 2017</p>\n<ul>\n<li>Bugfixes\n<ul>\n<li>Fixes a bug where the analysis wouldn&#8217;t work on Internet Explorer.</li>\n</ul>\n</li>\n</ul>\n<h4>4.7.0</h4>\n<p>Release Date: May 2nd, 2017</p>\n<ul>\n<li>\n<p>Enhancements</p>\n<ul>\n<li>Adds transition words for Italian.</li>\n<li>Adds a new check in the analysis for the presence of at least one internal link.</li>\n</ul>\n</li>\n<li>\n<p>Bugfixes</p>\n<ul>\n<li>Fixes a bug where the <code>_yst_is_cornerstone</code> meta value was not prefixed, causing some themes/plugins to output this meta value.</li>\n<li>Fixes a bug where style and script elements were parsed for the prominent words.</li>\n<li>Fixes a bug where the cursor pointer was in front of the metabox.</li>\n</ul>\n</li>\n</ul>\n<h4>4.6.0</h4>\n<p>Release Date: April 11th, 2017</p>\n<ul>\n<li>\n<p>Enhancements</p>\n<ul>\n<li>Improves a language string, props <a href=\"https://github.com/Soean\" rel=\"nofollow\">Sören Wrede</a>.</li>\n<li>Improves the configuration wizard with clear information about the configuration.</li>\n<li>Adds the ability to mark posts as cornerstone content.</li>\n</ul>\n</li>\n<li>\n<p>Bugfixes</p>\n<ul>\n<li>Fixes an issue in combination with WooCommerce 3.0 where the plugins would load incompatible select2 versions.</li>\n</ul>\n</li>\n</ul>\n<h4>Earlier versions</h4>\n<p>For the changelog of earlier versions, please refer to the separate changelog.txt file.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://wordpress.org/plugins/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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/jetpack/#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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins-wp/jetpack/\";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:112:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection,&#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/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:38101:\"<p><!--section=description--></p>\n<p>Keep any WordPress site secure, increase traffic, and engage your readers.</p>\n<h4>Traffic and SEO Tools</h4>\n<p>Traffic is the lifeblood of any website. Jetpack includes:</p>\n<ul>\n<li>[free] Site stats and analytics</li>\n<li>[free] Automatic sharing on Facebook, Twitter, LinkedIn, Tumblr, Reddit, and WhatsApp</li>\n<li>[free] Related posts</li>\n<li>[paid] Search engine optimization tools for Google, Bing, Twitter, Facebook, and WordPress.com</li>\n<li>[paid] Advertising program that includes the best of AdSense, Facebook Ads, AOL, Amazon, Google AdX, and Yahoo</li>\n</ul>\n<h4>Security and Backup Services</h4>\n<p>Stop worrying about data loss, downtime, and hacking. Jetpack provides:</p>\n<ul>\n<li>[free] Brute force attack protection</li>\n<li>[free] Downtime and uptime monitoring</li>\n<li>[free] Secured logins and two-factor authentication</li>\n<li>[paid] Malware scanning, code scanning, and threat resolution</li>\n<li>[paid] Site backups, restores, and migrations</li>\n</ul>\n<h4>Content Creation</h4>\n<p>Add rich, beautifully-presented media &#8212; no graphic design expertise necessary:</p>\n<ul>\n<li>[free] A high-speed CDN for your images</li>\n<li>[free] Carousels, slideshows, and tiled galleries</li>\n<li>[free] Simple embeds from YouTube, Google Documents, Spotify and more</li>\n<li>[free] Sidebar customization including Facebook, Twitter, and RSS feeds</li>\n<li>[free] Extra sidebar widgets including blog stats, calendar, and author widgets</li>\n<li>[paid] High-speed, ad-free, and high-definition video hosting</li>\n</ul>\n<h4>Discussion and Community</h4>\n<p>Create a connection with your readers and keep them coming back to your site with:</p>\n<ul>\n<li>[free] Email subscriptions</li>\n<li>[free] Comment login with Facebook, Twitter, and Google</li>\n<li>[free] Fully-customizable contact forms</li>\n<li>[free] Infinite scroll for your posts</li>\n</ul>\n<h4>Expert Support</h4>\n<p>We have an entire team of Happiness Engineers ready to help you. Ask your questions in the support forum, or <a href=\"https://jetpack.com/contact-support\" rel=\"nofollow\">contact us directly</a>.</p>\n<h4>Paid Services</h4>\n<p>Most of Jetpack&#8217;s features and services are free. Jetpack also provides advanced security and backup services, video hosting, site monetization, priority support, and more SEO tools in three <a href=\"https://jetpack.com/pricing?from=wporg\" rel=\"nofollow\">simple and affordable plans</a>.</p>\n<h4>Get Started</h4>\n<p>Installation is free, quick, and easy. Set up <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">the free plan</a> in minutes.</p>\n<p><!--section=installation--></p>\n<h4>Automated Installation</h4>\n<p>Installation is free, quick, and easy. <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">Install Jetpack from our site</a> in minutes.</p>\n<h4>Manual Alternatives</h4>\n<p>Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help <a href=\"http://jetpack.com/support/installing-jetpack/\" rel=\"nofollow\">read our detailed instructions</a>.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<h4>Automated Installation</h4>\n<p>Installation is free, quick, and easy. <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">Install Jetpack from our site</a> in minutes.</p>\n<h4>Manual Alternatives</h4>\n<p>Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help <a href=\"http://jetpack.com/support/installing-jetpack/\" rel=\"nofollow\">read our detailed instructions</a>.</p>\n</dd>\n<dt>Is Jetpack Free?</dt>\n<dd>\n<p>Yes! Jetpack&#8217;s core features are and always will be free.</p>\n<p>These include: <a href=\"https://jetpack.com/features/traffic/site-stats\" rel=\"nofollow\">site stats</a>, a <a href=\"https://jetpack.com/features/writing/content-delivery-network/\" rel=\"nofollow\">high-speed CDN</a> for images, <a href=\"https://jetpack.com/features/traffic/related-posts\" rel=\"nofollow\">related posts</a>, <a href=\"https://jetpack.com/features/security/downtime-monitoring\" rel=\"nofollow\">downtime monitoring</a>, brute force <a href=\"https://jetpack.com/features/security/brute-force-attack-protection\" rel=\"nofollow\">attack protection</a>, <a href=\"https://jetpack.com/features/traffic/automatic-publishing/\" rel=\"nofollow\">automated sharing</a> to social networks, <a href=\"https://jetpack.com/features/writing/sidebar-customization/\" rel=\"nofollow\">sidebar customization</a>, and many more.</p>\n</dd>\n<dt>Should I purchase a paid plan?</dt>\n<dd>\n<p>Jetpack&#8217;s paid services include automated backups, security scanning, spam filtering, video hosting, site monetization, SEO tools, and priority support.</p>\n<p>If you&#8217;re interested in learning more about the extra layers of protection and advanced tools available, learn more about our <a href=\"https://jetpack.com/pricing?from=wporg\" rel=\"nofollow\">paid plans</a>.</p>\n</dd>\n<dt>Why do I need a WordPress.com account?</dt>\n<dd>\n<p>Since Jetpack and its services are provided and hosted by WordPress.com, a WordPress.com account is required for Jetpack to function.</p>\n</dd>\n<dt>I already have a WordPress account, but Jetpack isn&#8217;t working. What&#8217;s going on?</dt>\n<dd>\n<p>A WordPress.com account is different from the account you use to log into your self-hosted WordPress. If you can log into <a href=\"https://wordpress.com\" rel=\"nofollow\">WordPress.com</a>, then you already have a WordPress.com account. If you can&#8217;t, you can easily create one <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">during installation</a>.</p>\n</dd>\n<dt>How do I view my stats?</dt>\n<dd>\n<p>Once you&#8217;ve installed Jetpack your stats will be available on <a href=\"https://wordpress.com/stats\" rel=\"nofollow\">WordPress.com/Stats</a>, on the official <a href=\"https://apps.wordpress.com/mobile/\" rel=\"nofollow\">WordPress mobile apps</a>, and on your Jetpack dashboard.</p>\n</dd>\n<dt>How do I contribute to Jetpack?</dt>\n<dd>\n<p>There are opportunities for developers at all levels to contribute. <a href=\"https://jetpack.com/contribute\" rel=\"nofollow\">Learn more about contributing to Jetpack</a> or consider <a href=\"https://jetpack.com/beta\" rel=\"nofollow\">joining our beta program</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>4.9</h4>\n<ul>\n<li>Release date: May 2nd, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4Rl</li>\n</ul>\n<p><strong>Major Enhancements</strong></p>\n<ul>\n<li>New &#8220;EU Cookie Law Banner&#8221;, Flickr, and &#8220;Internet Defense League&#8221; widgets.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements</strong></p>\n<ul>\n<li>Success notices are automatically dismissed after a short period.</li>\n<li>Removed unused code from &#8220;My Jetpack&#8221; interface and deprecated an XML-RPC method.</li>\n<li>Contact Form now adds display names to email addresses in the <code>To</code> header.</li>\n<li>Added an updated multiple unit tests increasing code coverage.</li>\n<li>Development mode now also shows module list.</li>\n<li>Updated the list of locales available in Jetpack.</li>\n<li>Plugin auto-updates only triggered from WordPress.com and now trigger WordPress&#8217; maintenance mode.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>Record comment content modifications and moderation events to make sure comments are always up to date on WordPress.com.</li>\n<li>Sync post deletions, changes to sidebar, user events (addition, removal, and update) and theme installation.</li>\n<li>We now distinguish between a new and an updated attachment.</li>\n<li>Sync plugin and theme names when a related event is triggered including theme updates.</li>\n</ul>\n<p><strong>Compatibility Improvements</strong></p>\n<ul>\n<li>Protect avoid conflicts with other plugins hooking into the log in form.</li>\n<li>Contact Form not auto-activated when Ninja Forms is active.</li>\n<li>WordPess.com REST API now allows <code>HTTP PUT</code> requests.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Fixed wording in Post By Email button when no email address has been generated.</li>\n<li>Fixed a notice in the subscription widget in PHP 7.1</li>\n<li>Properly display VaultPress notices in the Jetpack dashboard.</li>\n<li>VideoPress now included in search results for &#8220;video&#8221; and fixed positioning of search icon on mobile screens.</li>\n<li>Protect supports IPv6 addresses properly.</li>\n<li>Dashboard avoids API requests being cached on some hosts and avoids errors when Spellchecker is inactive.</li>\n<li>Contact Form message content type is now set properly to restore compatibility with email plugins.</li>\n<li>Ads not displayed in the portfolio projects custom content type.</li>\n<li>Display all sites available in a network, even on large multisite installations.</li>\n<li>Featured Image is always used in tweets posted via Publicize.</li>\n<li>Avoid fatal errors when the exclusion parameter in Related Posts is not a string.</li>\n<li>Allow the removal of all custom title settings in the SEO feature.</li>\n<li>Make sure images are not distorted when Tiled Galleries uses Photon.</li>\n<li>Avoid PHP warnings and errors in the Stats dashboard on Multisite.</li>\n<li>Avoid errors when the Jetpack plugin is deleted.</li>\n</ul>\n<h4>4.8.2</h4>\n<ul>\n<li>Release date: April 7th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4P0</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Fixed a bug that prevented activating/deactivating of some features in PHP versions below 5.4.</li>\n<li>Removed an unused function that was also incompatible with PHP versions below 5.4.</li>\n<li>Fixed a bug that was causing a blank Jetpack admin area.</li>\n</ul>\n<h4>4.8.1</h4>\n<ul>\n<li>Release date: April 5th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4N5</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>An incompatibility with PHP versions lower than 5.4 was introduced in the last release, causing a fatal error and we&#8217;ve immediately fixed this.</li>\n<li>Sitemaps: Some plugins were relying on a function that was removed in the last release, which has been fixed.</li>\n<li>General: Clicking on the info icon in the settings area will no longer jump to the top of the page.</li>\n<li>General: The Anti-spam card will always display the correct status in the Jetpack dashboard.</li>\n</ul>\n<h4>4.8</h4>\n<ul>\n<li>Release date: April 4th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4gA</li>\n</ul>\n<p><strong>Major Enhancements</strong></p>\n<ul>\n<li>Easier to navigate Jetpack&#8217;s feature settings in your dashboard and WordPress.com.</li>\n<li>New WordPress.com Toolbar provides quick access to site management, stats, and other services.</li>\n<li>New MailChimp Subscribe Popup widget.</li>\n<li>Sitemaps are faster and now support sites with a very large amount of posts.</li>\n<li>Contact Form now has a plain-text alternative and better avoids spam filters.</li>\n<li>Debug form includes extra information to better prioritize your support requests.</li>\n<li>Photon can now be used within the dashboard, and supports bbPress topics and replies.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements</strong></p>\n<ul>\n<li>Improved previously confusing wording in Stats dashboard, and Featured Content options.</li>\n<li>You can now embed Apple Keynotes straight from icloud.com in your posts and pages.</li>\n<li>Changed Infinite Scroll button text on taxonomy page and added a new filter to short-circuit the <code>is_last_batch()</code> method.</li>\n<li>Open Graph now uses transients to save image IDs.</li>\n<li>You can now use full URLs in the Social Media Icons widget.</li>\n<li>Milestone widget now allows custom links to open in a new window.</li>\n<li>VideoPress videos can be used as headers in themes that support it, like Twenty Seventeen.</li>\n<li>Extracted the timezone offset method from the Upcoming Events widget so it can be used by other features.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>Database load is reduced during updates on large sites with multiple servers by retaining hashes for current and current-1 versions.</li>\n<li>Disk storage is reduced on large multisite networks by storing the <code>jetpack_file_data</code> option in the <code>wp_sitemeta</code> table.</li>\n<li>Jetpack plan data now uses the WordPress.com REST API.</li>\n<li>Slovakian language files now rely on WordPress.org&#8217;s language packs.</li>\n</ul>\n<p><strong>Accessibility Improvements</strong></p>\n<ul>\n<li>Improved post details clipping for better screen reader support.</li>\n<li>Updated custom language packs for multiple languages.</li>\n</ul>\n<p><strong>Security Improvements</strong></p>\n<ul>\n<li>We now avoid path disclosure via cookies in PHP error messages.</li>\n</ul>\n<p><strong>Compatibility Improvements</strong></p>\n<ul>\n<li>Removed deprecated functions <code>get_theme</code> and <code>get_current_theme</code>.</li>\n<li>Publicize now works with third-party plugins like WP Recipe Maker.</li>\n<li>Open Graph Meta Tags are now enabled when you use the &#8220;Head, Footer and Post Injections&#8221; plugin.</li>\n<li>Better support for WooCommerce data sync and backup.</li>\n<li>We now also sync the <code>sync_via_cron</code> setting, the user&#8217;s chosen language, and WP Super Cache&#8217;s globals and constants.</li>\n<li>We no longer sync post types from the WordPress Automatic Plugin and RSS AutoPilot to avoid synchronization issues.</li>\n<li>Sync settings can now be edited from the WordPress.com REST API to better troubleshoot sync issues.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Gravatar is always displayed in Settings.</li>\n<li>Submenu items always use relative links.</li>\n<li>Contact Form avoids PHP notices when using the form in a Text widget.</li>\n<li>Content Options now correctly displays single characters word count on sites with multibyte languages.</li>\n<li>Administrator area translations fixed for several languages.</li>\n<li>Added proper support for Formal/Informal translation versions for languages that support them.</li>\n<li>Site Icons are always used as fallback Open Graph Image tags.</li>\n<li>Protect removes port number when server returns a port alongside a stored IP address.</li>\n<li>Filters ensure that more than 1,024 posts can be excluded from Related Posts.</li>\n<li>When the email is already subscribed we now show the correct notification in the subscription form.</li>\n<li>When using the Email sharing button, we now avoid syntax errors due to unexpected characters in the from name.</li>\n<li>Remove deprecated <code>jetpack_publicize_post</code> action.</li>\n<li>VideoPress now avoids PHP Notices when fetching video information.</li>\n<li>Instagram base URL now uses <code>www</code> in the Social Media Icons widget.</li>\n<li>All values entered in Facebook Page Plugin widget settings are now escaped.</li>\n<li>Widget Visibility now avoids memory issues on sites with a lot of registered users.</li>\n</ul>\n<h4>4.7.1</h4>\n<ul>\n<li>Release date: March 14th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-48Y</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Carousel: avoid javascript errors that may cause issues with Slideshows or Tiled Galleries.</li>\n<li>Markdown: always enable Markdown for posts whenever the module is active.</li>\n<li>Sharing: make sure that sharing buttons open in a small pop-up instead of a separate window.</li>\n<li>SSO: Avoid token or nonce errors when trying to log in to your site via the Secure Sign On option.</li>\n<li>VideoPress: add in the ability to get video thumbnails from the WordPress.com REST API.</li>\n<li>Widgets: improve rendering of the Image Widget via Photon.</li>\n<li>Widget Visibility: avoid empty widget visibility rules after updating to Jetpack 4.7.</li>\n<li>Widget Visibility: restore the option to make widgets appear on archive pages of different Custom Post Types.</li>\n<li>Widget Visibility: migrate widget visibility settings to the new major Page rule for Custom Post Types.</li>\n<li>Widget Visibility: add missing CSS for widget visibility settings on sites using an RTL language.</li>\n</ul>\n<h4>4.7</h4>\n<ul>\n<li>Release date: March 7th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-46L</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Quickly jump to post specific stats on WordPress.com with a new link.</li>\n<li>We&#8217;ve added more information to our debug tools to improve your support experience.</li>\n<li>New HTML5 versions of our house ads are out.</li>\n<li>Display custom copyright EXIF information in the Carousel with this new filter.</li>\n<li>We&#8217;ve highlighted the ability to export Contact Form feedback as it was being overlooked.</li>\n<li>If you have images on WordPress.com we&#8217;re going to skip using Photon when the images include resize parameters.</li>\n<li>It is now possible to use the Sharing filter to customize the emails sent from the Email Sharing button.</li>\n<li>We&#8217;ve updated the library powering the Print link in the Recipe shortcode.</li>\n<li>Customize the speed and display of your slideshows with new Slideshow shortcode filters.</li>\n<li>The Twitch.tv shortcode now uses Twitch&#8217;s new embedded player.</li>\n<li>Social Menus now come with the option to use SVG icons.</li>\n<li>Customize the content of the Display Posts Widget with a new filter.</li>\n<li>We&#8217;ve added a new email field to the Contact Info Widget.</li>\n<li>The Image and the Text widgets now use Photon if it is enabled.</li>\n<li>The WordPress.com REST API got several updates including using <code>register_rest_route()</code> consistently for registering, new date and time format settings, a filter for theme info results, new links and endpoints, and more.</li>\n<li>We cleaned up the Google+ Shortcode JS library and added a way to filter the SlideShare shortcode.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>Experience better performance with single page load caching of the media summary.</li>\n<li>We made some improvements to avoid slow queries on sites with thousands of images.</li>\n<li>The Top Posts widget now utilizes an endpoint from the WP.com REST API improving performance.</li>\n<li>Improve development mode performance by only calling <code>site_url()</code> once.</li>\n<li>We rewrote the way major/minor rules lists are generated to save bandwidth, and memory for sites using Widget Visibility.</li>\n<li>We&#8217;ve removed sync options that weren&#8217;t needed to save memory during the sync process.</li>\n</ul>\n<p><strong>Accessibility</strong></p>\n<ul>\n<li>We&#8217;ve improved the highlight of the stats range for a better visual experience and to make it consistent with other areas of the dashboard.</li>\n<li>Added a missing label to one of the fields in the Email sharing dialog.</li>\n<li>We&#8217;ve enabled keyboard focus styling in the new admin interface.</li>\n<li>Increased padding to sharing buttons on mobile to avoid usability issues.</li>\n<li>We&#8217;ve replaced Widget Visibility text labels with icons to improve usability on smaller devices.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements:</strong></p>\n<ul>\n<li>We&#8217;ve added a filter to allow you to remove the Comment Form title.</li>\n<li>The Development Mode notice got an update to include all possible options to activate Development mode.</li>\n<li>Jetpack registration function got an update and cleanup.</li>\n<li>A notice displayed to WooCommerce store owners now detects when WooCommerce Services is installed, but not active.</li>\n<li>We&#8217;ve removed the Holiday Snow settings until you need them.</li>\n<li>Improved Infinite Scroll settings to reduce confusion.</li>\n<li>The HTML classes <code>infinite-scroll</code> and <code>neverending</code> are now applied using JS instead of PHP.</li>\n<li>We&#8217;ve updated the support link appearing when you&#8217;re locked out of your site.</li>\n<li>New Unit Tests were added to make sure Publicize doesn&#8217;t break when making changes to the Publicize process.</li>\n<li>We&#8217;ve added a sync filter to allow customizing timeout.</li>\n<li>The Top Posts widget now supports non-square image sizes.</li>\n<li>Added the Video GUID to the media API endpoint.</li>\n</ul>\n<p><strong>Improved Compatibility</strong></p>\n<ul>\n<li>Fixed some W3C validation errors in Comments.</li>\n<li>Infinite Scroll now works beautifully with the Twenty Seventeen Theme.</li>\n<li>Translate new terms easier with an improvement to the translator comments.</li>\n<li>We switched to use Core functions to retrieve the list of sites in a multisite network for more accurate results.</li>\n<li>We added Product visibility to post meta whitelist, for better control of products displayed in Related Posts.</li>\n<li>We no longer sync specific post meta data added by Postman or WP RSS Mutli Importer to avoid performance issues during the sync process.</li>\n<li>We&#8217;re now avoiding conflicts with plugins adding the core Video upload library to the post editor.</li>\n<li>Removed deprecated compatibility code for older versions of WordPress.</li>\n<li>We had some Shortcode conflicts with WordPress Post embeds, but that&#8217;s been fixed.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>The Carousel <code>jp_carousel_load_for_images_linked_to_file</code> filter wasn&#8217;t working well with Photon, this has been fixed.</li>\n<li>Carousel is now working well when loaded from infinite scroll.</li>\n<li>We removed double slashes from file paths in the Contact Form to avoid errors in specific server environments.</li>\n<li>Fixed a problem where CSS was being stripped when migrating from Jetpack&#8217;s Custom CSS to Core&#8217;s CSS editor.</li>\n<li>Our Debug Tool is now reporting the correct URL when WordPress lives in a subdirectory.</li>\n<li>Found and fixed a PHP error when uninstalling Jetpack.</li>\n<li>Infinite Scroll is no longer buggy when displaying the last page, and is more compatible with certain themes that were returning posts when there were none left to show.</li>\n<li>We&#8217;re now skipping Photon for .ashx files.</li>\n<li>The Twitter character counter in Publicize got a fix to display info correctly.</li>\n<li>Related Posts are now displaying correctly for everyone, and we brought back the <code>jetpack_sharing_headline_html</code> filter.</li>\n<li>We&#8217;ve improved Sharing to render custom sharing services correctly, include Open Graph Meta Tags, and avoid JavaScript errors when jQuery is enqueued in the footer.</li>\n<li>Synchronization scheduling issues have been resolved.</li>\n<li>We&#8217;re now trimming spaces in URLs for Image and Display Posts Widgets.</li>\n<li>Widget Visibility wasn&#8217;t playing nice on taxonomy pages, this is no longer the case.</li>\n<li>The WordPress.com REST API received a couple of fixes to remove PHP errors when editing via the WordPress.com interface, authentication errors when using third-party apps, and permission errors when trying to preview edited posts in the WordPress.com editor.</li>\n</ul>\n<h4>4.6</h4>\n<ul>\n<li>Release date: February 7, 2017</li>\n<li>Release post: http://wp.me/p1moTy-40g</li>\n</ul>\n<p><strong>New Features and Improvements</strong></p>\n<ul>\n<li>Enable Google Analytics without touching a line of code with this new Jetpack feature.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>We&#8217;ve updated all outbound links to use HTTPS to improve performance and security.</li>\n<li>Photon now leverages a new WordPress core function to improve performance a bit.</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Keep an eye out for a note from WooCommerce on how your e-commerce store may benefit from our new USPS and CanadaPost shipping functionality.</li>\n<li>We&#8217;ve added an error message if Publicize isn&#8217;t functioning as it should be.</li>\n<li>The Twitter Widget timeline now displays the tweet limit count as 20, prior to this it appeared to have no limit.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements:</strong></p>\n<ul>\n<li>In an effort to help us better understand features that are being used, Twitter&#8217;s timeline widget and Twitter&#8217;s shortcodes now pass Jetpack&#8217;s partner ID.</li>\n<li>We&#8217;ve added new API endpoints allowing us to enable translation auto-updates and pull post rows and metadata for backups.</li>\n<li>We&#8217;re now retrieving all feature settings in the readable <code>/settings</code> endpoint.</li>\n</ul>\n<p><strong>Improved Compatibility</strong></p>\n<ul>\n<li>We&#8217;ve eliminated some notices and warnings when using Jetpack on a server running PHP 7.1 or on servers where <code>print_r()</code> is disabled.</li>\n<li>Photon now avoids PHP notices when your site is using plugins that do srcset CDN replacement.</li>\n<li>When the sharing options appear to be incorrect due to site configuration issues we force it to retrieve the right options avoiding potential fatal errors.</li>\n<li>We&#8217;ve added some shortcode CSS and widget class names prefixes to avoid conflicts with other plugins.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Some sites were using illegal multibyte characters and failing to sync posts, this has been fixed.</li>\n<li>IE11 was giving our admin layout a bit of a problem but we rectified that.</li>\n<li>There were some PHP notices popping up when a site has no posts so we got rid of them.</li>\n<li>The new Jetpack Ads feature will auto disable itself if your Jetpack plan doesn&#8217;t support the feature.</li>\n<li>We fixed a few PHP notices and warnings related to the Custom CSS feature.</li>\n<li>The connection banner&#8217;s &#8220;dismiss&#8221; icon was giving us a little trouble, but we got it fixed right up.</li>\n<li>The Likes feature was showing a PHP notice when there was no $post object, this has been fixed.</li>\n<li>We&#8217;ve brought back the Twitter Widget &#8220;noscrollbar&#8221; option.</li>\n<li>We&#8217;re now forcing only Photon URLs to HTTPS as your custom CDN URLs may use a different protocol.</li>\n<li>If a Publicize connection is not shared with all users on the site, do not trigger Publicize for the other users.</li>\n<li>Publicize was having trouble working with scheduled posts, this should be fixed now.</li>\n<li>SSO may not have been displaying the login form when using JSON API authorization.  Sorry about that, we&#8217;ve fixed it.</li>\n<li>We&#8217;ve eliminated some PHP notices that were showing with some Shortcodes.</li>\n<li>There was a Top Posts Widget image size issue when using list layouts, but is no longer causing issues.</li>\n<li>We fixed some notices and warnings when updating data from the WordPress.com central interface.</li>\n</ul>\n<h4>4.5</h4>\n<ul>\n<li>Release date: January 17, 2017</li>\n<li>Release post: http://wp.me/p1moTy-3Kc</li>\n</ul>\n<p>This release introduces a brand-new module, Jetpack Ads, a brand-new VideoPress feature, and a lot of new shortcodes and widgets.</p>\n<p><strong>Exciting New Features and Improvements:</strong></p>\n<ul>\n<li>Generate revenue from your site with an all-new WordAds feature, which when enabled displays high-quality ads for your visitors.</li>\n<li>Today we are proud to release a fully redesigned VideoPress interface for easy uploading, management, and add-free playback of your fantastic videos now fully integrated with your Jetpack Premium or Professional plans.</li>\n<li>Spice up your sidebar with new widgets that display blog stats, author info, &#8220;Follow my blog&#8221; buttons, and even an event countdown.</li>\n<li>Embed your amazing 360° photos with the VR shortcode</li>\n<li>Link your visitors to your Tumblr or Twitch pages using the new icons in the Social Media Icons Widget.</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Use the beautiful Jetpack carousel feature to display single images.</li>\n<li>Turn on and update Related Posts right from the Customizer.</li>\n<li>Customize the output of the Related Posts headline using a new filter.</li>\n</ul>\n<p><strong>Performance and Security Improvements:</strong></p>\n<ul>\n<li>Your Custom CSS will now be served in a separate stylesheet when it is more than 2,000 characters.</li>\n<li>Your Stats queries are now always being made over HTTPS.</li>\n<li>Holiday Snow files now load in the footer, but rest assured the snow still falls from above.</li>\n<li>We have improved Jetpack&#8217;s synchronization process to support more plugins and use less resources.</li>\n<li>The jQuery Cycle script used by slideshow galleries is now minified, resulting in faster loading times.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements:</strong></p>\n<ul>\n<li>The JSON API now allows updating translations and alternative theme installation methods.</li>\n<li>Public Custom Post Types are now automatically available via the WordPress.com REST API.</li>\n<li>We&#8217;ve added a token-based authentication mechanism to the REST API in order for the site to be able to receive authenticated requests from WordPress.com.</li>\n<li>Use <code>sync</code> commands in Jetpack&#8217;s WP CLI.</li>\n<li>You can now set the value for options directly in the Contact Form shortcode.</li>\n<li>Updated some verbiage around IP Whitelisting on the Protect settings screen.</li>\n<li>Custom sharing buttons got some new variables.</li>\n<li>RIP blip.tv — we&#8217;ve removed your shortcode.</li>\n<li>Improved Image and Display Posts Widget settings to provide more explanation and better error messages.</li>\n<li>We&#8217;ve added a few new Content Options to the Customizer for supported themes.</li>\n<li>Improved the Facebook Widget to avoid confusion when editing width and height settings.</li>\n<li>Added and improved a few shortcodes.</li>\n</ul>\n<p><strong>Improved Compatibility:</strong></p>\n<ul>\n<li>If your server is misconfigured and we can&#8217;t get an IP address we&#8217;re going to deactivate Protect and send you a notice so you&#8217;re in the loop.</li>\n<li>The WPML compatibility file wasn&#8217;t loading at the right time, but we&#8217;ve fixed that.</li>\n<li>We&#8217;ve improved compatibility with tools like Cavalcade to avoid stuck Cron jobs.</li>\n<li>Some selected WooCommerce data (order items and order item meta) are now syncing to WordPress.com.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>You&#8217;ll notice numerous design improvements to the Jetpack UI.</li>\n<li>Accessibility is important to us so we&#8217;ve made some improvements there.</li>\n<li>Missing attachments in the Carousel were causing an infinite loop, but we&#8217;ve corrected that.</li>\n<li>Eliminated a PHP Notice when running the CLI <code>wp jetpack</code> command.</li>\n<li>PHP warnings in the Restaurant Menu Post type have seen their last day with us.</li>\n<li>Fixed a bug that displayed the wrong connected user for up to 24 hours after they disconnected.</li>\n<li>Removed a deprecated function to prevent notices when using Infinite Scroll in the Customizer.</li>\n<li>Long titles in Jetpack widgets weren&#8217;t looking so great, so we cleaned them up.</li>\n<li>Before now you weren&#8217;t able to create a child category from WordPress.com. Now you can!</li>\n<li>Rogue colons were showing up in the related posts area on sites with the Twenty Fourteen and Twenty Sixteen themes.</li>\n<li>Fixed a ReCaptcha error on the Email sharing button.</li>\n<li>Confirmed Instagram embeds actually load when using Infinite Scroll.</li>\n<li>Site Icons now display on the WordPress.com site management interface.</li>\n<li>Set a default time limit of 30 seconds when sending sync requests via Cron.</li>\n<li>Synchronized supported shortcodes on a site.</li>\n<li>Fixed an issue where empty categories weren&#8217;t showing with the Widget Visibility feature dropdown.</li>\n<li>Fixed various little bugs when working with multiple widgets in the Customizer and in the Widgets admin screen.</li>\n<li>Added a Translate Widget default title in case you haven&#8217;t defined one.</li>\n<li>The Top Posts Widget now avoids layout issues when using the Grid layout while displaying a post without an image.</li>\n</ul>\n<h4>4.4.2</h4>\n<ul>\n<li>Release date: December 6, 2016</li>\n<li>Release post: http://wp.me/p1moTy-3JR</li>\n</ul>\n<p>This release improves Jetpack compatibility with WordPress 4.7.</p>\n<p><strong>Compatibility changes</strong></p>\n<ul>\n<li>Custom CSS: Made the Custom CSS feature of Jetpack compatible with the CSS Customizer editor in WordPress 4.7.</li>\n<li>Sync: improved compatibility with the wp-missed-schedule plugin.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Featured Content: made sure there is no infinite loop when removing the featured tag from the tag list.</li>\n<li>Admin: made sure help tabs are not being hidden.</li>\n<li>Admin: made At a Glance page work nicely when there is no backup data yet.</li>\n<li>Sync: now making sure that needed classes are loaded, preventing errors.</li>\n<li>Sync: cleared out unneeded scheduled jobs.</li>\n</ul>\n<h4>4.4.1</h4>\n<ul>\n<li>Release date: November 22, 2016</li>\n<li>Release post: http://wp.me/p1moTy-3JR</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Fixed an issue where some users with slower servers would get an error on the Jetpack dashboard when <code>WP_DEBUG</code> was enabled.</li>\n<li>Fixed an issue where users on a Jetpack Professional plan who were paying monthly (as opposed to annually) wouldn’t be able to enable SEO Tools.</li>\n</ul>\n<h4>4.4</h4>\n<ul>\n<li>Release date: November 21, 2016</li>\n<li>Release post: http://wp.me/p1moTy-3FE</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Additional unit tests have been added to improve Jetpack&#8217;s development process and stability.</li>\n<li>Custom post types have been added to the WP REST API output.</li>\n<li>Many of the screenshots throughout the plugin have been replaced by SVGs in order to make Jetpack smaller.</li>\n<li>New endpoints have been added to allow the installation of plugin and theme zip files via the API.</li>\n<li>Twelve new filters to make Jetpack more extensible!  See: http://wp.me/p1moTy-3FE.</li>\n<li>New widget: &#8220;Google Translate&#8221; to allow users to translate your site into their own language.</li>\n<li>New widget: &#8220;My Community&#8221; where you can see who recently interacted with your site.</li>\n<li>One of the biggest issues facing Jetpack users for years now has been difficulties in moving sites from one domain name to another. This update makes strides towards improving that process.</li>\n<li>Photon now uses HTTPS by default. Secure all the things!</li>\n<li>There are now helpful hints throughout the admin interface to make Jetpack easier to use.</li>\n<li>We now allow you to embed pins, boards and profiles from Pinterest.</li>\n<li>We&#8217;ve added a new feature: SEO Tools, available to Jetpack Professional subscribers. You can read more about our plans here: https://jetpack.com/features/</li>\n<li>We&#8217;ve made numerous improvements to the data sync process.</li>\n</ul>\n<p><strong>Bug Fixes:</strong></p>\n<ul>\n<li>Fixed link to Akismet settings.</li>\n<li>Improved compatibility between Infinite Scroll and WPML.</li>\n<li>Move email notification settings back with the other email settings in the Discussion Settings.</li>\n<li>Various minor performance/compatibility fixes.</li>\n</ul>\n<h4>4.3.2</h4>\n<ul>\n<li>Release date: October 13, 2016</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.</li>\n<li>We&#8217;ve stopped counting carousel views in stats by default, you can use the <code>jetpack_enable_carousel_stats</code> filter to enable counting them again.</li>\n<li>Stats are now responding faster.</li>\n<li>There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.</li>\n<li>Markdown now has a CSS class on footnotes.</li>\n</ul>\n<p><strong>Improved Compatibility:</strong></p>\n<ul>\n<li>We&#8217;ve improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.</li>\n</ul>\n<p><strong>Bug Fixes:</strong></p>\n<ul>\n<li>Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.</li>\n<li>We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.</li>\n<li>We found an unused option in Gravatar Hovercard settings and removed it.</li>\n<li>The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.</li>\n<li>The permissions check for plugin information retrieval was fixed as well.</li>\n<li>Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.</li>\n<li>We removed some warnings that were occurring when translations didn&#8217;t exist by adding a fallback.</li>\n<li>We&#8217;ve added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.</li>\n<li>Sync was running into issues so we&#8217;ve limited dequeue time to 1/3 of PHP&#8217;s max execution time, which has unclogged the problem.</li>\n<li>We&#8217;re now sending full and incremental queues separately so that a failure in one doesn&#8217;t block the other.</li>\n<li>There was a JavaScript enqueuing error with our Sharing feature that has been repaired.</li>\n<li>The Top Posts widget now includes the ability to list attachment (media) pages.</li>\n<li>We weren&#8217;t building CPT links correctly resulting in bad navigation, which is now fixed.</li>\n<li>We removed the form legend for default Tiled Gallery settings as it doesn&#8217;t relate.</li>\n<li>With shortcodes we now return early from processing them if no string is passed, as they are required.</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/plugins/jetpack/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s: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:49:\"https://wordpress.org/plugins/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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 18:48:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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:52:\"https://wordpress.org/plugins-wp/wordpress-importer/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4618:\"<p><!--section=description--></p>\n<p>The WordPress Importer will import the following content from a WordPress export file:</p>\n<ul>\n<li>Posts, pages and other custom post types</li>\n<li>Comments</li>\n<li>Custom fields and post meta</li>\n<li>Categories, tags and terms from custom taxonomies</li>\n<li>Authors</li>\n</ul>\n<p>For further information and instructions please see the <a href=\"https://codex.wordpress.org/Importing_Content#WordPress\" rel=\"nofollow\">Codex page on Importing Content</a></p>\n<h3>Filters</h3>\n<p>The importer has a couple of filters to allow you to completely enable/block certain features:</p>\n<ul>\n<li><code>import_allow_create_users</code>: return false if you only want to allow mapping to existing users</li>\n<li><code>import_allow_fetch_attachments</code>: return false if you do not wish to allow importing and downloading of attachments</li>\n<li><code>import_attachment_size_limit</code>: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)</li>\n</ul>\n<p>There are also a few actions available to hook into:</p>\n<ul>\n<li><code>import_start</code>: occurs after the export file has been uploaded and author import settings have been chosen</li>\n<li><code>import_end</code>: called after the last output from the importer</li>\n</ul>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>The quickest method for installing the importer is:</p>\n<ol>\n<li>Visit Tools -&gt; Import in the WordPress dashboard</li>\n<li>Click on the WordPress link in the list of importers</li>\n<li>Click &#8220;Install Now&#8221;</li>\n<li>Finally click &#8220;Activate Plugin &amp; Run Importer&#8221;</li>\n</ol>\n<p>If you would prefer to do things manually then follow these instructions:</p>\n<ol>\n<li>Upload the <code>wordpress-importer</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>\n<li>Go to the Tools -&gt; Import screen, click on WordPress</li>\n</ol>\n</dd>\n<dt>Help! I&#8217;m getting out of memory errors or a blank screen.</dt>\n<dd>\n<p>If your exported file is very large, the import script may run into your host&#8217;s configured memory limit for PHP.</p>\n<p>A message like &#8220;Fatal error: Allowed memory size of 8388608 bytes exhausted&#8221; indicates that the script can&#8217;t successfully import your XML file under the current PHP memory limit. If you have access to the php.ini file, you can manually increase the limit; if you do not (your WordPress installation is hosted on a shared server, for instance), you might have to break your exported XML file into several smaller pieces and run the import script one at a time.</p>\n<p>For those with shared hosting, the best alternative may be to consult hosting support to determine the safest approach for running the import. A host may be willing to temporarily lift the memory limit and/or run the process directly from their end.</p>\n<p>&#8212; <a href=\"https://codex.wordpress.org/Importing_Content#Before_Importing\" rel=\"nofollow\">WordPress Codex: Importing Content</a></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>0.6.3</h4>\n<ul>\n<li>Add support for import term metadata.</li>\n<li>Fix bug that caused slashes to be stripped from imported content.</li>\n<li>Fix bug that caused characters to be stripped inside of CDATA in some cases.</li>\n<li>Fix PHP notices.</li>\n</ul>\n<h4>0.6.2</h4>\n<ul>\n<li>Add wp_import_existing_post filter. See: https://core.trac.wordpress.org/ticket/33721</li>\n</ul>\n<h4>0.6</h4>\n<ul>\n<li>Support for WXR 1.2 and multiple CDATA sections</li>\n<li>Post aren&#8217;t duplicates if their post_type&#8217;s are different</li>\n</ul>\n<h4>0.5.2</h4>\n<ul>\n<li>Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when<br />\nan export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.</li>\n</ul>\n<h4>0.5</h4>\n<ul>\n<li>Import comment meta (requires export from WordPress 3.2)</li>\n<li>Minor bugfixes and enhancements</li>\n</ul>\n<h4>0.4</h4>\n<ul>\n<li>Map comment user_id where possible</li>\n<li>Import attachments from <code>wp:attachment_url</code></li>\n<li>Upload attachments to correct directory</li>\n<li>Remap resized image URLs correctly</li>\n</ul>\n<h4>0.3</h4>\n<ul>\n<li>Use an XML Parser if possible</li>\n<li>Proper import support for nav menus</li>\n<li>&#8230; and much more, see <a href=\"https://core.trac.wordpress.org/ticket/15197\" rel=\"nofollow\">Trac ticket #15197</a></li>\n</ul>\n<h4>0.1</h4>\n<ul>\n<li>Initial release</li>\n</ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/all-in-one-seo-pack/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 19:30:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins-wp/all-in-one-seo-pack/\";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:83:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4934:\"<p><!--section=description--></p>\n<p>Use <strong>All in One SEO Pack</strong> to optimize your WordPress site for SEO. It&#8217;s easy and works out of the box for beginners, and has advanced features and an API for developers.</p>\n<p><strong><a href=\"http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=readme_utpv\" rel=\"nofollow\">Upgrade to Pro Version</a></strong></p>\n<p><a href=\"http://semperplugins.com/support/?loc=readme_ps\" rel=\"nofollow\">Premium Support</a></p>\n<p>First created in 2007, see why AIOSEO is one of the all time most downloaded plugins for WordPress.</p>\n<ul>\n<li>XML Sitemap support &#8211; submit your sitemap to Google and Bing and improve your SEO</li>\n<li>Google AMP support (Accelerated Mobile Pages)</li>\n<li>Google Analytics support</li>\n<li>Support for SEO on Custom Post Types</li>\n<li>Advanced Canonical URLs</li>\n<li>Redirect attachment pages to parent post</li>\n<li>Automatically notifies search engines like Google and Bing about changes to your site</li>\n<li>Built-in API so other plugins/themes can access and extend functionality</li>\n<li>ONLY free plugin to provide SEO Integration for e-Commerce sites, including WooCommerce</li>\n<li>Nonce Security built into All in One SEO Pack</li>\n<li>Automatically optimizes your <strong>titles</strong> for Google and other search engines</li>\n<li>Generates <strong>META tags automatically</strong></li>\n<li>Avoids the typical duplicate content found on WordPress blogs</li>\n<li>For beginners, you don&#8217;t even have to look at the options, it works out-of-the-box. Just install.</li>\n<li>For advanced users, you can fine-tune everything to optimize your SEO</li>\n<li>You can override any title and set any META description and any META keywords you want.</li>\n<li>Compatibility with many other plugins</li>\n<li>Translated into 57 languages</li>\n<li>PHP 7 100% Compatible</li>\n</ul>\n<p>Follow me on Twitter to keep up with the latest updates <a href=\"http://twitter.com/michaeltorbert/\" rel=\"nofollow\">Michael<br />\nTorbert</a></p>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/46MR4FboMaA?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n<h4>Tags</h4>\n<p>seo, SEO, All in One, google, meta, meta description, search engine optimization, xml sitemap, xml sitemaps, google sitemap, sitemap, sitemaps, robots meta, rss, rss footer, yahoo, bing, widget, Post, plugin, admin, posts, shortcode, sidebar, twitter, page, images, comments, image, news sitemaps, XML News Sitemaps, WordPress SEO, multisite, canonical, nofollow, noindex, keywords, meta keywords, description, webmaster tools, google webmaster tools, seo pack, schema.org, search engines, custom post types, custom taxonomies, canonical</p>\n<p><!--section=faq--></p>\n<p>Please visit our complete <strong><a href=\"http://semperplugins.com/documentation/\" rel=\"nofollow\">Documentation</a></strong> before requesting support for SEO from the<br />\n<strong><a href=\"http://semperplugins.com/support/\" rel=\"nofollow\">All in One SEO Pack Support Forum</a></strong></p>\n<p><a href=\"http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/translations-for-all-in-one-seo-pack/\" rel=\"nofollow\">Translations</a></p>\n<dl>\n<dt>General Settings</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/uGt6CVbA5bI?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>XML Sitemaps</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/zvNU92Low8A?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>Social Meta</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/Dfe49FiiAog?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>Performance</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/A0VKinM5s00?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>All in One SEO Pack <a href=\"http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-pack-release-history/\" rel=\"nofollow\">Changelog</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:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/all-in-one-seo-pack/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/plugins/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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/woocommerce/#respond\";s: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, 27 Sep 2011 15:32:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins-wp/woocommerce/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:38289:\"<p><!--section=description--></p>\n<p>WooCommerce is a free eCommerce plugin that allows you to sell anything, beautifully. Built to integrate seamlessly with WordPress, WooCommerce is the world’s favorite eCommerce solution that gives both store owners and developers complete control.</p>\n<p>With endless flexibility and access to hundreds of free and premium WordPress extensions, WooCommerce now powers 30% of all online stores &#8212; more than any other platform.</p>\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/1KahlicghaE?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n<h4>Sell anything, anywhere</h4>\n<p>With WooCommerce, you can sell both physical and digital goods in all shapes and sizes, offer product variations, multiple configurations, and instant downloads to shoppers, and even sell affiliate goods from online marketplaces.</p>\n<p>With premium extensions, you can offer bookings, memberships, and recurring subscriptions. Perhaps you’d like to sell monthly subscriptions for physical goods, or offer your members a discount on digital downloads? It’s all possible.</p>\n<h4>Ship wherever you like</h4>\n<p>Offer free shipping, flat rate shipping, or make real-time calculations. Limit your shipments to specific countries, or open your store up to the world. Shipping is highly configurable, and WooCommerce even supports drop shipping.</p>\n<h4>Extensive payment options</h4>\n<p>WooCommerce comes bundled with the ability to accept major credit cards, PayPal, BACS (bank transfers), and cash on delivery. Need additional options? More than 140 region-specific gateways integrate with WooCommerce, including popular choices like Stripe, Authorize.Net, and Amazon Payments.</p>\n<h4>You control it all &#8212; forever</h4>\n<p>WooCommerce gives you complete control of your store, from taxes to stock levels to customer accounts. Add and remove extensions, change your design, and switch settings as you please. It’s all under your control.</p>\n<p>One of the biggest risks of using a hosted eCommerce platform is what happens to your store if the provider closes up shop. With WooCommerce, you have complete control, so there’s never any reason to worry. Your data belongs to you &#8212; and it’s kept secure, thanks to regular audits by industry leaders.</p>\n<h4>Define your style with Storefront</h4>\n<p><a href=\"https://wordpress.org/themes/storefront/\" rel=\"nofollow\">Storefront</a> is a free WordPress theme available to any WooCommerce store. Along with deep WooCommerce integration, Storefront prioritizes speed and uptime while eliminating theme and plugin conflicts during major updates.</p>\n<p>Define your style even further by customizing Storefront to your liking or choosing from one of our several <a href=\"https://woocommerce.com/product-category/themes/storefront-child-theme-themes/\" rel=\"nofollow\">Storefront child themes</a>. It’s all up to you, and all open source.</p>\n<h4>Built with developers in mind</h4>\n<p>Extendable, adaptable, and open source &#8212; WooCommerce was created with developers in mind. With its strong, robust framework, you can scale your client’s store all the way from basic to high-end (infinity and beyond).</p>\n<p>Built with a REST API, WooCommerce can integrate with virtually any service. Your store’s data can be accessed anywhere, anytime, 100% securely. WooCommerce allows developers to easily create, modify, and grow a store that meets their specifications.</p>\n<p>No matter the size of the store you want to build, WooCommerce will scale to meet your requirements. With a growing collection of more than 300 extensions, you can enhance each store’s features to meet your client’s unique needs &#8212; or even create your own solution.</p>\n<p>If security is a concern, rest easy. WooCommerce is audited by a dedicated team of developers working around the clock to identify and patch any and all discovered bugs.</p>\n<p>We also support WooCommerce and all its extensions with comprehensive, easily-accessible documentation. With our docs, you’ll learn how to create the exact site your client needs.</p>\n<h4>Extensions galore</h4>\n<p>WordPress.org is home to some amazing extensions for WooCommerce, including:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-google-analytics-integration/\">Google Analytics</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-delivery-notes/\">Delivery Notes</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\">PDF Invoices and Packing Slips</a></li>\n<li><a href=\"https://wordpress.org/plugins/affiliates-woocommerce-light/\">Affiliates Integration Light</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-new-product-badge/\">New Product Badges</a></li>\n</ul>\n<p>Keen to see them all? Search WordPress.org for ‘WooCommerce’ to dive in.</p>\n<p>If you’re looking for something endorsed and maintained by the developers who built WooCommerce, there are a plethora of premium eCommerce extensions, the most popular of which include:</p>\n<ul>\n<li><a href=\"https://woocommerce.com/products/woocommerce-subscriptions/\" rel=\"nofollow\">WooCommerce Subscriptions</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-memberships/\" rel=\"nofollow\">WooCommerce Memberships</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-bookings/\" rel=\"nofollow\">WooCommerce Bookings</a></li>\n<li><a href=\"https://woocommerce.com/products/dynamic-pricing/\" rel=\"nofollow\">Dynamic Pricing</a></li>\n<li><a href=\"https://woocommerce.com/products/table-rate-shipping/\" rel=\"nofollow\">Table Rate Shipping</a></li>\n<li><a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">Product CSV Import Suite</a></li>\n</ul>\n<p>And there’s plenty more where they came from. Visit our <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/\" rel=\"nofollow\">extensions page</a> to find out everything you’re capable of and all that&#8217;s possible with premium WooCommerce extensions.</p>\n<h4>Join our growing community</h4>\n<p>When you download WooCommerce, you join a community of more than a million store owners, developers, and WordPress enthusiasts. We’re one of the fastest-growing open source communities online, and whether you’re a n00b or a Ninja, we’d love to have you!</p>\n<p>If you’re interested in contributing to WooCommerce we’ve got more than 350 contributors, and there’s always room for more. Head over to the <a href=\"https://github.com/woocommerce/woocommerce\" rel=\"nofollow\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>Want to add a new language to WooCommerce? Swell! You can contribute via <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce\" rel=\"nofollow\">translate.wordpress.org</a>.</p>\n<p>And, finally, consider joining or spearheading a WooCommerce Meetup locally, more about those <a href=\"https://woocommerce.com/woocommerce/meetups/\" rel=\"nofollow\">here</a>.</p>\n<p><!--section=installation--></p>\n<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)</li>\n<li>MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)</li>\n<li>Some payment gateways require fsockopen support (for IPN access)</li>\n<li>WooCommerce 2.5 requires WordPress 4.1+</li>\n<li>WooCommerce 2.6 requires WordPress 4.4+</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.</p>\n<p>In the search field type “WooCommerce” and click Search Plugins. Once you’ve found our eCommerce plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.</p>\n<h4>Manual installation</h4>\n<p>The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains <a href=\"https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation\" rel=\"nofollow\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work like a charm; as always though, ensure you backup your site just in case.</p>\n<p>If on the off-chance you do encounter issues with the shop/category pages after an update you simply need to flush the permalinks by going to WordPress &gt; Settings &gt; Permalinks and hitting &#8216;save&#8217;. That should return things to normal.</p>\n<h4>Dummy data</h4>\n<p>WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> or use our <a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">CSV Import Suite plugin</a> to import dummy_data.csv and dummy_data_variations.csv.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)</li>\n<li>MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)</li>\n<li>Some payment gateways require fsockopen support (for IPN access)</li>\n<li>WooCommerce 2.5 requires WordPress 4.1+</li>\n<li>WooCommerce 2.6 requires WordPress 4.4+</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.</p>\n<p>In the search field type “WooCommerce” and click Search Plugins. Once you’ve found our eCommerce plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.</p>\n<h4>Manual installation</h4>\n<p>The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains <a href=\"https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation\" rel=\"nofollow\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work like a charm; as always though, ensure you backup your site just in case.</p>\n<p>If on the off-chance you do encounter issues with the shop/category pages after an update you simply need to flush the permalinks by going to WordPress &gt; Settings &gt; Permalinks and hitting &#8216;save&#8217;. That should return things to normal.</p>\n<h4>Dummy data</h4>\n<p>WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> or use our <a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">CSV Import Suite plugin</a> to import dummy_data.csv and dummy_data_variations.csv.</p>\n</dd>\n<dt>Where can I find WooCommerce documentation and user guides?</dt>\n<dd>\n<p>For help setting up and configuring WooCommerce please refer to our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/\" rel=\"nofollow\">user guide</a></p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/\" rel=\"nofollow\">codex</a>.</p>\n</dd>\n<dt>Where can I get support or talk to other users?</dt>\n<dd>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce\" rel=\"nofollow\">WooCommerce Plugin Forum</a>.</p>\n<p>For help with premium extensions from WooThemes, use <a href=\"https://support.woothemes.com/\" rel=\"nofollow\">our helpdesk</a>.</p>\n</dd>\n<dt>Will WooCommerce work with my theme?</dt>\n<dd>\n<p>Yes; WooCommerce will work with any theme, but may require some styling to make it match nicely. Please see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/\" rel=\"nofollow\">codex</a> for help. If you&#8217;re looking for a theme with built in WooCommerce integration we recommend <a href=\"https://woocommerce.com/storefront/\" rel=\"nofollow\">Storefront</a>.</p>\n</dd>\n<dt>Where can I request new features, eCommerce themes and extensions?</dt>\n<dd>\n<p>You can vote on and request new features and extensions in our <a href=\"http://ideas.woothemes.com/forums/133476-woocommerce\" rel=\"nofollow\">WooIdeas board</a></p>\n</dd>\n<dt>Where can I report bugs or contribute to the project?</dt>\n<dd>\n<p>Bugs can be reported either in our support forum or preferably on the <a href=\"https://github.com/woocommerce/woocommerce/issues\" rel=\"nofollow\">WooCommerce GitHub repository</a>.</p>\n</dd>\n<dt>Where can I find the REST API documentation?</dt>\n<dd>\n<p>You can find the documentation of our REST API on the <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/\" rel=\"nofollow\">WooCommerce REST API Docs</a>.</p>\n</dd>\n<dt>WooCommerce is awesome! Can I contribute?</dt>\n<dd>\n<p>Yes you can! Join in on our <a href=\"http://github.com/woocommerce/woocommerce/\" rel=\"nofollow\">GitHub repository</a> <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>3.0.7 &#8211; 2017-05-16</h4>\n<ul>\n<li>Fix &#8211; Display of grouped product permalinks + names.</li>\n<li>Fix &#8211; Ensure <code>wc_get_payment_gateway_by_order</code> has a valid order ID to avoid errors.</li>\n<li>Fix &#8211; Ensure <code>get_plugin_updates</code> exists in API.</li>\n<li>Fix &#8211; Correctly set rating term after updating product visibility.</li>\n<li>Fix &#8211; <code>is_ip_address</code> should be static.</li>\n<li>Fix &#8211; Handle clearing for 3, 4, and 5 columns in the product gallery.</li>\n<li>Fix &#8211; Some added protection against notices/errors in the assets and variation data-store files.</li>\n<li>Fix &#8211; If backorders are enabled, do not make variable products out of stock.</li>\n<li>Fix &#8211; Undefined function in <code>class-wc-embed.php</code>.</li>\n<li>Fix &#8211; Fix &#8216;base location&#8217; not being returned via the settings API.</li>\n<li>Fix &#8211; When re-filling fields on checkout, only change the empty ones to avoid conflicts with gateway plugins and hidden fields.</li>\n<li>Fix &#8211; Make calculate tax function clear taxes if taxes are disabled on recalculation.</li>\n<li>Fix &#8211; Update all customer session address fields when updating via checkout.</li>\n<li>Fix &#8211; Support customer searches &lt; 3 characters long, but with result limiting.</li>\n</ul>\n<h4>3.0.6 &#8211; 2017-05-09</h4>\n<ul>\n<li>Fix &#8211; Fixed conflict between global attributes and custom attributes with the same names.</li>\n<li>Fix &#8211; Added missing &#8220;id&#8221; to API for shipping zone methods to support the CLI.</li>\n<li>Fix &#8211; Incorrect use of <code>wc_format_price_range</code> in <code>get_price_html_from_to</code>.</li>\n<li>Fix &#8211; Clone each meta object when cloning WC_Data object to avoid modifying original meta stdClass objects.</li>\n<li>Fix &#8211; Fix non numeric warning for some order data.</li>\n<li>Fix &#8211; Fixed a warning when no customer country is defined for state input.</li>\n<li>Fix &#8211; Use term name when reordering so correct data is passed to the new order.</li>\n<li>Fix &#8211; Formatting issues in wc_display_item_meta.</li>\n<li>Fix &#8211; Check if IP address is valid in IP address detection code.</li>\n<li>Fix &#8211; wc_attribute_taxonomy_id_by_name should use wc_sanitize_taxonomy_name to prevent breaking special chars.</li>\n<li>Fix &#8211; Correct variable name in order structured data.</li>\n<li>Fix &#8211; Prepend new item keys with <code>$items_key</code> to make them unique.</li>\n<li>Fix &#8211; Hide offers from structured markup when blank.</li>\n<li>Fix &#8211; Fixed &#8220;Process to checkout&#8221; button color in Twenty seventeen dark theme.</li>\n<li>Fix &#8211; Only set reply-to if the email + name is set.</li>\n<li>Fix &#8211; Correctly exclude terms in wc_get_related_products.</li>\n<li>Fix &#8211; Reset post data prevents grouped products working in shortcodes.</li>\n<li>Fix &#8211; Fix min price range comparisons.</li>\n<li>Fix &#8211; Properly save order items in legacy REST API.</li>\n<li>Fix &#8211; Use correct full size for variation images.</li>\n<li>Fix &#8211; Add noscript style for gallery.</li>\n<li>Fix &#8211; Fix/duplicate potential stock reduction with paypal.</li>\n<li>Tweak &#8211; Improve _wc_term_recount performance.</li>\n<li>Tweak &#8211; Improve plugin update detection in system status report to reduce timeouts.</li>\n<li>Tweak &#8211; Improve &#8220;Save Order&#8221; button to reproduce WordPress post/page behavior.</li>\n<li>Tweak &#8211; Added zipcode validation for France.</li>\n<li>Dev &#8211; Added woocommerce_shop_order_search_results filter.</li>\n</ul>\n<h4>3.0.5 &#8211; 2017-04-28</h4>\n<ul>\n<li>Fix &#8211; Tooltip display within shipping zone modals.</li>\n<li>Fix &#8211; Fix missing title for actions column on mobile.</li>\n<li>Fix &#8211; Allow forward slash in telephone field.</li>\n<li>Fix &#8211; Sort grouped products by menu order when displaying.</li>\n<li>Fix &#8211; Fix term exclusion in term count queries.</li>\n<li>Fix &#8211; Filter invalid products before returning them for wc_get_products.</li>\n<li>Fix &#8211; Prevent orders being their own parent (causes errors).</li>\n<li>Fix &#8211; Correctly migrate legacy shipping taxes data.</li>\n<li>Fix &#8211; Make sure the meta data cache is not shared among instances.</li>\n<li>Fix &#8211; Correct the stock display notice when a variable product manages stock for it&#8217;s children.</li>\n<li>Fix &#8211; On multisite, add user to blog during checkout if not a user to prevent errors.</li>\n<li>Fix &#8211; Correct sale price date handling with some timezone setups.</li>\n<li>Fix &#8211; wc_attribute_taxonomy_id_by_name needs to use lowercase attribute slug to work.</li>\n<li>Fix &#8211; Make changes to the buyer&#8217;s company name in the shipping section of checkout persist.</li>\n<li>Tweak &#8211; Add required placeholder for meta fields in backend.</li>\n<li>Tweak &#8211; Don&#8217;t strtolower address strings on checkout validation messages.</li>\n<li>REST API &#8211; Prevent password change notification when creating a customer.</li>\n<li>REST API &#8211; Removed duplicated items returned in shipping and checkout endpoints.</li>\n<li>CLI &#8211; Fixed missing shipping zones route.</li>\n<li>Dev &#8211; Make get_price_html handling match 2.6 and pass all values through woocommerce_get_price_html filter.</li>\n<li>Dev &#8211; Legacy customer class missing get_address / get_address_2 functions.</li>\n<li>Dev &#8211; Restored filter <code>woocommerce_checkout_customer_id</code> during checkout validation.</li>\n<li>Dev &#8211; Adds missing <code>$this</code> argument for all <code>woocommerce_payment_complete_order_status</code> filters.</li>\n</ul>\n<h4>3.0.4 &#8211; 2017-04-20</h4>\n<ul>\n<li>Fix &#8211; Variations were not inheriting the product image and shipping class ID.</li>\n<li>Fix &#8211; Prevent rating/review counts being duplicated when duplicating products.</li>\n<li>Fix &#8211; Fixed gallery navigation between images with long captions.</li>\n<li>Fix &#8211; Support transparent PNG in the gallery by setting a background color.</li>\n<li>Fix &#8211; Removed name/company from the shipping address Google map links.</li>\n<li>Fix &#8211; Fixed the address field sorting script on the checkout.</li>\n<li>Fix &#8211; Fixed the upgrade routine for grouped products so that parents are unset.</li>\n<li>Fix &#8211; Fixed support for WordPress 4.7 user locale settings.</li>\n<li>Fix &#8211; Fixed default option filter for product types in the product meta box.</li>\n<li>Fix &#8211; Improved the css in Twenty Seventeen for dark color schemes.</li>\n<li>Fix &#8211; Fixed display of refunds in sales report.</li>\n<li>Fix &#8211; Updated <code>single-product/add-to-cart/variable.php</code> template version to 3.0.0 since it had changes since 2.6.</li>\n<li>Fix &#8211; Fixed warnings when product attribute do not exists.</li>\n<li>Fix &#8211; Used a div for comment-form-rating to prevent invalid nested markup.</li>\n<li>Fix &#8211; Fixed some logic that checks if order taxes are compound.</li>\n<li>Fix &#8211; Fixed SKU checks to only exclude products that are trashed.</li>\n<li>Fix &#8211; Fixed display of download permissions in first email sent after checkout.</li>\n<li>Fix &#8211; Hidden the backorder notification stock text when notification is disabled.</li>\n<li>Fix &#8211; Fixed incorrect stock numbers in low stock emails.</li>\n<li>Tweak &#8211; Removed the non-functional order total input box, and combined the recalculation buttons into one working button.</li>\n<li>Tweak &#8211; Updated Guided Tour videos.</li>\n<li>Tweak &#8211; Updated js-cookie.js to 2.1.4.</li>\n<li>Tweak &#8211; Updated schema.org URLs to use HTTPS.</li>\n<li>Tweak &#8211; Status report request timeouts.</li>\n<li>REST API &#8211; Fixed an issue that prevented deleting a term if errors were thrown during creation.</li>\n<li>REST API &#8211; Fixed reports endpoint when querying by date.</li>\n<li>REST API &#8211; Fixed ignored order parameters when changing order status.</li>\n<li>Dev &#8211; Support guest orders in <code>wc_get_orders</code> function.</li>\n<li>Dev &#8211; Fixed downloadable variation filters for download URLs.</li>\n<li>Dev &#8211; Added safeguards to prevent infinite loops while saving coupons, products and orders in admin.</li>\n<li>Dev &#8211; Added a fallback for <code>queue_transactional_email</code> if background sending is disabled.</li>\n<li>Dev &#8211; Added <code>has_shipping_address</code> helper method.</li>\n<li>Dev &#8211; Introduced <code>woocommerce_order_item_get_formatted_meta_data</code> filter.</li>\n<li>Dev &#8211; Made wc_add_order_item pass correct values to woocommerce_new_order_item.</li>\n<li>Dev &#8211; Fixed <code>legacy_posted_data</code> access in checkout class.</li>\n<li>Dev &#8211; Fixed undefined property notice in <code>WC_Order_Item::offsetGet</code>.</li>\n<li>Dev &#8211; Fixed PHP 7.1 warnings when using non-float values to <code>wc_get_weight()</code>.</li>\n<li>Dev &#8211; Fixed incorrect variable name in <code>wc_add_order_item()</code>.</li>\n</ul>\n<h4>3.0.3 &#8211; 2017-04-13</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue with variation tax-classes when set to &#8216;parent&#8217;. This made taxes apply on top of the tax inclusive price in certain setups.</li>\n<li>Fix &#8211; Escaped attribute translations in the <code>cart.php</code> template and bumped the template version to match.</li>\n<li>Fix &#8211; Corrected the display of refund dates on the order screen.</li>\n<li>Fix &#8211; Fixed the grouped product visibility check in the grouped.php template and bumped the template version to match.</li>\n<li>Fix &#8211; Fixed the sale badge display for grouped products.</li>\n<li>Fix &#8211; Added the <code>itemReviewed</code> structured data for product reviews to make it validate.</li>\n<li>Fix &#8211; Made the <code>get_attribute</code> method work on variation objects.</li>\n<li>Tweak &#8211; Turned off the deferred email sending by default which was added in 3.0. Whilst it does improve performance, there were compatibility problems on some servers. It can be enabled with a filter if desired.</li>\n<li>Dev &#8211; Added backtrace information to the deprecation messages to help find problem plugins.</li>\n</ul>\n<h4>3.0.2 &#8211; 2017-04-12</h4>\n<ul>\n<li>Fix &#8211; Removed required states for GP, GF, KW, LB, MQ, RE and YT countries.</li>\n<li>Fix &#8211; Made cache in the [products] shortcode respect filters from plugins.</li>\n<li>Fix &#8211; Added missing <code>woocommerce_cross_sells_columns</code> filter.</li>\n<li>Fix &#8211; Fixed shortcode rendering on the shop page.</li>\n<li>Fix &#8211; Fixed incorrect sale dates when bulk editing variations.</li>\n<li>Fix &#8211; Fixed calls to wc_reduce_stock_levels in PayPal and Simplify gateways.</li>\n<li>Fix &#8211; Exclude &#8220;location&#8221; meta when reading customer meta data.</li>\n<li>Fix &#8211; Updated <code>emails/email-addresses.php</code>, <code>emails/email-order-details.php</code>, <code>content-single-product.php</code>, <code>checkout/form-shipping.php</code>, <code>myaccount/form-add-payment-method.php</code>, <code>myaccount/form-edit-address.php</code>, <code>myaccount/form-lost-password.php</code>, <code>myaccount/form-reset-password.php</code>, <code>myaccount/orders.php</code> and <code>myaccount/view-order.php</code> template version to 3.0.0 since they had changes since 2.6.</li>\n<li>Fix &#8211; Fixed default behavior of variation tax classes when originally set to &#8220;parent&#8221;.</li>\n<li>Fix &#8211; When duplicating products, do not copy slug, append &#8220;(Copy)&#8221; to the product name, correctly copy all meta data, and prevent children of grouped products being duplicated too.</li>\n<li>Fix &#8211; Removed duplicated items when outputting cross sells on the cart page.</li>\n<li>Fix &#8211; Fixed output of default &#8220;add to cart&#8221; text of external products in loops.</li>\n<li>Fix &#8211; Fixed backwards compatibility of guest checkout rules when being altered by plugins directly.</li>\n<li>Fix &#8211; Use correct thumbnail sizes for variation images in the new gallery.</li>\n<li>Fix &#8211; Fixed captions on thumbnails and main image in the new gallery.</li>\n<li>Fix &#8211; Trigger wc_fragments_loaded after add to cart fragment refresh.</li>\n<li>Fix &#8211; Download permissions; Convert dates to timestamp on read so UTC is preserved.</li>\n<li>Fix &#8211; Fixed notices under PHP 7.1 when sorting products by name (numeric).</li>\n<li>Fix &#8211; Added additional checks to ensure objects are read before using class methods to avoid errors.</li>\n<li>Fix &#8211; Removed legacy suggest.js code which was causing JS error on bulk edit.</li>\n<li>Fix &#8211; Fixed warnings on the &#8220;Lost password&#8221; page and when loading a product with invalid attributes.</li>\n<li>Fix &#8211; Made background emailer update the queue after a successful send so duplicate mails are less likely.</li>\n<li>Fix &#8211; Typo in flexslider_enabled option in new gallery script.</li>\n<li>Fix &#8211; woocommerce_notify_low_stock and woocommerce_notify_no_stock options had no effect.</li>\n<li>Tweak &#8211; For downloadable files, only validate file type when dealing with relative paths.</li>\n<li>Tweak &#8211; Improved automatic variation name generation.</li>\n<li>Dev &#8211; Added product visibility terms to system status report to help debug.</li>\n<li>Dev &#8211; Introduced <code>woocommerce_admin_order_date_format</code> filter to replace missing <code>post_date_column_time</code>.</li>\n<li>Dev &#8211; Introduced <code>woocommerce_update_customer_args</code> filter to prevent updates to user objects if needed.</li>\n<li>REST API &#8211; Fixed saving of variations in legacy REST API v3.</li>\n<li>REST API &#8211; Fixed backwards compatibility of line_items meta in legacy REST API.</li>\n</ul>\n<h4>3.0.1 &#8211; 2017-04-06</h4>\n<ul>\n<li>Fix &#8211; Show catalog hidden products within grouped products.</li>\n<li>Fix &#8211; Fade in the gallery in if no images are set or it&#8217;s custom.</li>\n<li>Fix &#8211; Use wc_deprecated_function in WC_Deprecated_Hooks so notices aren&#8217;t output in ajax requests.</li>\n<li>Fix &#8211; Added back the ability to include extra items to the System Status using the <code>woocommerce_system_status_environment_rows</code> filter.</li>\n<li>Fix &#8211; Coupon category restrictions and limits for variations.</li>\n<li>Fix &#8211; Allow shortcodes and HTML in variation descriptions like in 2.6.</li>\n<li>Fix &#8211; Unset post date when duplicating products.</li>\n<li>Fix &#8211; Show a sale price on variable products if on sale and all prices are the same.</li>\n<li>Fix &#8211; Corrected download links when a product has multiple downloads.</li>\n<li>Fix &#8211; Prevented potential errors if the product type was not posted for any reason on save.</li>\n<li>Fix &#8211; Updated <code>single-product/up-sells.php</code>, <code>loop/add-to-cart.php</code>, <code>loop/rating.php</code>, <code>checkout/form-billing.php</code>, and <code>content-product.php</code> template version to 3.0.0.</li>\n<li>Fix &#8211; Included clearfixes on billing and shipping field wrappers,</li>\n<li>Fix &#8211; Fixed styling of logs table in some languages.</li>\n<li>Fix &#8211; Fixed display of variation attributes on old orders.</li>\n<li>Fix &#8211; Use placeholder text for external products add to cart button text if left blank.</li>\n<li>Fix &#8211; Fallback to home URL if no shop page is set for system status security check for HTTPS.</li>\n<li>Fix &#8211; For variations, pull tax status and sold individually from the parent since there is no UI to set this at variation level.</li>\n<li>Fix &#8211; Moved cron emails to background processing to avoid multiple sends.</li>\n<li>Fix &#8211; Wrapped structured data in a hidden element when added to emails.</li>\n<li>Fix &#8211; Missing gateway information in queued emails.</li>\n<li>Fix &#8211; Fixed a bug that caused pages to permanently reload if &#8220;Default customer location&#8221; was set to &#8220;Geolocate (with page caching support)&#8221;.</li>\n<li>Fix &#8211; When forcing shipping to billing, set the shipping fields in the order itself.</li>\n<li>Fix &#8211; Check for invalid objects in WC_Register_WP_Admin_Settings.</li>\n<li>Fix &#8211; Check for error object in wc_get_object_terms.</li>\n<li>Fix &#8211; Removed slashes in shipping meta data on the order edit screen.</li>\n<li>Fix &#8211; Prevented permalink rewrites for attributes with missing names.</li>\n<li>Fix &#8211; Fixed saving of meta data when multiple extensions use the <code>save_post</code> action.</li>\n<li>Fix &#8211; Allow search customers by ID in edit order screen.</li>\n<li>Fix &#8211; Prevents session data overwriting customer data on login.</li>\n<li>Fix &#8211; Fixed cross-sell column display and variation support.</li>\n<li>Fix &#8211; Fixed variable product stock syncing on save.</li>\n<li>Fix &#8211; Included try/catch wrapper to prevent issues with Select2.</li>\n<li>Fix &#8211; Prevented a bug that deleted all variations when the product type was change from variable to simple.</li>\n<li>Fix &#8211; Switched to WPDB to quicker update when syncing titles for variations.</li>\n<li>Fix &#8211; Exclude deprecated properties when loading a customer object.</li>\n<li>Fix &#8211; Fixed notices while trying to order again.</li>\n<li>Fix &#8211; Fixed notices when <code>$wpdb-&gt;prefix</code> is empty.</li>\n<li>Fix &#8211; Prevent errors when loading a product with an invalid download file types.</li>\n<li>REST API &#8211; Fixed missing array declaration in CRUD controller.</li>\n<li>REST API &#8211; Removed extra <code>exclude</code>, <code>include</code> and <code>search</code> parameters from taxes endpoint.</li>\n<li>REST API &#8211; Fixed variation description formatting.</li>\n<li>REST API &#8211; Fixed incorrect attribute check in products endpoint in Legacy REST API.</li>\n<li>REST API &#8211; Allow variation image to be unset.</li>\n</ul>\n<h4>3.0.0 &#8211; 2017-04-04</h4>\n<ul>\n<li>New gallery on single product pages with better mobile support, using PhotoSwipe and Zoom. Declare support with add_theme_support() &#8211; wc-product-gallery-zoom, wc-product-gallery-lightbox, wc-product-gallery-slider</li>\n<li>Made the store notice dismissible on the frontend.</li>\n<li>Variable products no longer show striked out prices in combination with ranges for clarity when on sale.</li>\n<li>Prices no longer display as &#8216;free&#8217; instead of 0, to fix issues with ranges and localization and for consistency.</li>\n<li>Improved structured product data by using JSON-LD instead of inline Microdata.</li>\n<li>Improved downloads list layout (template file).</li>\n<li>Respect stock status and prevent the &#8220;out of stock threshold&#8221; setting affecting existing in-stock products.</li>\n<li>Improved handling of shop page rewrite rules to allow subpages.</li>\n<li>Redirect to login after password reset.</li>\n<li>When using authorizations in PayPal Standard, automatically capture funds when the order goes processing/completed.</li>\n<li>On multisite, when a user logs into a store with an account on a site, but not the current site, rather than error, add the user to the current site as a customer.</li>\n<li>Show variable weights/dimensions even when parent values are not set.</li>\n<li>Automatically sort tax rates rather than allow clunky manual sorting.</li>\n<li>When deleting a tax rate class, remove it&#8217;s tax rates.</li>\n<li>Made WC_Logger pluggable via wc_get_logger function.</li>\n<li>Use &#8216;average rating&#8217; post meta for &#8216;rating&#8217; product sorting option.</li>\n<li>Show better labels in nav menus metabox.</li>\n<li>Sort “Recently Viewed” products by the view order.</li>\n<li>Removed internal scroll from log viewer.</li>\n<li>Add reply-to to admin emails.</li>\n<li>Improved the zone setup flow.</li>\n<li>Made wc_get_wildcard_postcodes return the orignal postcode plus * since wildcards should match empty strings too.</li>\n<li>Use all paid statuses in $customer-&gt;get_total_spent().</li>\n<li>Move location of billing email field to work with password managers.</li>\n<li>Option to restrict selling locations by country.</li>\n<li>Added tool to clear orphaned variations in system status.</li>\n<li>Remove checkbox options in system status tools and replace with constants.</li>\n<li>Added security section in system status report.</li>\n<li>Add image_url setting to PayPal Standard.</li>\n<li>Fixed attribute registration. Attributes are non-hierarchical by default (parent is not supported).</li>\n<li>Add sort parameter to checkout fields to aid with sorting per locale.</li>\n<li>Merged percent and percent product coupon types (they provide the same discount).</li>\n<li>Prevent payment details being cleared after update_checkout events.</li>\n<li>Performance &#8211; Converted _featured and _visibility meta data to terms for faster catalog queries. Upgrade routine handles migration. Developers may need to update queries to reflect this change.</li>\n<li>Includes product attributes archives links in &#8220;Additional Information&#8221; tab.</li>\n<li>Select2 has been upgraded to v4.</li>\n<li>Improved logging system for extensions.</li>\n<li>Tax suffix is now hidden on non-taxable products.</li>\n<li>Grouped products are linked from the parent rather than the children. Children can be in more than one group.</li>\n<li>Removed coupon usage link in coupons admin screen.</li>\n<li>Performance &#8211; Converted rating filters to visibility terms.</li>\n<li>Performance &#8211; Added visibility term for outofstock products to speed those queries up also.</li>\n<li>Performance &#8211; Introduced a new CRUD (create, read, update, delete) system for Products, Orders, Customers and Shipping Zones.</li>\n<li>Performance &#8211; Optimised variable product sync. Upper/lower price meta is no longer stored, just the main prices, if a child has weight, and if a child has dimensions.</li>\n<li>Performance &#8211; Removed WP_Query from up-sells.php and related.php and replaced with PHP foreach loop (since we already have the product IDs).</li>\n<li>Performance &#8211; Removed the feature where old orders get access to new downloads on product edit. Looping potentially thousands of orders to do this is too much of a performance burden for stores and this can sometimes be unexpected behavior too. This does however updates <em>edited</em> downloads.</li>\n<li>Performance &#8211; Removed &#8216;items&#8217; column on orders screen due to loading excessive data.</li>\n<li>Performance &#8211; Deferred email sending for faster checkouts. Now uses CRON.</li>\n<li>API &#8211; New Rest API v2 with support for meta_data amongst other things.</li>\n<li>API &#8211; Removed last order from customers part of the API due to performance concerns &#8211; use orders endpoint instead. Other order data on the endpoint is now transient cached.</li>\n<li>API &#8211; Allow oAuth1.0a authentication using headers.</li>\n<li>API &#8211; New Shipping Zones endpoints.</li>\n<li>API &#8211; New variations endpoints.</li>\n<li>API &#8211; New settings endpoints.</li>\n<li>API &#8211; Payment gateways and shipping methods endpoints.</li>\n<li>API &#8211; Prevented the (broken) ability to manipulate variations directly on the products endpoints.</li>\n<li>CLI &#8211; New CLI which uses the REST API endpoints rather than it&#8217;s own functions.</li>\n<li>Localization &#8211; Improved RTL support.</li>\n<li>Localization &#8211; Added a language independent permalink setting function.</li>\n<li>Localization &#8211; Added inline comments for placeholder strings.</li>\n<li>Localization &#8211; Added Nigerian and Pakistan Provinces to i18n/state.</li>\n<li>Localization &#8211; US and Poland postcode validation.</li>\n<li>To read more about this release, see our dev blog announcement here: http://wp.me/p6wtcw-Uo</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/master/CHANGELOG.txt\" rel=\"nofollow\">See changelog for all versions</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:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{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:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/plugins/google-sitemap-generator/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2005 09:33:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins-wp/google-sitemap-generator/\";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:95:\"This plugin will generate a special XML sitemap which will help search engines to better&#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/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:\"\";}}}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:7643:\"<p><!--section=description--></p>\n<p>This plugin will generate a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it&#8217;s much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.</p>\n<p>Supported since <em>over 9 years</em> and rated as the <a href=\"https://wordpress.org/plugins/browse/top-rated/\">best WordPress plugin</a>, it will do exactly what it&#8217;s supposed to do &#8211; providing a complete XML sitemap for search engines. It will not break your site, slow it down or annoy you. Guaranteed!</p>\n<blockquote>\n<p>If you like the plugin, feel free to rate it (on the right side of this page) or <a href=\"http://www.arnebrachhold.de/redir/sitemap-paypal/\" rel=\"nofollow\">donate via PayPal</a>. I&#8217;m gladly supporting this plugin since over 9 years! Thanks a lot! <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</blockquote>\n<p>Related Links:</p>\n<ul>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" title=\"Google XML Sitemaps Plugin for WordPress\" rel=\"nofollow\">Plugin Homepage</a></li>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Changelog of the Google XML Sitemaps Plugin for WordPress\" rel=\"nofollow\">Changelog</a></li>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/\" title=\"Google Sitemaps FAQ\" rel=\"nofollow\">Plugin help and sitemaps FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/topic/read-before-opening-a-new-support-topic\" rel=\"nofollow\">Support Forum</a></li>\n</ul>\n<h3>License</h3>\n<p>Good news, this plugin is free for everyone! Since it&#8217;s released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a <a href=\"http://www.arnebrachhold.de/redir/sitemap-paypal\" title=\"Donate with PayPal\" rel=\"nofollow\">small donation</a> for the time I&#8217;ve spent writing and supporting this plugin. And I really don&#8217;t want to know how many hours of my life this plugin has already eaten <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<h3>Translations</h3>\n<p>The plugin comes with various translations, please refer to the <a href=\"https://codex.wordpress.org/Installing_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\" rel=\"nofollow\">WordPress Codex</a> for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a <a href=\"http://www.gnu.org/software/gettext/\" rel=\"nofollow\">gettext</a> editor like <a href=\"http://www.poedit.net/\" rel=\"nofollow\">Poedit</a> (Windows).</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Install the plugin like you always install plugins, either by uploading it via FTP or by using the &#8220;Add Plugin&#8221; function of WordPress.</li>\n<li>Activate the plugin at the plugin administration page</li>\n<li>If you want: Open the plugin configuration page, which is located under Settings -&gt; XML-Sitemap and customize settings like priorities and change frequencies.</li>\n<li>The plugin will automatically update your sitemap of you publish a post, so there is nothing more to do <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n</ol>\n<p><!--section=faq--></p>\n<dl>\n<dt>Where can I find the options page of the plugin?</dt>\n<dd>\n<p>It is under Settings &gt; XML Sitemap. I know nowadays many plugins add top-level menu items, but in most of the cases it is just not necessary. I&#8217;ve seen WP installations which looked like an Internet Explorer ten years ago with 20 toolbars installed. <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</dd>\n<dt>Do I have to create a sitemap.xml and sitemap.xml.gz by myself?</dt>\n<dd>\n<p>Not anymore. Since version 4, these files are dynamically generated. <em>There must be no sitemap.xml or sitemap.xml.gz in your blog directory anymore!</em> The plugin will try to rename them to sitemap.xml.bak if they still exists.</p>\n</dd>\n<dt>Does this plugin use static files or &#8220;I can&#8217;t find the sitemap.xml file!&#8221;</dt>\n<dd>\n<p>Not anymore. Since version 4, these files are dynamically generated just like any other WordPress content.</p>\n</dd>\n<dt>There are no comments yet (or I&#8217;ve disabled them) and all my postings have a priority of zero!</dt>\n<dd>\n<p>Please disable automatic priority calculation and define a static priority for posts.</p>\n</dd>\n<dt>So many configuration options&#8230; Do I need to change them?</dt>\n<dd>\n<p>No, only if you want to. Default values are ok for most sites.</p>\n</dd>\n<dt>Does this plugin work with all WordPress versions?</dt>\n<dd>\n<p>This version works with WordPress 3.3 and better. If you&#8217;re using an older version, please check the <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" title=\"Google (XML) Sitemap Generator Plugin Homepage\" rel=\"nofollow\">Google Sitemaps Plugin Homepage</a> for the legacy releases. There is a working release for every WordPress version since 1.5, but you really should consider updating your WordPress installation!</p>\n</dd>\n<dt>My question isn&#8217;t answered here</dt>\n<dd>\n<p>Most of the plugin options are described at the <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" rel=\"nofollow\">plugin homepage</a> as well as the dedicated <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/\" title=\"List of common questions / problems regarding Google (XML) Sitemaps\" rel=\"nofollow\">Google Sitemaps FAQ</a>.</p>\n</dd>\n<dt>My question isn&#8217;t even answered there</dt>\n<dd>\n<p>Please post your question at the <a href=\"https://wordpress.org/support/topic/read-before-opening-a-new-support-topic\" rel=\"nofollow\">WordPress support forum</a> and tag your post with &#8220;google-sitemap-generator&#8221;.</p>\n</dd>\n<dt>What&#8217;s new in the latest version?</dt>\n<dd>\n<p>The changelog is maintained <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Google (XML) Sitemap Generator Plugin Changelog\" rel=\"nofollow\">here</a></p>\n</dd>\n<dt>Why is the changelog on a separate page and not here?</dt>\n<dd>\n<p>The WordPress.org repository is just another place to download this plugin. I don&#8217;t want to maintain too many pages with the same content. Thank you for your understanding!</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>You can always find the changelog on <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Google (XML) Sitemap Generator Plugin Changelog\" rel=\"nofollow\">the plugin website</a>, since I don&#8217;t like to maintain the same content on different pages. Thank you for your understanding!</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/google-sitemap-generator/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Limit Login Attempts\";s:7:\"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/limit-login-attempts/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/limit-login-attempts/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Jan 2009 14:20:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins-wp/limit-login-attempts/\";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:91:\"Limit rate of login attempts, including by way of cookies, for each IP. Fully customizable.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11761:\"<p><!--section=description--></p>\n<p>Limit the number of login attempts possible both through normal login as well as using auth cookies.</p>\n<p>By default WordPress allows unlimited login attempts either through the login page or by sending special cookies. This allows passwords (or hashes) to be brute-force cracked with relative ease.</p>\n<p>Limit Login Attempts blocks an Internet address from making further attempts after a specified limit on retries is reached, making a brute-force attack difficult or impossible.</p>\n<p>Features</p>\n<ul>\n<li>Limit the number of retry attempts when logging in (for each IP). Fully customizable</li>\n<li>Limit the number of attempts to log in using auth cookies in same way</li>\n<li>Informs user about remaining retries or lockout time on login page</li>\n<li>Optional logging, optional email notification</li>\n<li>Handles server behind reverse proxy</li>\n<li>It is possible to whitelist IPs using a filter. But you probably shouldn&#8217;t. <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n</ul>\n<p>Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish</p>\n<p>Plugin uses standard actions and filters only.</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Download and extract plugin files to a wp-content/plugin directory.</li>\n<li>Activate the plugin through the WordPress admin interface.</li>\n<li>Customize the settings on the options page, if desired. If your server is located behind a reverse proxy make sure to change this setting.</li>\n</ol>\n<p>If you have any questions or problems please make a post here: https://wordpress.org/tags/limit-login-attempts</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Why not reset failed attempts on a successful login?</dt>\n<dd>\n<p>This is very much by design. Otherwise you could brute force the &#8220;admin&#8221; password by logging in as your own user every 4th attempt.</p>\n</dd>\n<dt>What is this option about site connection and reverse proxy?</dt>\n<dd>\n<p>A reverse proxy is a server in between the site and the Internet (perhaps handling caching or load-balancing). This makes getting the correct client IP to block slightly more complicated.</p>\n<p>The option default to NOT being behind a proxy &#8212; which should be by far the common case.</p>\n</dd>\n<dt>How do I know if my site is behind a reverse proxy?</dt>\n<dd>\n<p>You probably are not or you would know. We show a pretty good guess on the option page. Set the option using this unless you are sure you know better.</p>\n</dd>\n<dt>Can I whitelist my IP so I don&#8217;t get locked out?</dt>\n<dd>\n<p>First please consider if you really need this. Generally speaking it is not a good idea to have exceptions to your security policies.</p>\n<p>That said, there is now a filter which allows you to do it: &#8220;limit_login_whitelist_ip&#8221;.</p>\n<p>Example:<br />\nfunction my_ip_whitelist($allow, $ip) {<br />\n     return ($ip == &#8216;my-ip&#8217;) ? true : $allow;<br />\n}<br />\nadd_filter(&#8216;limit_login_whitelist_ip&#8217;, &#8216;my_ip_whitelist&#8217;, 10, 2);</p>\n<p>Note that we still do notification and logging as usual. This is meant to allow you to be aware of any suspicious activity from whitelisted IPs.</p>\n</dd>\n<dt>I locked myself out testing this thing, what do I do?</dt>\n<dd>\n<p>Either wait, or:</p>\n<p>If you know how to edit / add to PHP files you can use the IP whitelist functionality described above. You should then use the &#8220;Restore Lockouts&#8221; button on the plugin settings page and remove the whitelist function again.</p>\n<p>If you have ftp / ssh access to the site rename the file &#8220;wp-content/plugins/limit-login-attempts/limit-login-attempts.php&#8221; to deactivate the plugin.</p>\n<p>If you have access to the database (for example through phpMyAdmin) you can clear the limit_login_lockouts option in the wordpress options table. In a default setup this would work: &#8220;UPDATE wp_options SET option_value = &#8221; WHERE option_name = &#8216;limit_login_lockouts\'&#8221;</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>1.7.1</h4>\n<p>This version fixes a security bug in version 1.6.2 and 1.7.0. Please upgrade immediately.</p>\n<p>&#8220;Auth cookies&#8221; are special cookies set at login that authenticating you to the system. It is how WordPress &#8220;remembers&#8221; that you are logged in between page loads.</p>\n<p>During lockout these are supposed to be cleared, but a change in 1.6.2 broke this. It allowed an attacker to keep trying to break these cookies during a lockout.</p>\n<p>Lockout of normal password login attempts still worked as it should, and it appears that all &#8220;auth cookie&#8221; attempts would keep getting logged.</p>\n<p>In theory the &#8220;auth cookie&#8221; is quite resistant to brute force attack. It contains a cryptographic hash of the user password, and the difficulty to break it is not based on the password strength but instead on the cryptographic operations used and the length of the hash value. In theory it should take many many years to break this hash. As theory and practice does not always agree it is still a good idea to have working lockouts of any such attempts.</p>\n<h4>1.7.0</h4>\n<ul>\n<li>Added filter that allows whitelisting IP. Please use with care!!</li>\n<li>Update to Spanish translation, thanks to Marcelo Pedra</li>\n<li>Updated Swedish translation</li>\n<li>Tested against WordPress 3.3.2</li>\n</ul>\n<h4>1.6.2</h4>\n<ul>\n<li>Fix bug where log would not get updated after it had been cleared</li>\n<li>Do plugin setup in &#8216;init&#8217; action</li>\n<li>Small update to Spanish translation file, thanks to Marcelo Pedra</li>\n<li>Tested against WordPress 3.2.1</li>\n</ul>\n<h4>1.6.1</h4>\n<ul>\n<li>(WordPress 3.0+) An invalid cookie can sometimes get sent multiple times before it gets cleared, resulting in multiple failed attempts or even a lockout from a single invalid cookie. Store the latest failed cookie to make sure we only count it as one failed attempt</li>\n<li>Define &#8220;Text Domain&#8221; correctly</li>\n<li>Include correct Dutch tranlation file. Thanks to Martin1 for noticing. Thanks again to Bjorn Wijers for the translation</li>\n<li>Updated POT file for this version</li>\n<li>Tested against WordPress 3.1-RC4</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Happy New Year</li>\n<li>Tested against WordPress 3.1-RC1</li>\n<li>Plugin now requires WordPress version 2.8+. Of course you should never ever use anything but the latest version</li>\n<li>Fixed deprecation warnings that had been piling up with the old version requirement. Thanks to Johannes Ruthenberg for the report that prompted this</li>\n<li>Removed auth cookie admin check for version 2.7.</li>\n<li>Make sure relevant values in $_COOKIE get cleared right away on auth cookie validation failure. There are still some problems with cookie auth handling. The lockout can trigger prematurely in rare cases, but fixing it is plugin version 2 stuff unfortunately.</li>\n<li>Changed default time for retries to reset from 24 hours to 12 hours. The security impact is very minor and it means the warning will disappear &#8220;overnight&#8221;</li>\n<li>Added question to FAQ (&#8220;Why not reset failed attempts on a successful login?&#8221;)</li>\n<li>Updated screenshots</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Reverted minor cookie-handling cleanup which might somehow be responsible for recently reported cookie related lockouts</li>\n<li>Added version 1.x Brazilian Portuguese translation, thanks to Luciano Passuello</li>\n<li>Added Finnish translation, thanks to Ari Kontiainen</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Further multisite &amp; WPMU support (again thanks to <a href=\"mailto:&#101;&#114;&#105;&#x6b;&#x40;&#101;&#114;&#105;&#x6b;&#x73;&#x68;&#111;&#115;t&#x69;&#x6e;&#103;&#046;c&#x6f;&#x6d;\" rel=\"nofollow\">&#101;&#114;&#105;&#x6b;&#x40;&#101;&#114;&#105;&#x6b;&#x73;&#x68;&#111;&#115;t&#x69;&#x6e;&#103;&#046;c&#x6f;&#x6d;</a>)</li>\n<li>Better error handling if option variables are damaged</li>\n<li>Added Traditional Chinese translation, thanks to Denny Huang <a href=\"mailto:&#x62;&#105;&#x67;&#101;&#x78;&#112;&#x6c;&#111;&#114;&#x61;&#116;&#x69;&#111;&#x6e;&#115;&#064;&#x62;&#105;&#x67;&#101;&#x78;&#112;&#108;&#x6f;&#114;&#x61;&#116;&#x69;&#111;n&#x73;&#046;&#x63;&#111;&#x6d;&#046;t&#x77;\" rel=\"nofollow\">&#x62;&#105;&#x67;&#101;&#x78;&#112;&#x6c;&#111;&#114;&#x61;&#116;&#x69;&#111;&#x6e;&#115;&#064;&#x62;&#105;&#x67;&#101;&#x78;&#112;&#108;&#x6f;&#114;&#x61;&#116;&#x69;&#111;n&#x73;&#046;&#x63;&#111;&#x6d;&#046;t&#x77;</a></li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Tested against WordPress 3.0</li>\n<li>Handle 3.0 login page failure &#8220;shake&#8221;</li>\n<li>Basic multisite support (parts thanks to <a href=\"mailto:&#101;&#114;&#105;&#x6b;&#x40;&#101;&#114;&#105;&#x6b;&#x73;&#x68;&#111;&#115;t&#x69;&#x6e;&#103;&#046;c&#x6f;&#x6d;\" rel=\"nofollow\">&#101;&#114;&#105;&#x6b;&#x40;&#101;&#114;&#105;&#x6b;&#x73;&#x68;&#111;&#115;t&#x69;&#x6e;&#103;&#046;c&#x6f;&#x6d;</a>)</li>\n<li>Added Dutch translation, thanks to Bjorn Wijers <a href=\"mailto:b&#117;&#x72;&#111;&#x62;&#x6a;&#111;&#x72;n&#064;&#x62;&#117;&#x72;&#x6f;&#098;&#x6a;&#111;&#114;&#x6e;&#046;&#x6e;l\" rel=\"nofollow\">b&#117;&#x72;&#111;&#x62;&#x6a;&#111;&#x72;n&#064;&#x62;&#117;&#x72;&#x6f;&#098;&#x6a;&#111;&#114;&#x6e;&#046;&#x6e;l</a></li>\n<li>Added Hungarian translation, thanks to B?lint Vereskuti <a href=\"mailto:&#098;&#097;&#x6c;&#x69;&#110;&#116;&#x40;v&#101;&#x72;&#x65;&#115;&#107;&#x75;&#x74;&#105;&#046;&#x69;n&#102;&#x6f;\" rel=\"nofollow\">&#098;&#097;&#x6c;&#x69;&#110;&#116;&#x40;v&#101;&#x72;&#x65;&#115;&#107;&#x75;&#x74;&#105;&#046;&#x69;n&#102;&#x6f;</a></li>\n<li>Added French translation, thanks to oVa <a href=\"mailto:&#111;&#118;&#x61;&#x31;&#x33;l&#097;&#115;&#x74;&#x61;&#x72;&#064;&#103;&#109;&#097;&#x69;&#x6c;&#x2e;&#099;&#111;&#109;\" rel=\"nofollow\">&#111;&#118;&#x61;&#x31;&#x33;l&#097;&#115;&#x74;&#x61;&#x72;&#064;&#103;&#109;&#097;&#x69;&#x6c;&#x2e;&#099;&#111;&#109;</a></li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Added Turkish translation, thanks to Yazan Canarkadas</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Protect admin page update using wp_nonce</li>\n<li>Added Czech translation, thanks to Jakub Jedelsky</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Added Bulgarian translation, thanks to Hristo Chakarov</li>\n<li>Added Norwegian translation, thanks to Rune Gulbrands?y</li>\n<li>Added Spanish translation, thanks to Marcelo Pedra</li>\n<li>Added Persian translation, thanks to Mostafa Soufi</li>\n<li>Added Russian translation, thanks to Jack Leonid (http://studio-xl.com)</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Added Catalan translation, thanks to Robert Buj</li>\n<li>Added Romanian translation, thanks to Robert Tudor</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Support for getting the correct IP for clients while server is behind reverse proxy, thanks to Michael Skerwiderski</li>\n<li>Added German translation, thanks to Michael Skerwiderski</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>No longer replaces pluggable function when cookie handling active. Re-implemented using available actions and filters</li>\n<li>Filter error messages during login to avoid information leak regarding available usernames</li>\n<li>Do not show retries or lockout messages except for login (registration, lost password pages). No change in actual enforcement</li>\n<li>Slightly more aggressive in trimming old retries data</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Added translation support</li>\n<li>Added Swedish translation</li>\n<li>During lockout, filter out all other login errors</li>\n<li>Minor cleanups</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial version</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/limit-login-attempts/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n		\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{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:47:\"https://wordpress.org/plugins/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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/tinymce-advanced/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jun 2007 06:02:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins-wp/tinymce-advanced/\";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:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:10621:\"<p><!--section=description--></p>\n<p>This plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar. You can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc. It will also let you enable the editor menu, see the <a href=\"screenshots\" rel=\"nofollow\">screenshots</a>.</p>\n<p>It includes 15 plugins for <a href=\"http://tinymce.com/\" rel=\"nofollow\">TinyMCE</a> that are automatically enabled or disabled depending on the buttons you have chosen. In addition this plugin adds some commonly used options as keeping the paragraph tags in the Text editor and importing the CSS classes from the theme&#8217;s editor-style.css.</p>\n<h4>Some of the features added by this plugin</h4>\n<ul>\n<li>Support for creating and editing tables.</li>\n<li>More options when inserting lists.</li>\n<li>Search and Replace in the editor.</li>\n<li>Ability to set Font Family and Font Sizes.</li>\n<li>And many others.</li>\n</ul>\n<p>With this plugin you can also enable the TinyMCE menu above the toolbars. This will make the editor even more powerful and convenient.</p>\n<p><!--section=installation--></p>\n<p>Best is to install directly from WordPress. If manual installation is required, please make sure that the plugin files are in a folder named &#8220;tinymce-advanced&#8221; (not two nested folders) in the WordPress plugins folder, usually &#8220;wp-content/plugins&#8221;.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>Best is to install directly from WordPress. If manual installation is required, please make sure that the plugin files are in a folder named &#8220;tinymce-advanced&#8221; (not two nested folders) in the WordPress plugins folder, usually &#8220;wp-content/plugins&#8221;.</p>\n</dd>\n<dt>No styles are imported in the Formats sub-menu.</dt>\n<dd>\n<p>These styles are imported from your current theme editor-style.css file. However some themes do not have this functionality. For these themes TinyMCE Advanced has the option to let you add a customized editor-style.css and import it into the editor.</p>\n</dd>\n<dt>I have just installed this plugin, but it does not do anything.</dt>\n<dd>\n<p>Change some buttons on one of the toolbars, save your changes, clear your browser cache, and try again. If that does not work try reloding the Edit page several times while holding down Shift or Ctrl. There may also be a network cache somewhere between you and your host. You may need to wait for a few hours until this cache expires.</p>\n</dd>\n<dt>When I add &#8220;Smilies&#8221;, they do not show in the editor.</dt>\n<dd>\n<p>The &#8220;Emoticons&#8221; button in TinyMCE adds the codes for the smilies. The actual images are added by WordPress when viewing the Post. Make sure the checkbox &#8220;Convert emoticons to graphics on display&#8221; in &#8220;Options &#8211; Writing&#8221; is checked.</p>\n</dd>\n<dt>The plugin does not add any buttons.</dt>\n<dd>\n<p>Make sure the &#8220;Disable the visual editor when writing&#8221; checkbox under &#8220;Users &#8211; Your Profile&#8221; is <strong>not</strong> checked.</p>\n</dd>\n<dt>I still see the &#8220;old&#8221; buttons in the editor</dt>\n<dd>\n<p>Click the &#8220;Restore Default Settings&#8221; button on the plugin settings page and then set the buttons again and save.</p>\n</dd>\n<dt>Other questions? More screenshots?</dt>\n<dd>\n<p>Please post on the support forum or visit the homepage for <a href=\"http://www.laptoptips.ca/projects/tinymce-advanced/\" rel=\"nofollow\">TinyMCE Advanced</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>4.5.6</h4>\n<ul>\n<li>Updated for WordPress 4.7.4 and TinyMCE 4.5.6.</li>\n<li>Fixed PHP notice after importing settings.</li>\n</ul>\n<h4>4.4.3</h4>\n<ul>\n<li>Updated for WordPress 4.7 and TinyMCE 4.4.3.</li>\n<li>Fixed missing &#8220;Source code&#8221; button bug.</li>\n</ul>\n<h4>4.4.1</h4>\n<ul>\n<li>Updated for WordPress 4.6 and TinyMCE 4.4.1.</li>\n<li>Fixed multisite saving bug.</li>\n<li>Added new button in the Text editor to add or reset the line breaks. Adds line breaks only between tags. Works only when it detects that line breaks are missing so it doesn&#8217;t reformat posts with removed paragraphs.</li>\n</ul>\n<h4>4.3.10.1</h4>\n<ul>\n<li>Fixed adding paragraph tags when loading posts that were saved before turning autop off.</li>\n<li>Disabled the (new) inline toolbar for tables as it was overlapping the table in some cases.</li>\n</ul>\n<h4>4.3.10</h4>\n<ul>\n<li>Updated for WordPress 4.5.1 and TinyMCE 4.3.10.</li>\n<li>Fixed support for adding editor-style.css to themes that don&#8217;t have it.</li>\n</ul>\n<h4>4.3.8</h4>\n<ul>\n<li>Updated for WordPress 4.5 and TinyMCE 4.3.8.</li>\n<li>Separated standard options and admin options.</li>\n<li>Added settings that can disable the plugin for the main editor, other editors in wp-admin or editors on the front-end.</li>\n<li>Korean translation by Josh Kim and Greek translation by Stathis Mellios.</li>\n</ul>\n<h4>4.2.8</h4>\n<ul>\n<li>Updated for WordPress 4.4 and TinyMCE 4.2.8.</li>\n<li>Japanese translation by Manabu Miwa.</li>\n</ul>\n<h4>4.2.5</h4>\n<ul>\n<li>Updated for WordPress 4.3.1 and TinyMCE 4.2.5.</li>\n<li>Fixed text domain and plugin headers.</li>\n</ul>\n<h4>4.2.3.1</h4>\n<ul>\n<li>Fix error with removing the &#8216;textpattern&#8217; plugin.</li>\n</ul>\n<h4>4.2.3</h4>\n<ul>\n<li>Updated for WordPress 4.3 and TinyMCE 4.2.3.</li>\n<li>Removed the &#8216;textpattern&#8217; plugin as WordPress 4.3 includes similar functionality by default.</li>\n<li>French translation by Nicolas Schneider.</li>\n</ul>\n<h4>4.1.9</h4>\n<ul>\n<li>Updated for WordPress 4.2 and TinyMCE 4.1.9.</li>\n<li>Fixed bugs with showing oEmbed previews when pasting an URL.</li>\n<li>Fixed bugs with getting the content from TinyMCE with line breaks.</li>\n</ul>\n<h4>4.1.7</h4>\n<ul>\n<li>Updated for WordPress 4.1 and TinyMCE 4.1.7.</li>\n<li>Fixed bug where consecutive caption shortcodes may be split with an empty paragraph tag.</li>\n</ul>\n<h4>4.1.1</h4>\n<ul>\n<li>Fix bug with image captions when wpautop is disabled.</li>\n<li>Add translation support to the settings page. Button names/descriptions are translated from JS using the existing WordPress translation, so this part of the settings page will be translated by default. The other text still needs separate translation.</li>\n</ul>\n<h4>4.1</h4>\n<ul>\n<li>Updated for WordPress 4.0 and TinyMCE 4.1.</li>\n<li>Add the &#8216;textpattern&#8217; plugin that supports some of the markdown syntax while typing, <a href=\"http://www.tinymce.com/wiki.php/Configuration:textpattern_patterns\" rel=\"nofollow\">(more info)</a>.</li>\n<li>Add the updated &#8216;table&#8217; plugin that supports background and border color.</li>\n</ul>\n<h4>4.0.2</h4>\n<ul>\n<li>Fix showing of the second, third and forth button rows when the Toolbar Toggle button is not used.</li>\n<li>Fix adding the &#8221;directionality&#8221; plugin when RTL or LTR button is selected.</li>\n<li>Show the &#8221;Advanced Options&#8221; to super admins on multisite installs.</li>\n<li>Add the &#8221;link&#8221; plugin including link rel setting. Replaces the Insert/Edit Link dialog when enabled.</li>\n<li>Include updated &#8221;table&#8221; plugin that has support for vertical align for cells.</li>\n</ul>\n<h4>4.0.1</h4>\n<p>Fix warnings on pages other than Edit Post. Update the description.</p>\n<h4>4.0</h4>\n<p>Updated for WordPress 3.9 and TinyMCE 4.0. Refreshed the settings screen. Added support for exporting and importing of the settings.</p>\n<h4>3.5.9.1</h4>\n<p>Updated for WordPress 3.8, fixed auto-embedding of single line URLs when not removing paragraph tags.</p>\n<h4>3.5.9</h4>\n<p>Updated for WordPress 3.7 and TinyMCE 3.5.9.</p>\n<h4>3.5.8</h4>\n<p>Updated for WordPress 3.5 and TinyMCE 3.5.8.</p>\n<h4>3.4.9</h4>\n<p>Updated for WordPress 3.4 and TinyMCE 3.4.9.</p>\n<h4>3.4.5.1</h4>\n<p>Fixed a bug preventing TinyMCE from importing CSS classes from editor-style.css.</p>\n<h4>3.4.5</h4>\n<p>Updated for WordPress 3.3 or later and TinyMCE 3.4.5.</p>\n<h4>3.4.2.1</h4>\n<p>Fix the removal of the <em>media</em> plugin so it does not require re-saving the settings.</p>\n<h4>3.4.2</h4>\n<p>Compatibility with WordPress 3.2 and TinyMCE 3.4.2, removed the options for support for iframe and HTML 5.0 elements as they are supported by default in WordPress 3.2, removed the <em>media</em> plugin as it is included by default.</p>\n<h4>3.3.9.1</h4>\n<p>Added advanced options: stop removing iframes, stop removing HTML 5.0 elements, moved the support for custom editor styles to editor-style.css in the current theme.</p>\n<p>Attention: if you have a customized tadv-mce.css file and your theme doesn&#8217;t have editor-style.css, please download tadv-mce.css, rename it to editor-style.css and upload it to your current theme directory. Alternatively you can add there the editor-style.css from the Twenty Ten theme. If your theme has editor-style.css you can add any custom styles there.</p>\n<h4>3.3.9</h4>\n<p>Compatibility with WordPress 3.1 and TinyMCE 3.3.9, improved P and BR tags option.</p>\n<h4>3.2.7</h4>\n<p>Compatibility with WordPress 2.9 and TinyMCE 3.2.7, several minor bug fixes.</p>\n<h4>3.2.4</h4>\n<p>Compatibility with WordPress 2.8 and TinyMCE 3.2.4, minor bug fixes.</p>\n<h4>3.2</h4>\n<p>Compatibility with WordPress 2.7 and TinyMCE 3.2, minor bug fixes.</p>\n<h4>3.1</h4>\n<p>Compatibility with WordPress 2.6 and TinyMCE 3.1, keeps empty paragraphs when disabling the removal of P and BR tags, the buttons for MCImageManager and MCFileManager can be arranged (if installed).</p>\n<h4>3.0.1</h4>\n<p>Compatibility with WordPress 2.5.1 and TinyMCE 3.0.7, added option to disable the removal of P and BR tags when saving and in the HTML editor (autop), added two more buttons to the HTML editor: autop and undo, fixed the removal of non-default TinyMCE buttons.</p>\n<h4>3.0</h4>\n<p>Support for WordPress 2.5 and TinyMCE 3.0.</p>\n<h4>2.2</h4>\n<p>Deactivate/Uninstall option page, font size drop-down menu and other small changes.</p>\n<h4>2.1</h4>\n<p>Improved language selection, improved compatibility with WordPress 2.3 and TinyMCE 2.1.1.1, option to override some of the imported css classes and other small improvements and bugfixes.</p>\n<h4>2.0</h4>\n<p>Includes an admin page for arranging the TinyMCE toolbar buttons, easy installation, a lot of bugfixes, customized &#8220;Smilies&#8221; plugin that uses the built-in WordPress smilies, etc. The admin page uses jQuery and jQuery UI that lets you &#8220;drag and drop&#8221; the TinyMCE buttons to arrange your own toolbars and enables/disables the corresponding plugins depending on the used buttons.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/tinymce-advanced/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:50:\"https://wordpress.org/plugins/browse/popular/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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 May 2017 15:32:22 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 22 May 2017 15:25:31 GMT\";s:4:\"link\";s:66:\"<https://wordpress.org/plugins/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:\"20130911143210\";}", "no");
INSERT INTO `wpos_options` VALUES("1943", "_transient_timeout_yst_sm_category_1:4W7j6_3PeCT", "1495467230", "no");
INSERT INTO `wpos_options` VALUES("1944", "_transient_yst_sm_category_1:4W7j6_3PeCT", "C:24:\"WPSEO_Sitemap_Cache_Data\":474:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:427:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/category/wordpress/</loc>\n		<lastmod>2017-04-04T15:04:48+00:00</lastmod>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("1537", "wpseo_sitemap_1562_cache_validator", "3PnAF", "no");
INSERT INTO `wpos_options` VALUES("1957", "_transient_timeout_yst_sm_pricing-tables_1:4W7j6_3IsmL", "1495510830", "no");
INSERT INTO `wpos_options` VALUES("1958", "_transient_yst_sm_pricing-tables_1:4W7j6_3IsmL", "C:24:\"WPSEO_Sitemap_Cache_Data\":1732:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:1684:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/advanced/</loc>\n		<lastmod>2015-08-20T04:28:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/professional/</loc>\n		<lastmod>2015-08-20T04:35:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/standard-2/</loc>\n		<lastmod>2015-08-20T04:36:33+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/ultimate/</loc>\n		<lastmod>2015-08-20T07:27:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/professional-2/</loc>\n		<lastmod>2015-08-20T07:28:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/standard-3/</loc>\n		<lastmod>2015-08-20T07:29:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/economy/</loc>\n		<lastmod>2015-08-20T07:30:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/gold/</loc>\n		<lastmod>2017-04-04T10:55:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/diamond/</loc>\n		<lastmod>2017-04-04T10:57:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/silver/</loc>\n		<lastmod>2017-04-05T20:12:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://mlksolutions.org/pricing-tables/1631/</loc>\n		<lastmod>2017-04-25T10:25:53+00:00</lastmod>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("1961", "_transient_timeout_yst_sm_testimonials-category_1:4W7j6_3PnAG", "1495517289", "no");
INSERT INTO `wpos_options` VALUES("1962", "_transient_yst_sm_testimonials-category_1:4W7j6_3PnAG", "C:24:\"WPSEO_Sitemap_Cache_Data\":485:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:438:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://mlksolutions.org/testimonials-category/clients/</loc>\n		<lastmod>2017-04-04T14:17:09+00:00</lastmod>\n	</url>\n</urlset>\";}}", "no");
INSERT INTO `wpos_options` VALUES("1833", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.5.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.7.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.5\";s:7:\"version\";s:5:\"4.7.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1495467228;s:15:\"version_checked\";s:5:\"4.7.5\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wpos_options` VALUES("2006", "duplicator_version_plugin", "1.2.8", "yes");
INSERT INTO `wpos_options` VALUES("1979", "_site_transient_timeout_browser_699dfc46f2edc5d25d73bee60c1bf7b9", "1496071933", "no");
INSERT INTO `wpos_options` VALUES("1980", "_site_transient_browser_699dfc46f2edc5d25d73bee60c1bf7b9", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";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;}", "no");
INSERT INTO `wpos_options` VALUES("1977", "rs-templates-new", "", "no");
INSERT INTO `wpos_options` VALUES("1978", "rs-templates", "a:2:{s:6:\"slider\";a:170:{i:0;a:20:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:20:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:20:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:20:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:20:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:20:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:20:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.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:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:20:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:20:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:20:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:20:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.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:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:20:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:20:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:20:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.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:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:20:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:20:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:20:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:20:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:20:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:20:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:20:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.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:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:20:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:20:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.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: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:20:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:20:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:20:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:20:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:20:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.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:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:20:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.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:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:20:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:20:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:20:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:20:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:20:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:20:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.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:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:20:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.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:104:\"<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:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:20:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:20:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:20:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:20:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:20:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:20:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:20:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:20:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:20:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:20:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:20:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:20:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:20:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:20:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:20:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:20:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:20:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:20:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.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:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:20:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:20:{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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:20:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:20:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:20:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:20:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:20:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:20:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:20:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:20:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:20:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:20:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:20:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:23:{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:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:23:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:23:{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:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:23:{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:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:23:{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:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:23:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:23:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:23:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:23:{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:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:23:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:23:{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:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:23:{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:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:23:{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:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:23:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:23:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:23:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}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.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:20:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:20:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:20:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:23:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:23:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:23:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:23:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:23:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:23:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:23:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:23:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:20:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:20:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:23:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s: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:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:23:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:23:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:23:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:23:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:20:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:20:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:20:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:23:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:23:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:23:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:23:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:20:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:426:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-typewriter/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:20:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:23:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:23:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:23:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:23:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:23:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:23:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:23:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:23:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:23:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:23:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:23:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:23:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:23:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:23:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:23:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:23:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:23:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:23:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:23:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:23:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:568:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:20:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:343:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:20:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:341:\"<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 Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:20:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:23:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:20:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";s:164:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:20:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:468:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:20:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:20:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:463:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://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;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:20:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:421:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></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 Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:20:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:20:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:20:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";s:352:\"[{\"path\":\"revslider-404-addon\\/revslider-404-addon.php\",\"name\":\"404 Page Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:20:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:20:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/filmstrip-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";s:191:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:20:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:20:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:20:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:20:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:20:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:20:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:23:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:23:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:23:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:23:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:23:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:23:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:23:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:23:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:23:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:23:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:23:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:23:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:23:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:23:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:23:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s: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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:20:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:358:\"<span class=\"ttm_content\">How to install <a href=\"https://revolution.themepunch.com/direct-customer-benefits/#addoninstall\" target=\"_blank\">Add-Ons</a>.</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 Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:20:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:20:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:358:\"<span class=\"ttm_content\">How to install <a href=\"https://revolution.themepunch.com/direct-customer-benefits/#addoninstall\" target=\"_blank\">Add-Ons</a>.</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 Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:20:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<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;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:162:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}}}", "no");

/* INSERT TABLE DATA: wpos_postmeta */
INSERT INTO `wpos_postmeta` VALUES("2", "12", "_wp_attached_file", "2015/07/01.jpg");
INSERT INTO `wpos_postmeta` VALUES("3", "12", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1330;s:6:\"height\";i:720;s:4:\"file\";s:14:\"2015/07/01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"01-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"01-1024x554.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("4", "68", "_wp_attached_file", "2015/07/peop-img37.jpg");
INSERT INTO `wpos_postmeta` VALUES("5", "68", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/07/peop-img37.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img37-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("6", "69", "_wp_attached_file", "2015/07/peop-img38.jpg");
INSERT INTO `wpos_postmeta` VALUES("7", "69", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/07/peop-img38.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img38-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("8", "70", "_wp_attached_file", "2015/07/peop-img40.jpg");
INSERT INTO `wpos_postmeta` VALUES("9", "70", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/07/peop-img40.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("10", "71", "_wp_attached_file", "2015/07/peop-img42.jpg");
INSERT INTO `wpos_postmeta` VALUES("11", "71", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/07/peop-img42.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img42-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("12", "72", "_wp_attached_file", "2015/07/peop-img41.jpg");
INSERT INTO `wpos_postmeta` VALUES("13", "72", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/07/peop-img41.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("14", "75", "_wp_attached_file", "2015/07/peop-img39.jpg");
INSERT INTO `wpos_postmeta` VALUES("15", "75", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/07/peop-img39.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("16", "225", "_wp_attached_file", "2015/07/clientlogo16-gray.png");
INSERT INTO `wpos_postmeta` VALUES("17", "225", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo16-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo16-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("18", "226", "_wp_attached_file", "2015/07/clientlogo18-gray.png");
INSERT INTO `wpos_postmeta` VALUES("19", "226", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo18-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo18-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("20", "227", "_wp_attached_file", "2015/07/clientlogo19-gray.png");
INSERT INTO `wpos_postmeta` VALUES("21", "227", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo19-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo19-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("22", "228", "_wp_attached_file", "2015/07/clientlogo11-gray.png");
INSERT INTO `wpos_postmeta` VALUES("23", "228", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo11-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo11-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("24", "229", "_wp_attached_file", "2015/07/clientlogo12-gray.png");
INSERT INTO `wpos_postmeta` VALUES("25", "229", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo12-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo12-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("26", "230", "_wp_attached_file", "2015/07/clientlogo15-gray.png");
INSERT INTO `wpos_postmeta` VALUES("27", "230", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo15-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo15-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("28", "232", "_wp_attached_file", "2015/07/clientlogo13-gray.png");
INSERT INTO `wpos_postmeta` VALUES("29", "232", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo13-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo13-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("30", "233", "_wp_attached_file", "2015/07/clientlogo14-gray.png");
INSERT INTO `wpos_postmeta` VALUES("31", "233", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo14-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo14-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("32", "234", "_wp_attached_file", "2015/07/clientlogo20-gray.png");
INSERT INTO `wpos_postmeta` VALUES("33", "234", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2015/07/clientlogo20-gray.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"clientlogo20-gray-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("34", "760", "_wp_attached_file", "2015/07/clientlogo20.png");
INSERT INTO `wpos_postmeta` VALUES("35", "760", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo20.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo20-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("36", "761", "_wp_attached_file", "2015/07/clientlogo19.png");
INSERT INTO `wpos_postmeta` VALUES("37", "761", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo19.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo19-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("38", "762", "_wp_attached_file", "2015/07/clientlogo18.png");
INSERT INTO `wpos_postmeta` VALUES("39", "762", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo18.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo18-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("40", "763", "_wp_attached_file", "2015/07/clientlogo17.png");
INSERT INTO `wpos_postmeta` VALUES("41", "763", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo17.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo17-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("42", "764", "_wp_attached_file", "2015/07/clientlogo16.png");
INSERT INTO `wpos_postmeta` VALUES("43", "764", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo16.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo16-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("44", "765", "_wp_attached_file", "2015/07/clientlogo15.png");
INSERT INTO `wpos_postmeta` VALUES("45", "765", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo15.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo15-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("46", "766", "_wp_attached_file", "2015/07/clientlogo14.png");
INSERT INTO `wpos_postmeta` VALUES("47", "766", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo14.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo14-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("48", "767", "_wp_attached_file", "2015/07/clientlogo13.png");
INSERT INTO `wpos_postmeta` VALUES("49", "767", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo13.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo13-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("50", "768", "_wp_attached_file", "2015/07/clientlogo12.png");
INSERT INTO `wpos_postmeta` VALUES("51", "768", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo12.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo12-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("52", "769", "_wp_attached_file", "2015/07/clientlogo11.png");
INSERT INTO `wpos_postmeta` VALUES("53", "769", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:197;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2015/07/clientlogo11.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"clientlogo11-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("54", "1070", "_wp_attached_file", "2015/07/site-img35.jpg");
INSERT INTO `wpos_postmeta` VALUES("55", "1070", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:22:\"2015/07/site-img35.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img35-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("56", "1071", "_wp_attached_file", "2015/07/site-img38.jpg");
INSERT INTO `wpos_postmeta` VALUES("57", "1071", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:22:\"2015/07/site-img38.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img38-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("58", "1149", "_wp_attached_file", "2015/07/peop-img2.jpg");
INSERT INTO `wpos_postmeta` VALUES("59", "1149", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:560;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2015/07/peop-img2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"peop-img2-150x150.jpg\";s:5:\"width\";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:\"peop-img2-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("60", "1152", "_wp_attached_file", "2015/07/peop-img1.jpg");
INSERT INTO `wpos_postmeta` VALUES("61", "1152", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:560;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2015/07/peop-img1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"peop-img1-150x150.jpg\";s:5:\"width\";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:\"peop-img1-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("62", "1287", "_wp_attached_file", "2015/07/video-bg1.jpg");
INSERT INTO `wpos_postmeta` VALUES("63", "1287", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:21:\"2015/07/video-bg1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"video-bg1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"video-bg1-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"video-bg1-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"video-bg1-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("64", "1316", "_wp_attached_file", "2015/07/site-img5.png");
INSERT INTO `wpos_postmeta` VALUES("65", "1316", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/07/site-img5.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"site-img5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"site-img5-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("66", "1323", "_wp_attached_file", "2015/07/site-img64.png");
INSERT INTO `wpos_postmeta` VALUES("67", "1323", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2015/07/site-img64.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img64-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:22:\"site-img64-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("68", "1324", "_wp_attached_file", "2015/07/site-img7.png");
INSERT INTO `wpos_postmeta` VALUES("69", "1324", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/07/site-img7.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"site-img7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"site-img7-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("70", "1325", "_wp_attached_file", "2015/07/site-img8.png");
INSERT INTO `wpos_postmeta` VALUES("71", "1325", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/07/site-img8.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"site-img8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"site-img8-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("72", "1326", "_wp_attached_file", "2015/07/site-img9.png");
INSERT INTO `wpos_postmeta` VALUES("73", "1326", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/07/site-img9.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"site-img9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"site-img9-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("74", "1330", "_wp_attached_file", "2015/07/site-img11-e1439871928486.png");
INSERT INTO `wpos_postmeta` VALUES("75", "1330", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:37:\"2015/07/site-img11-e1439871928486.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"site-img11-e1439871928486-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("76", "1330", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:14:\"site-img11.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("77", "1331", "_wp_attached_file", "2015/07/site-img10-e1439871701254.png");
INSERT INTO `wpos_postmeta` VALUES("78", "1331", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:37:\"2015/07/site-img10-e1439871701254.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"site-img10-e1439871701254-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("79", "1331", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:14:\"site-img10.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("80", "1332", "_wp_attached_file", "2015/07/site-img12-e1439871935144.png");
INSERT INTO `wpos_postmeta` VALUES("81", "1332", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:37:\"2015/07/site-img12-e1439871935144.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"site-img12-e1439871935144-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("82", "1332", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:14:\"site-img12.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("83", "1342", "_wp_attached_file", "2015/07/site-img14.jpg");
INSERT INTO `wpos_postmeta` VALUES("84", "1342", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2015/07/site-img14.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img14-150x150.jpg\";s:5:\"width\";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:\"site-img14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("85", "1343", "_wp_attached_file", "2015/07/site-img15.jpg");
INSERT INTO `wpos_postmeta` VALUES("86", "1343", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2015/07/site-img15.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img15-150x150.jpg\";s:5:\"width\";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:\"site-img15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("87", "1344", "_wp_attached_file", "2015/07/site-img164.jpg");
INSERT INTO `wpos_postmeta` VALUES("88", "1344", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2015/07/site-img164.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"site-img164-150x150.jpg\";s:5:\"width\";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:\"site-img164-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("89", "1354", "_wp_attached_file", "2015/07/site-img17-e1439871857101.png");
INSERT INTO `wpos_postmeta` VALUES("90", "1354", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:716;s:6:\"height\";i:626;s:4:\"file\";s:37:\"2015/07/site-img17-e1439871857101.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"site-img17-e1439871857101-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:37:\"site-img17-e1439871857101-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("91", "1354", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:358;s:6:\"height\";i:313;s:4:\"file\";s:14:\"site-img17.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("92", "1355", "_wp_attached_file", "2015/07/scripts-logo2.jpg");
INSERT INTO `wpos_postmeta` VALUES("93", "1355", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo2-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("94", "1356", "_wp_attached_file", "2015/07/scripts-logo8.jpg");
INSERT INTO `wpos_postmeta` VALUES("95", "1356", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo8-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("96", "1357", "_wp_attached_file", "2015/07/scripts-logo4.jpg");
INSERT INTO `wpos_postmeta` VALUES("97", "1357", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo4-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("98", "1358", "_wp_attached_file", "2015/07/scripts-logo1.jpg");
INSERT INTO `wpos_postmeta` VALUES("99", "1358", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo1-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("100", "1359", "_wp_attached_file", "2015/07/scripts-logo7.jpg");
INSERT INTO `wpos_postmeta` VALUES("101", "1359", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo7-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("102", "1360", "_wp_attached_file", "2015/07/scripts-logo6.jpg");
INSERT INTO `wpos_postmeta` VALUES("103", "1360", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo6-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("104", "1361", "_wp_attached_file", "2015/07/scripts-logo5.jpg");
INSERT INTO `wpos_postmeta` VALUES("105", "1361", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo5-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("106", "1362", "_wp_attached_file", "2015/07/scripts-logo3.jpg");
INSERT INTO `wpos_postmeta` VALUES("107", "1362", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2015/07/scripts-logo3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"scripts-logo3-150x70.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("108", "1373", "_wp_attached_file", "2015/08/01.jpg");
INSERT INTO `wpos_postmeta` VALUES("109", "1373", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:14:\"2015/08/01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"01-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"01-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"01-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("110", "1375", "_wp_attached_file", "2015/08/bg.jpg");
INSERT INTO `wpos_postmeta` VALUES("111", "1375", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:14:\"2015/08/bg.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"bg-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"bg-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"bg-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("112", "1377", "_wp_attached_file", "2015/08/02.png");
INSERT INTO `wpos_postmeta` VALUES("113", "1377", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:486;s:6:\"height\";i:382;s:4:\"file\";s:14:\"2015/08/02.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-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:14:\"02-300x236.png\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("114", "1378", "_wp_attached_file", "2015/08/04.png");
INSERT INTO `wpos_postmeta` VALUES("115", "1378", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:395;s:6:\"height\";i:454;s:4:\"file\";s:14:\"2015/08/04.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"04-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:14:\"04-261x300.png\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("116", "1379", "_wp_attached_file", "2015/08/03.png");
INSERT INTO `wpos_postmeta` VALUES("117", "1379", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:431;s:6:\"height\";i:288;s:4:\"file\";s:14:\"2015/08/03.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-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:14:\"03-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("118", "1380", "_wp_attached_file", "2015/08/05.png");
INSERT INTO `wpos_postmeta` VALUES("119", "1380", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:424;s:6:\"height\";i:338;s:4:\"file\";s:14:\"2015/08/05.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"05-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:14:\"05-300x239.png\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("120", "1381", "_wp_attached_file", "2015/08/06.png");
INSERT INTO `wpos_postmeta` VALUES("121", "1381", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:123;s:6:\"height\";i:264;s:4:\"file\";s:14:\"2015/08/06.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"06-123x150.png\";s:5:\"width\";i:123;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("122", "1382", "_wp_attached_file", "2015/07/site-img160.jpg");
INSERT INTO `wpos_postmeta` VALUES("123", "1382", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:562;s:6:\"height\";i:380;s:4:\"file\";s:23:\"2015/07/site-img160.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"site-img160-150x150.jpg\";s:5:\"width\";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:\"site-img160-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("124", "1398", "_wp_attached_file", "2015/02/blog-img-02.jpg");
INSERT INTO `wpos_postmeta` VALUES("125", "1398", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:520;s:4:\"file\";s:23:\"2015/02/blog-img-02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"blog-img-02-150x150.jpg\";s:5:\"width\";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:\"blog-img-02-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:23:\"blog-img-02-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:24:\"blog-img-02-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("126", "1399", "_wp_attached_file", "2015/02/blog-img-03.jpg");
INSERT INTO `wpos_postmeta` VALUES("127", "1399", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:520;s:4:\"file\";s:23:\"2015/02/blog-img-03.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"blog-img-03-150x150.jpg\";s:5:\"width\";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:\"blog-img-03-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:23:\"blog-img-03-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:24:\"blog-img-03-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("128", "1400", "_wp_attached_file", "2015/02/blog-img-05.jpg");
INSERT INTO `wpos_postmeta` VALUES("129", "1400", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:520;s:4:\"file\";s:23:\"2015/02/blog-img-05.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"blog-img-05-150x150.jpg\";s:5:\"width\";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:\"blog-img-05-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:23:\"blog-img-05-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:24:\"blog-img-05-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("130", "1401", "_wp_attached_file", "2015/02/blog-img-06.jpg");
INSERT INTO `wpos_postmeta` VALUES("131", "1401", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:520;s:4:\"file\";s:23:\"2015/02/blog-img-06.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"blog-img-06-150x150.jpg\";s:5:\"width\";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:\"blog-img-06-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:23:\"blog-img-06-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:24:\"blog-img-06-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("132", "1402", "_wp_attached_file", "2015/02/blog-img-16.jpg");
INSERT INTO `wpos_postmeta` VALUES("133", "1402", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:520;s:4:\"file\";s:23:\"2015/02/blog-img-16.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"blog-img-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"blog-img-16-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:23:\"blog-img-16-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:24:\"blog-img-16-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("134", "1403", "_wp_attached_file", "2015/02/blog-img-17.jpg");
INSERT INTO `wpos_postmeta` VALUES("135", "1403", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:520;s:4:\"file\";s:23:\"2015/02/blog-img-17.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"blog-img-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"blog-img-17-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:23:\"blog-img-17-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:24:\"blog-img-17-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("136", "1404", "_wp_attached_file", "2015/02/portfolio-img21.jpg");
INSERT INTO `wpos_postmeta` VALUES("137", "1404", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2015/02/portfolio-img21.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"portfolio-img21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"portfolio-img21-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:27:\"portfolio-img21-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("138", "1416", "_wp_attached_file", "2015/07/site-img51.jpg");
INSERT INTO `wpos_postmeta` VALUES("139", "1416", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:562;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2015/07/site-img51.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img51-150x150.jpg\";s:5:\"width\";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:\"site-img51-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("140", "1417", "_wp_attached_file", "2015/07/site-img52.jpg");
INSERT INTO `wpos_postmeta` VALUES("141", "1417", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:562;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2015/07/site-img52.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img52-150x150.jpg\";s:5:\"width\";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:\"site-img52-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("142", "1418", "_wp_attached_file", "2015/07/site-img53.jpg");
INSERT INTO `wpos_postmeta` VALUES("143", "1418", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:550;s:4:\"file\";s:22:\"2015/07/site-img53.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img53-150x150.jpg\";s:5:\"width\";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:\"site-img53-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"site-img53-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"site-img53-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("144", "1420", "_wp_attached_file", "2015/07/site-img20.jpg");
INSERT INTO `wpos_postmeta` VALUES("145", "1420", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:280;s:4:\"file\";s:22:\"2015/07/site-img20.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img20-150x150.jpg\";s:5:\"width\";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:\"site-img20-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("146", "1421", "_wp_attached_file", "2015/07/site-img21.jpg");
INSERT INTO `wpos_postmeta` VALUES("147", "1421", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:280;s:4:\"file\";s:22:\"2015/07/site-img21.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img21-150x150.jpg\";s:5:\"width\";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:\"site-img21-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("148", "1423", "_wp_attached_file", "2015/07/site-img19.jpg");
INSERT INTO `wpos_postmeta` VALUES("149", "1423", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:280;s:4:\"file\";s:22:\"2015/07/site-img19.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img19-150x150.jpg\";s:5:\"width\";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:\"site-img19-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("150", "1425", "_wp_attached_file", "2015/07/site-img71.png");
INSERT INTO `wpos_postmeta` VALUES("151", "1425", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2015/07/site-img71.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img71-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:22:\"site-img71-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("152", "1426", "_wp_attached_file", "2015/07/site-img81.png");
INSERT INTO `wpos_postmeta` VALUES("153", "1426", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2015/07/site-img81.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img81-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:22:\"site-img81-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("154", "1427", "_wp_attached_file", "2015/07/site-img91.png");
INSERT INTO `wpos_postmeta` VALUES("155", "1427", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2015/07/site-img91.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img91-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:22:\"site-img91-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("156", "1430", "_wp_attached_file", "2015/08/icon-17.png");
INSERT INTO `wpos_postmeta` VALUES("157", "1430", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/08/icon-17.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("158", "1435", "_wp_attached_file", "2015/07/site-img32.png");
INSERT INTO `wpos_postmeta` VALUES("159", "1435", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:120;s:4:\"file\";s:22:\"2015/07/site-img32.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img32-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"site-img32-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("160", "1436", "_wp_attached_file", "2015/07/site-img33.jpg");
INSERT INTO `wpos_postmeta` VALUES("161", "1436", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:120;s:4:\"file\";s:22:\"2015/07/site-img33.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img33-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:21:\"site-img33-300x72.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("162", "1437", "_wp_attached_file", "2015/07/icon-8.png");
INSERT INTO `wpos_postmeta` VALUES("163", "1437", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:18:\"2015/07/icon-8.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("164", "1438", "_wp_attached_file", "2015/07/icon-9.png");
INSERT INTO `wpos_postmeta` VALUES("165", "1438", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:18:\"2015/07/icon-9.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("166", "1439", "_wp_attached_file", "2015/07/icon-15.png");
INSERT INTO `wpos_postmeta` VALUES("167", "1439", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/07/icon-15.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("168", "1440", "_wp_attached_file", "2015/07/icon-18.png");
INSERT INTO `wpos_postmeta` VALUES("169", "1440", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/07/icon-18.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("170", "1441", "_wp_attached_file", "2015/07/icon-26.png");
INSERT INTO `wpos_postmeta` VALUES("171", "1441", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/07/icon-26.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("172", "1442", "_wp_attached_file", "2015/07/icon-27.png");
INSERT INTO `wpos_postmeta` VALUES("173", "1442", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/07/icon-27.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("174", "1443", "_wp_attached_file", "2015/08/icon-7.png");
INSERT INTO `wpos_postmeta` VALUES("175", "1443", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:18:\"2015/08/icon-7.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("176", "1444", "_wp_attached_file", "2015/08/icon-16.png");
INSERT INTO `wpos_postmeta` VALUES("177", "1444", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/08/icon-16.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("178", "1445", "_wp_attached_file", "2015/08/icon-19.png");
INSERT INTO `wpos_postmeta` VALUES("179", "1445", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/08/icon-19.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("180", "1446", "_wp_attached_file", "2015/08/icon-22.png");
INSERT INTO `wpos_postmeta` VALUES("181", "1446", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/08/icon-22.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("182", "1447", "_wp_attached_file", "2015/08/icon-25.png");
INSERT INTO `wpos_postmeta` VALUES("183", "1447", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2015/08/icon-25.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("184", "1449", "_wp_attached_file", "2015/07/client-logos1.gif");
INSERT INTO `wpos_postmeta` VALUES("185", "1449", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos1.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("186", "1450", "_wp_attached_file", "2015/07/client-logos2.gif");
INSERT INTO `wpos_postmeta` VALUES("187", "1450", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos2.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("188", "1451", "_wp_attached_file", "2015/07/client-logos3.gif");
INSERT INTO `wpos_postmeta` VALUES("189", "1451", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos3.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("190", "1452", "_wp_attached_file", "2015/07/client-logos4.gif");
INSERT INTO `wpos_postmeta` VALUES("191", "1452", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos4.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("192", "1453", "_wp_attached_file", "2015/07/client-logos5.gif");
INSERT INTO `wpos_postmeta` VALUES("193", "1453", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos5.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("194", "1454", "_wp_attached_file", "2015/07/client-logos6.gif");
INSERT INTO `wpos_postmeta` VALUES("195", "1454", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos6.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("196", "1455", "_wp_attached_file", "2015/07/client-logos7.gif");
INSERT INTO `wpos_postmeta` VALUES("197", "1455", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos7.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("198", "1456", "_wp_attached_file", "2015/07/client-logos8.gif");
INSERT INTO `wpos_postmeta` VALUES("199", "1456", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos8.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("200", "1457", "_wp_attached_file", "2015/07/client-logos9.gif");
INSERT INTO `wpos_postmeta` VALUES("201", "1457", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2015/07/client-logos9.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("202", "1459", "_wp_attached_file", "2015/08/peop-img33.jpg");
INSERT INTO `wpos_postmeta` VALUES("203", "1459", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img33.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("204", "1460", "_wp_attached_file", "2015/08/peop-img34.jpg");
INSERT INTO `wpos_postmeta` VALUES("205", "1460", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img34.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("206", "1461", "_wp_attached_file", "2015/08/peop-img35.jpg");
INSERT INTO `wpos_postmeta` VALUES("207", "1461", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img35.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img35-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("208", "1462", "_wp_attached_file", "2015/08/peop-img36.jpg");
INSERT INTO `wpos_postmeta` VALUES("209", "1462", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img36.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("210", "1463", "_wp_attached_file", "2015/08/peop-img42.jpg");
INSERT INTO `wpos_postmeta` VALUES("211", "1463", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img42.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img42-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("212", "1464", "_wp_attached_file", "2015/08/peop-img43.jpg");
INSERT INTO `wpos_postmeta` VALUES("213", "1464", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img43.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img43-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("214", "1469", "_wp_attached_file", "2015/08/peop-img41.jpg");
INSERT INTO `wpos_postmeta` VALUES("215", "1469", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/peop-img41.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("216", "1475", "_wp_attached_file", "2015/07/site-img2.jpg");
INSERT INTO `wpos_postmeta` VALUES("217", "1475", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:560;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2015/07/site-img2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"site-img2-150x150.jpg\";s:5:\"width\";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:\"site-img2-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("218", "1477", "_wp_attached_file", "2015/08/people-sm1.jpg");
INSERT INTO `wpos_postmeta` VALUES("219", "1477", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:22:\"2015/08/people-sm1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("220", "1479", "_wp_attached_file", "2015/08/logo.png");
INSERT INTO `wpos_postmeta` VALUES("221", "1479", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:45;s:4:\"file\";s:16:\"2015/08/logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("222", "1486", "_wp_attached_file", "2015/08/works-img1.jpg");
INSERT INTO `wpos_postmeta` VALUES("223", "1486", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img1-150x150.jpg\";s:5:\"width\";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:\"works-img1-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:\"works-img1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("224", "1487", "_wp_attached_file", "2015/08/works-img2.jpg");
INSERT INTO `wpos_postmeta` VALUES("225", "1487", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img2-150x150.jpg\";s:5:\"width\";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:\"works-img2-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:\"works-img2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("226", "1488", "_wp_attached_file", "2015/08/works-img3.jpg");
INSERT INTO `wpos_postmeta` VALUES("227", "1488", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img3-150x150.jpg\";s:5:\"width\";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:\"works-img3-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:\"works-img3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("228", "1489", "_wp_attached_file", "2015/08/works-img4.jpg");
INSERT INTO `wpos_postmeta` VALUES("229", "1489", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img4-150x150.jpg\";s:5:\"width\";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:\"works-img4-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:\"works-img4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("230", "1490", "_wp_attached_file", "2015/08/works-img5.jpg");
INSERT INTO `wpos_postmeta` VALUES("231", "1490", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img5-150x150.jpg\";s:5:\"width\";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:\"works-img5-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:\"works-img5-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("232", "1491", "_wp_attached_file", "2015/08/works-img6.jpg");
INSERT INTO `wpos_postmeta` VALUES("233", "1491", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img6-150x150.jpg\";s:5:\"width\";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:\"works-img6-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:\"works-img6-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("234", "1492", "_wp_attached_file", "2015/08/works-img7.jpg");
INSERT INTO `wpos_postmeta` VALUES("235", "1492", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img7-150x150.jpg\";s:5:\"width\";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:\"works-img7-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:\"works-img7-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("236", "1493", "_wp_attached_file", "2015/08/works-img8.jpg");
INSERT INTO `wpos_postmeta` VALUES("237", "1493", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/08/works-img8.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img8-150x150.jpg\";s:5:\"width\";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:\"works-img8-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:\"works-img8-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("238", "1494", "_wp_attached_file", "2015/08/works-img102.jpg");
INSERT INTO `wpos_postmeta` VALUES("239", "1494", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/08/works-img102.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img102-150x150.jpg\";s:5:\"width\";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:\"works-img102-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img102-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img102-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("240", "1495", "_wp_attached_file", "2015/08/works-img103.jpg");
INSERT INTO `wpos_postmeta` VALUES("241", "1495", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2015/08/works-img103.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img103-150x150.jpg\";s:5:\"width\";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:\"works-img103-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img103-768x328.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img103-1024x438.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("242", "1496", "_wp_attached_file", "2015/08/works-img104.jpg");
INSERT INTO `wpos_postmeta` VALUES("243", "1496", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2015/08/works-img104.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img104-150x150.jpg\";s:5:\"width\";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:\"works-img104-300x51.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:51;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img104-768x131.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img104-1024x175.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("244", "1497", "_wp_attached_file", "2015/08/works-img105.jpg");
INSERT INTO `wpos_postmeta` VALUES("245", "1497", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2015/08/works-img105.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img105-150x150.jpg\";s:5:\"width\";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:\"works-img105-300x77.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img105-768x197.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img105-1024x263.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("246", "1498", "_wp_attached_file", "2015/08/works-img106.jpg");
INSERT INTO `wpos_postmeta` VALUES("247", "1498", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/08/works-img106.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img106-150x150.jpg\";s:5:\"width\";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:\"works-img106-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img106-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img106-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("248", "1499", "_wp_attached_file", "2015/08/works-img107.jpg");
INSERT INTO `wpos_postmeta` VALUES("249", "1499", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/08/works-img107.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img107-150x150.jpg\";s:5:\"width\";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:\"works-img107-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img107-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img107-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("250", "1500", "_wp_attached_file", "2015/08/works-img108.jpg");
INSERT INTO `wpos_postmeta` VALUES("251", "1500", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/08/works-img108.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img108-150x150.jpg\";s:5:\"width\";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:\"works-img108-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img108-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img108-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("252", "1501", "_wp_attached_file", "2015/08/works-img122.jpg");
INSERT INTO `wpos_postmeta` VALUES("253", "1501", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img122.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img122-150x150.jpg\";s:5:\"width\";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:\"works-img122-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img122-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("254", "1502", "_wp_attached_file", "2015/08/works-img123.jpg");
INSERT INTO `wpos_postmeta` VALUES("255", "1502", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img123.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img123-150x150.jpg\";s:5:\"width\";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:\"works-img123-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img123-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("256", "1503", "_wp_attached_file", "2015/08/works-img124.jpg");
INSERT INTO `wpos_postmeta` VALUES("257", "1503", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img124.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img124-150x150.jpg\";s:5:\"width\";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:\"works-img124-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img124-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("258", "1504", "_wp_attached_file", "2015/08/works-img125.jpg");
INSERT INTO `wpos_postmeta` VALUES("259", "1504", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img125.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img125-150x150.jpg\";s:5:\"width\";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:\"works-img125-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img125-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("260", "1505", "_wp_attached_file", "2015/08/works-img126.jpg");
INSERT INTO `wpos_postmeta` VALUES("261", "1505", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img126.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img126-150x150.jpg\";s:5:\"width\";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:\"works-img126-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img126-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("262", "1506", "_wp_attached_file", "2015/08/works-img127.jpg");
INSERT INTO `wpos_postmeta` VALUES("263", "1506", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img127.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img127-150x150.jpg\";s:5:\"width\";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:\"works-img127-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img127-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("264", "1507", "_wp_attached_file", "2015/08/works-img128.jpg");
INSERT INTO `wpos_postmeta` VALUES("265", "1507", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img128.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img128-150x150.jpg\";s:5:\"width\";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:\"works-img128-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img128-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("266", "1508", "_wp_attached_file", "2015/08/works-img129.jpg");
INSERT INTO `wpos_postmeta` VALUES("267", "1508", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/08/works-img129.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img129-150x150.jpg\";s:5:\"width\";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:\"works-img129-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img129-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("268", "1510", "_wp_attached_file", "2015/07/works-img101.jpg");
INSERT INTO `wpos_postmeta` VALUES("269", "1510", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/07/works-img101.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img101-150x150.jpg\";s:5:\"width\";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:\"works-img101-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img101-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img101-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("270", "1511", "_wp_attached_file", "2015/07/works-img112.jpg");
INSERT INTO `wpos_postmeta` VALUES("271", "1511", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/07/works-img112.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img112-150x150.jpg\";s:5:\"width\";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:\"works-img112-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img112-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img112-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("272", "1512", "_wp_attached_file", "2015/07/works-img111.jpg");
INSERT INTO `wpos_postmeta` VALUES("273", "1512", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/07/works-img111.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img111-150x150.jpg\";s:5:\"width\";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:\"works-img111-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img111-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img111-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("274", "1513", "_wp_attached_file", "2015/07/works-img110.jpg");
INSERT INTO `wpos_postmeta` VALUES("275", "1513", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/07/works-img110.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img110-150x150.jpg\";s:5:\"width\";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:\"works-img110-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img110-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img110-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("276", "1514", "_wp_attached_file", "2015/07/works-img109.jpg");
INSERT INTO `wpos_postmeta` VALUES("277", "1514", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2015/07/works-img109.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"works-img109-150x150.jpg\";s:5:\"width\";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:\"works-img109-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"works-img109-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"works-img109-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("278", "1515", "_wp_attached_file", "2015/07/site-img102-e1439871689742.png");
INSERT INTO `wpos_postmeta` VALUES("279", "1515", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:304;s:6:\"height\";i:304;s:4:\"file\";s:38:\"2015/07/site-img102-e1439871689742.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img102-e1439871689742-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:38:\"site-img102-e1439871689742-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("280", "1515", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:152;s:6:\"height\";i:152;s:4:\"file\";s:15:\"site-img102.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("281", "1516", "_wp_attached_file", "2015/07/site-img103-e1439871679569.png");
INSERT INTO `wpos_postmeta` VALUES("282", "1516", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:304;s:6:\"height\";i:304;s:4:\"file\";s:38:\"2015/07/site-img103-e1439871679569.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img103-e1439871679569-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:38:\"site-img103-e1439871679569-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("283", "1516", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:152;s:6:\"height\";i:152;s:4:\"file\";s:15:\"site-img103.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("284", "1517", "_wp_attached_file", "2015/07/site-img104-e1439871663804.png");
INSERT INTO `wpos_postmeta` VALUES("285", "1517", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:304;s:6:\"height\";i:304;s:4:\"file\";s:38:\"2015/07/site-img104-e1439871663804.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img104-e1439871663804-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:38:\"site-img104-e1439871663804-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("286", "1517", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:152;s:6:\"height\";i:152;s:4:\"file\";s:15:\"site-img104.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("287", "1518", "_wp_attached_file", "2015/08/11.jpg");
INSERT INTO `wpos_postmeta` VALUES("288", "1518", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:630;s:4:\"file\";s:14:\"2015/08/11.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"11-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"11-768x252.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"11-1024x336.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("289", "1519", "_wp_attached_file", "2015/08/12.png");
INSERT INTO `wpos_postmeta` VALUES("290", "1519", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:910;s:6:\"height\";i:578;s:4:\"file\";s:14:\"2015/08/12.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"12-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:14:\"12-300x191.png\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"12-768x488.png\";s:5:\"width\";i:768;s:6:\"height\";i:488;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("291", "1520", "_wp_attached_file", "2015/08/13.png");
INSERT INTO `wpos_postmeta` VALUES("292", "1520", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:463;s:6:\"height\";i:539;s:4:\"file\";s:14:\"2015/08/13.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-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:14:\"13-258x300.png\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("293", "1521", "_wp_attached_file", "2015/08/14.png");
INSERT INTO `wpos_postmeta` VALUES("294", "1521", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:623;s:6:\"height\";i:386;s:4:\"file\";s:14:\"2015/08/14.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"14-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:14:\"14-300x186.png\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("295", "1523", "_wp_attached_file", "2015/07/site-img106-e1439871640495.png");
INSERT INTO `wpos_postmeta` VALUES("296", "1523", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2015/07/site-img106-e1439871640495.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img106-e1439871640495-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:38:\"site-img106-e1439871640495-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"site-img106-e1439871640495-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("297", "1523", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:15:\"site-img106.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("298", "1524", "_wp_attached_file", "2015/07/site-img107-e1439871618439.png");
INSERT INTO `wpos_postmeta` VALUES("299", "1524", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2015/07/site-img107-e1439871618439.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img107-e1439871618439-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:38:\"site-img107-e1439871618439-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"site-img107-e1439871618439-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("300", "1524", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:15:\"site-img107.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("301", "1525", "_wp_attached_file", "2015/07/site-img108-e1439871573850.png");
INSERT INTO `wpos_postmeta` VALUES("302", "1525", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2015/07/site-img108-e1439871573850.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img108-e1439871573850-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:38:\"site-img108-e1439871573850-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"site-img108-e1439871573850-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("303", "1525", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:15:\"site-img108.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("304", "1526", "_wp_attached_file", "2015/08/10.jpg");
INSERT INTO `wpos_postmeta` VALUES("305", "1526", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:14:\"2015/08/10.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"10-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"10-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"10-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("306", "1527", "_wp_attached_file", "2015/08/11.png");
INSERT INTO `wpos_postmeta` VALUES("307", "1527", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:730;s:6:\"height\";i:340;s:4:\"file\";s:14:\"2015/08/11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-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:14:\"11-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("308", "1528", "_wp_attached_file", "2015/07/logo-white.png");
INSERT INTO `wpos_postmeta` VALUES("309", "1528", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:90;s:4:\"file\";s:22:\"2015/07/logo-white.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-white-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"logo-white-300x54.png\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("310", "1529", "_wp_attached_file", "2015/08/12.jpg");
INSERT INTO `wpos_postmeta` VALUES("311", "1529", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:14:\"2015/08/12.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"12-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"12-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"12-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("312", "1530", "_wp_attached_file", "2015/07/site-img6.png");
INSERT INTO `wpos_postmeta` VALUES("313", "1530", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/07/site-img6.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"site-img6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"site-img6-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("314", "1533", "_wp_attached_file", "2015/08/peop-img53.jpg");
INSERT INTO `wpos_postmeta` VALUES("315", "1533", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:257;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2015/08/peop-img53.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img53-150x150.jpg\";s:5:\"width\";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:\"peop-img53-171x300.jpg\";s:5:\"width\";i:171;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("316", "1534", "_wp_attached_file", "2015/08/peop-img56.jpg");
INSERT INTO `wpos_postmeta` VALUES("317", "1534", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:257;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2015/08/peop-img56.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img56-150x150.jpg\";s:5:\"width\";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:\"peop-img56-171x300.jpg\";s:5:\"width\";i:171;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("318", "1535", "_wp_attached_file", "2015/08/peop-img54.jpg");
INSERT INTO `wpos_postmeta` VALUES("319", "1535", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:257;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2015/08/peop-img54.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img54-150x150.jpg\";s:5:\"width\";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:\"peop-img54-171x300.jpg\";s:5:\"width\";i:171;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("320", "1536", "_wp_attached_file", "2015/08/peop-img55.jpg");
INSERT INTO `wpos_postmeta` VALUES("321", "1536", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:257;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2015/08/peop-img55.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"peop-img55-150x150.jpg\";s:5:\"width\";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:\"peop-img55-171x300.jpg\";s:5:\"width\";i:171;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("322", "1539", "_wp_attached_file", "2015/07/clogo3.png");
INSERT INTO `wpos_postmeta` VALUES("323", "1539", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2015/07/clogo3.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"clogo3-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("324", "1540", "_wp_attached_file", "2015/07/clogo1.png");
INSERT INTO `wpos_postmeta` VALUES("325", "1540", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2015/07/clogo1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"clogo1-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("326", "1541", "_wp_attached_file", "2015/07/clogo3-1.png");
INSERT INTO `wpos_postmeta` VALUES("327", "1541", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2015/07/clogo3-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"clogo3-1-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("328", "1542", "_wp_attached_file", "2015/07/clogo5-1.png");
INSERT INTO `wpos_postmeta` VALUES("329", "1542", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2015/07/clogo5-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"clogo5-1-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("330", "1543", "_wp_attached_file", "2015/07/clogo2.png");
INSERT INTO `wpos_postmeta` VALUES("331", "1543", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2015/07/clogo2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"clogo2-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("332", "1544", "_wp_attached_file", "2015/07/clogo5.png");
INSERT INTO `wpos_postmeta` VALUES("333", "1544", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2015/07/clogo5.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"clogo5-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("334", "1545", "_wp_attached_file", "2015/07/clogo2-1.png");
INSERT INTO `wpos_postmeta` VALUES("335", "1545", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2015/07/clogo2-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"clogo2-1-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("336", "1546", "_wp_attached_file", "2015/07/clogo1-1.png");
INSERT INTO `wpos_postmeta` VALUES("337", "1546", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2015/07/clogo1-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"clogo1-1-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("338", "1547", "_wp_attached_file", "2015/07/clogo4.png");
INSERT INTO `wpos_postmeta` VALUES("339", "1547", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2015/07/clogo4.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"clogo4-150x80.png\";s:5:\"width\";i:150;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:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("340", "1548", "_wp_attached_file", "2015/07/site-img176-e1439871842652.png");
INSERT INTO `wpos_postmeta` VALUES("341", "1548", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:38:\"2015/07/site-img176-e1439871842652.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("342", "1548", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:70;s:6:\"height\";i:70;s:4:\"file\";s:15:\"site-img176.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("343", "1549", "_wp_attached_file", "2015/07/site-img175-e1439871838225.png");
INSERT INTO `wpos_postmeta` VALUES("344", "1549", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:38:\"2015/07/site-img175-e1439871838225.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("345", "1549", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:70;s:6:\"height\";i:70;s:4:\"file\";s:15:\"site-img175.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("346", "1550", "_wp_attached_file", "2015/07/site-img177-e1439871815498.png");
INSERT INTO `wpos_postmeta` VALUES("347", "1550", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:38:\"2015/07/site-img177-e1439871815498.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("348", "1550", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:70;s:6:\"height\";i:70;s:4:\"file\";s:15:\"site-img177.png\";}}");
INSERT INTO `wpos_postmeta` VALUES("349", "1551", "_wp_attached_file", "2015/07/site-img178-e1439871791145.jpg");
INSERT INTO `wpos_postmeta` VALUES("350", "1551", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2340;s:6:\"height\";i:1080;s:4:\"file\";s:38:\"2015/07/site-img178-e1439871791145.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"site-img178-e1439871791145-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"site-img178-e1439871791145-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"site-img178-e1439871791145-768x354.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"site-img178-e1439871791145-1024x473.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("351", "1551", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:540;s:4:\"file\";s:15:\"site-img178.jpg\";}}");
INSERT INTO `wpos_postmeta` VALUES("352", "1553", "_wp_attached_file", "2015/07/logo-blue.png");
INSERT INTO `wpos_postmeta` VALUES("353", "1553", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:90;s:4:\"file\";s:21:\"2015/07/logo-blue.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-blue-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-blue-300x54.png\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("354", "1555", "_wp_attached_file", "2015/07/logo-orange.png");
INSERT INTO `wpos_postmeta` VALUES("355", "1555", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:90;s:4:\"file\";s:23:\"2015/07/logo-orange.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-orange-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"logo-orange-300x54.png\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("356", "1558", "_wp_attached_file", "2015/08/site-img19.jpg");
INSERT INTO `wpos_postmeta` VALUES("357", "1558", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:280;s:4:\"file\";s:22:\"2015/08/site-img19.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img19-150x150.jpg\";s:5:\"width\";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:\"site-img19-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("358", "1559", "_wp_attached_file", "2015/08/site-img20.jpg");
INSERT INTO `wpos_postmeta` VALUES("359", "1559", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:280;s:4:\"file\";s:22:\"2015/08/site-img20.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img20-150x150.jpg\";s:5:\"width\";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:\"site-img20-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("360", "1560", "_wp_attached_file", "2015/08/site-img21.jpg");
INSERT INTO `wpos_postmeta` VALUES("361", "1560", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:280;s:4:\"file\";s:22:\"2015/08/site-img21.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"site-img21-150x150.jpg\";s:5:\"width\";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:\"site-img21-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("362", "1577", "_wp_attached_file", "2015/07/thumb-demo1.jpg");
INSERT INTO `wpos_postmeta` VALUES("363", "1577", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:828;s:6:\"height\";i:580;s:4:\"file\";s:23:\"2015/07/thumb-demo1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"thumb-demo1-150x150.jpg\";s:5:\"width\";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:\"thumb-demo1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"thumb-demo1-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("364", "1578", "_wp_attached_file", "2015/07/thumb-demo2.jpg");
INSERT INTO `wpos_postmeta` VALUES("365", "1578", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:828;s:6:\"height\";i:580;s:4:\"file\";s:23:\"2015/07/thumb-demo2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"thumb-demo2-150x150.jpg\";s:5:\"width\";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:\"thumb-demo2-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"thumb-demo2-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("366", "1579", "_wp_attached_file", "2015/07/thumb-demo3.jpg");
INSERT INTO `wpos_postmeta` VALUES("367", "1579", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:828;s:6:\"height\";i:580;s:4:\"file\";s:23:\"2015/07/thumb-demo3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"thumb-demo3-150x150.jpg\";s:5:\"width\";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:\"thumb-demo3-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"thumb-demo3-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("368", "1642", "_wp_attached_file", "2015/07/site-img402.jpg");
INSERT INTO `wpos_postmeta` VALUES("369", "1642", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:390;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2015/07/site-img402.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"site-img402-150x150.jpg\";s:5:\"width\";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:\"site-img402-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("370", "1643", "_wp_attached_file", "2015/07/site-img403.jpg");
INSERT INTO `wpos_postmeta` VALUES("371", "1643", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:390;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2015/07/site-img403.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"site-img403-150x150.jpg\";s:5:\"width\";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:\"site-img403-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("372", "1644", "_wp_attached_file", "2015/07/site-img401.jpg");
INSERT INTO `wpos_postmeta` VALUES("373", "1644", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:390;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2015/07/site-img401.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"site-img401-150x150.jpg\";s:5:\"width\";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:\"site-img401-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("374", "1645", "_wp_attached_file", "2015/07/works-img21.jpg");
INSERT INTO `wpos_postmeta` VALUES("375", "1645", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2015/07/works-img21.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"works-img21-150x150.jpg\";s:5:\"width\";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:\"works-img21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("376", "1646", "_wp_attached_file", "2015/07/works-img24.jpg");
INSERT INTO `wpos_postmeta` VALUES("377", "1646", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2015/07/works-img24.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"works-img24-150x150.jpg\";s:5:\"width\";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:\"works-img24-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("378", "1647", "_wp_attached_file", "2015/07/works-img22.jpg");
INSERT INTO `wpos_postmeta` VALUES("379", "1647", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2015/07/works-img22.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"works-img22-150x150.jpg\";s:5:\"width\";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:\"works-img22-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("380", "1648", "_wp_attached_file", "2015/07/works-img23.jpg");
INSERT INTO `wpos_postmeta` VALUES("381", "1648", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2015/07/works-img23.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"works-img23-150x150.jpg\";s:5:\"width\";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:\"works-img23-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("382", "1649", "_wp_attached_file", "2015/07/video-bg.jpg");
INSERT INTO `wpos_postmeta` VALUES("383", "1649", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:580;s:4:\"file\";s:20:\"2015/07/video-bg.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"video-bg-150x150.jpg\";s:5:\"width\";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:\"video-bg-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"video-bg-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"video-bg-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("384", "1653", "_wp_attached_file", "2015/08/21.jpg");
INSERT INTO `wpos_postmeta` VALUES("385", "1653", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:14:\"2015/08/21.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"21-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"21-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"21-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("386", "1654", "_wp_attached_file", "2015/08/22.jpg");
INSERT INTO `wpos_postmeta` VALUES("387", "1654", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:14:\"2015/08/22.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"22-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"22-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"22-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("388", "1655", "_wp_attached_file", "2015/08/23.jpg");
INSERT INTO `wpos_postmeta` VALUES("389", "1655", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:14:\"2015/08/23.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"23-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"23-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"23-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("390", "1675", "_wp_attached_file", "2015/07/site-img6911.png");
INSERT INTO `wpos_postmeta` VALUES("391", "1675", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:225;s:6:\"height\";i:485;s:4:\"file\";s:24:\"2015/07/site-img6911.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"site-img6911-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"site-img6911-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("392", "1676", "_wp_attached_file", "2015/07/works-img1.jpg");
INSERT INTO `wpos_postmeta` VALUES("393", "1676", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:680;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/07/works-img1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img1-150x150.jpg\";s:5:\"width\";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:\"works-img1-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("394", "1677", "_wp_attached_file", "2015/07/works-img2.jpg");
INSERT INTO `wpos_postmeta` VALUES("395", "1677", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:680;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/07/works-img2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img2-150x150.jpg\";s:5:\"width\";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:\"works-img2-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("396", "1680", "_wp_attached_file", "2015/07/works-img9.jpg");
INSERT INTO `wpos_postmeta` VALUES("397", "1680", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:680;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/07/works-img9.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img9-150x150.jpg\";s:5:\"width\";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:\"works-img9-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("398", "1682", "_wp_attached_file", "2015/07/works-img6.jpg");
INSERT INTO `wpos_postmeta` VALUES("399", "1682", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:680;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/07/works-img6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img6-150x150.jpg\";s:5:\"width\";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:\"works-img6-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("400", "1683", "_wp_attached_file", "2015/07/works-img8.jpg");
INSERT INTO `wpos_postmeta` VALUES("401", "1683", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:680;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/07/works-img8.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"works-img8-150x150.jpg\";s:5:\"width\";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:\"works-img8-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("402", "1685", "_wp_attached_file", "2015/07/portfolio-img411.jpg");
INSERT INTO `wpos_postmeta` VALUES("403", "1685", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2015/07/portfolio-img411.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"portfolio-img411-150x150.jpg\";s:5:\"width\";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:\"portfolio-img411-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:28:\"portfolio-img411-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("404", "1686", "_wp_attached_file", "2015/07/portfolio-img511.jpg");
INSERT INTO `wpos_postmeta` VALUES("405", "1686", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2015/07/portfolio-img511.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"portfolio-img511-150x150.jpg\";s:5:\"width\";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:\"portfolio-img511-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:28:\"portfolio-img511-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("406", "1687", "_wp_attached_file", "2015/07/portfolio-img111.jpg");
INSERT INTO `wpos_postmeta` VALUES("407", "1687", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2015/07/portfolio-img111.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"portfolio-img111-150x150.jpg\";s:5:\"width\";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:\"portfolio-img111-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:28:\"portfolio-img111-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("408", "1707", "_wp_attached_file", "2015/08/KADOHF81P4.jpg");
INSERT INTO `wpos_postmeta` VALUES("409", "1707", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:22:\"2015/08/KADOHF81P4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"KADOHF81P4-150x150.jpg\";s:5:\"width\";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:\"KADOHF81P4-300x97.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"KADOHF81P4-768x248.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"KADOHF81P4-1024x331.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("410", "1708", "_wp_attached_file", "2015/08/XC8XH37TX9.jpg");
INSERT INTO `wpos_postmeta` VALUES("411", "1708", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:22:\"2015/08/XC8XH37TX9.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"XC8XH37TX9-150x150.jpg\";s:5:\"width\";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:\"XC8XH37TX9-300x97.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"XC8XH37TX9-768x248.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"XC8XH37TX9-1024x331.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("412", "1714", "_wp_attached_file", "2015/08/slide-cor11.jpg");
INSERT INTO `wpos_postmeta` VALUES("413", "1714", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:23:\"2015/08/slide-cor11.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"slide-cor11-150x150.jpg\";s:5:\"width\";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:\"slide-cor11-300x97.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"slide-cor11-768x248.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"slide-cor11-1024x331.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("414", "1771", "_wp_attached_file", "2015/08/entrepreneur-593378_1920.jpg");
INSERT INTO `wpos_postmeta` VALUES("415", "1771", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:738;s:4:\"file\";s:36:\"2015/08/entrepreneur-593378_1920.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"entrepreneur-593378_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"entrepreneur-593378_1920-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"entrepreneur-593378_1920-768x295.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"entrepreneur-593378_1920-1024x394.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2002", "2191", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:555;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2017/04/cPanel-logo-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cPanel-logo-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:25:\"cPanel-logo-1-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2001", "2191", "_wp_attached_file", "2017/04/cPanel-logo-1.png");
INSERT INTO `wpos_postmeta` VALUES("2000", "2190", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:620;s:6:\"height\";i:436;s:4:\"file\";s:48:\"2017/04/tumblr_inline_obubanQs6O1ut90hm_1280.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"tumblr_inline_obubanQs6O1ut90hm_1280-150x150.jpg\";s:5:\"width\";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:\"tumblr_inline_obubanQs6O1ut90hm_1280-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("1999", "2190", "_wp_attached_file", "2017/04/tumblr_inline_obubanQs6O1ut90hm_1280.jpg");
INSERT INTO `wpos_postmeta` VALUES("1998", "1189", "_king_page_breadcrumb_tag", "h1");
INSERT INTO `wpos_postmeta` VALUES("1997", "1189", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("1996", "1189", "_edit_lock", "1491391015:1");
INSERT INTO `wpos_postmeta` VALUES("1995", "517", "_edit_lock", "1491089745:1");
INSERT INTO `wpos_postmeta` VALUES("470", "1778", "_menu_item_type", "custom");
INSERT INTO `wpos_postmeta` VALUES("471", "1778", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpos_postmeta` VALUES("472", "1778", "_menu_item_object_id", "1778");
INSERT INTO `wpos_postmeta` VALUES("473", "1778", "_menu_item_object", "custom");
INSERT INTO `wpos_postmeta` VALUES("474", "1778", "_menu_item_target", "");
INSERT INTO `wpos_postmeta` VALUES("475", "1778", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpos_postmeta` VALUES("476", "1778", "_menu_item_xfn", "");
INSERT INTO `wpos_postmeta` VALUES("477", "1778", "_menu_item_url", "https://mlksolutions.org/");
INSERT INTO `wpos_postmeta` VALUES("1953", "1572", "_king_page_breadcrumb_tag", "h1");
INSERT INTO `wpos_postmeta` VALUES("1952", "1572", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("1951", "1572", "_edit_lock", "1491321876:1");
INSERT INTO `wpos_postmeta` VALUES("502", "1782", "_menu_item_type", "custom");
INSERT INTO `wpos_postmeta` VALUES("503", "1782", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpos_postmeta` VALUES("504", "1782", "_menu_item_object_id", "1782");
INSERT INTO `wpos_postmeta` VALUES("505", "1782", "_menu_item_object", "custom");
INSERT INTO `wpos_postmeta` VALUES("506", "1782", "_menu_item_target", "");
INSERT INTO `wpos_postmeta` VALUES("507", "1782", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpos_postmeta` VALUES("508", "1782", "_menu_item_xfn", "");
INSERT INTO `wpos_postmeta` VALUES("509", "1782", "_menu_item_url", "https://mlksolutions.org/blog/");
INSERT INTO `wpos_postmeta` VALUES("510", "1783", "_wp_attached_file", "2015/08/life-864367_1920.jpg");
INSERT INTO `wpos_postmeta` VALUES("511", "1783", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:737;s:4:\"file\";s:28:\"2015/08/life-864367_1920.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"life-864367_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"life-864367_1920-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"life-864367_1920-768x295.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"life-864367_1920-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("512", "1784", "_wp_attached_file", "2015/08/PLAJNHNMWK.jpg");
INSERT INTO `wpos_postmeta` VALUES("513", "1784", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:737;s:4:\"file\";s:22:\"2015/08/PLAJNHNMWK.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"PLAJNHNMWK-150x150.jpg\";s:5:\"width\";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:\"PLAJNHNMWK-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"PLAJNHNMWK-768x295.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"PLAJNHNMWK-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("514", "1785", "_wp_attached_file", "2015/07/logo-gray.png");
INSERT INTO `wpos_postmeta` VALUES("515", "1785", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:90;s:4:\"file\";s:21:\"2015/07/logo-gray.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-gray-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-gray-300x54.png\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("1942", "1571", "_king_page_breadcrumb_tag", "h1");
INSERT INTO `wpos_postmeta` VALUES("1941", "1571", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("1940", "1571", "_edit_lock", "1491702883:1");
INSERT INTO `wpos_postmeta` VALUES("1965", "996", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("1966", "996", "_king_page_breadcrumb_tag", "h1");
INSERT INTO `wpos_postmeta` VALUES("3080", "129", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3079", "129", "_edit_lock", "1491303210:1");
INSERT INTO `wpos_postmeta` VALUES("3075", "130", "_wp_old_slug", "standard");
INSERT INTO `wpos_postmeta` VALUES("1964", "996", "_edit_lock", "1491386252:1");
INSERT INTO `wpos_postmeta` VALUES("1936", "1778", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3084", "128", "_wp_old_slug", "premium");
INSERT INTO `wpos_postmeta` VALUES("3083", "128", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3081", "129", "_wp_old_slug", "business");
INSERT INTO `wpos_postmeta` VALUES("3082", "128", "_edit_lock", "1491303307:1");
INSERT INTO `wpos_postmeta` VALUES("1938", "1782", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1924", "2169", "_menu_item_url", "");
INSERT INTO `wpos_postmeta` VALUES("1923", "2169", "_menu_item_xfn", "");
INSERT INTO `wpos_postmeta` VALUES("1922", "2169", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpos_postmeta` VALUES("1921", "2169", "_menu_item_target", "");
INSERT INTO `wpos_postmeta` VALUES("1920", "2169", "_menu_item_object", "page");
INSERT INTO `wpos_postmeta` VALUES("1919", "2169", "_menu_item_object_id", "1571");
INSERT INTO `wpos_postmeta` VALUES("1918", "2169", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpos_postmeta` VALUES("1917", "2169", "_menu_item_type", "post_type");
INSERT INTO `wpos_postmeta` VALUES("1916", "2169", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("692", "67", "king_staff", "a:4:{s:8:\"position\";s:3:\"Ceo\";s:8:\"facebook\";s:4:\"alen\";s:7:\"twitter\";s:4:\"alen\";s:5:\"gplus\";s:4:\"alen\";}");
INSERT INTO `wpos_postmeta` VALUES("693", "67", "_thumbnail_id", "68");
INSERT INTO `wpos_postmeta` VALUES("694", "67", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("695", "67", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("696", "73", "king_staff", "a:4:{s:8:\"position\";s:9:\"Developer\";s:8:\"facebook\";s:5:\"karla\";s:7:\"twitter\";s:5:\"karla\";s:5:\"gplus\";s:5:\"karla\";}");
INSERT INTO `wpos_postmeta` VALUES("697", "73", "_thumbnail_id", "69");
INSERT INTO `wpos_postmeta` VALUES("698", "73", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("699", "73", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("700", "74", "king_staff", "a:4:{s:8:\"position\";s:9:\"Developer\";s:8:\"facebook\";s:5:\"india\";s:7:\"twitter\";s:5:\"india\";s:5:\"gplus\";s:5:\"india\";}");
INSERT INTO `wpos_postmeta` VALUES("701", "74", "_thumbnail_id", "75");
INSERT INTO `wpos_postmeta` VALUES("702", "74", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("703", "74", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("704", "76", "king_staff", "a:4:{s:8:\"position\";s:8:\"Designer\";s:8:\"facebook\";s:4:\"jack\";s:7:\"twitter\";s:4:\"jack\";s:5:\"gplus\";s:4:\"jack\";}");
INSERT INTO `wpos_postmeta` VALUES("705", "76", "_thumbnail_id", "70");
INSERT INTO `wpos_postmeta` VALUES("706", "76", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("707", "76", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("708", "77", "king_staff", "a:4:{s:8:\"position\";s:8:\"Designer\";s:8:\"facebook\";s:4:\"john\";s:7:\"twitter\";s:4:\"john\";s:5:\"gplus\";s:4:\"john\";}");
INSERT INTO `wpos_postmeta` VALUES("709", "77", "_thumbnail_id", "72");
INSERT INTO `wpos_postmeta` VALUES("710", "77", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("711", "77", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("712", "78", "king_staff", "a:4:{s:8:\"position\";s:18:\"Support Supervisor\";s:8:\"facebook\";s:7:\"jessica\";s:7:\"twitter\";s:7:\"jessica\";s:5:\"gplus\";s:7:\"jessica\";}");
INSERT INTO `wpos_postmeta` VALUES("713", "78", "_thumbnail_id", "71");
INSERT INTO `wpos_postmeta` VALUES("714", "78", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("715", "78", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("716", "1458", "king_staff", "a:4:{s:8:\"position\";s:16:\"Product Director\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("717", "1458", "_thumbnail_id", "1463");
INSERT INTO `wpos_postmeta` VALUES("718", "1458", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("719", "1458", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("720", "1465", "king_staff", "a:4:{s:8:\"position\";s:17:\"Software Engineer\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("721", "1465", "_thumbnail_id", "1464");
INSERT INTO `wpos_postmeta` VALUES("722", "1465", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("723", "1465", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("724", "1466", "king_staff", "a:4:{s:8:\"position\";s:16:\"Product Director\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("725", "1466", "_thumbnail_id", "1462");
INSERT INTO `wpos_postmeta` VALUES("726", "1466", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("727", "1466", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("728", "1467", "king_staff", "a:4:{s:8:\"position\";s:17:\"Software Engineer\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("729", "1467", "_thumbnail_id", "1464");
INSERT INTO `wpos_postmeta` VALUES("730", "1467", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("731", "1467", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("732", "1468", "king_staff", "a:4:{s:8:\"position\";s:14:\"Office Manager\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("733", "1468", "_thumbnail_id", "1469");
INSERT INTO `wpos_postmeta` VALUES("734", "1468", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("735", "1468", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("736", "1470", "king_staff", "a:4:{s:8:\"position\";s:22:\"Support Representative\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("737", "1470", "_thumbnail_id", "1461");
INSERT INTO `wpos_postmeta` VALUES("738", "1470", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("739", "1470", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("740", "1471", "king_staff", "a:4:{s:8:\"position\";s:18:\"Support Supervisor\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("741", "1471", "_thumbnail_id", "1460");
INSERT INTO `wpos_postmeta` VALUES("742", "1471", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("743", "1471", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("744", "1472", "king_staff", "a:4:{s:8:\"position\";s:23:\"Chief Executive Officer\";s:8:\"facebook\";s:4:\"king\";s:7:\"twitter\";s:4:\"king\";s:5:\"gplus\";s:4:\"king\";}");
INSERT INTO `wpos_postmeta` VALUES("745", "1472", "_thumbnail_id", "1459");
INSERT INTO `wpos_postmeta` VALUES("746", "1472", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("747", "1472", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("748", "1531", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("749", "1531", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("750", "1531", "king_staff", "a:5:{s:8:\"position\";s:23:\"Chief Executive Officer\";s:8:\"facebook\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:5:\"gplus\";s:0:\"\";s:5:\"_type\";s:5:\"staff\";}");
INSERT INTO `wpos_postmeta` VALUES("751", "1531", "_thumbnail_id", "1533");
INSERT INTO `wpos_postmeta` VALUES("752", "1532", "_thumbnail_id", "1535");
INSERT INTO `wpos_postmeta` VALUES("753", "1532", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("754", "1532", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("755", "1532", "king_staff", "a:5:{s:8:\"position\";s:7:\"Partner\";s:8:\"facebook\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:5:\"gplus\";s:0:\"\";s:5:\"_type\";s:5:\"staff\";}");
INSERT INTO `wpos_postmeta` VALUES("756", "25", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("757", "25", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("758", "25", "_wp_old_slug", "future-tablet-design");
INSERT INTO `wpos_postmeta` VALUES("759", "25", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("760", "25", "_thumbnail_id", "1676");
INSERT INTO `wpos_postmeta` VALUES("761", "30", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("762", "30", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("763", "30", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("764", "30", "_thumbnail_id", "1677");
INSERT INTO `wpos_postmeta` VALUES("765", "31", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("766", "31", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("767", "31", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("768", "31", "_thumbnail_id", "1685");
INSERT INTO `wpos_postmeta` VALUES("769", "32", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("770", "32", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("771", "32", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("772", "32", "_thumbnail_id", "1687");
INSERT INTO `wpos_postmeta` VALUES("831", "406", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("832", "406", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("833", "406", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("834", "406", "_thumbnail_id", "1680");
INSERT INTO `wpos_postmeta` VALUES("835", "411", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("836", "411", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("837", "411", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("838", "411", "_thumbnail_id", "1686");
INSERT INTO `wpos_postmeta` VALUES("839", "481", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("840", "481", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("841", "481", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("842", "481", "_thumbnail_id", "1682");
INSERT INTO `wpos_postmeta` VALUES("843", "577", "king_work", "a:2:{s:4:\"link\";s:0:\"\";s:5:\"_type\";s:4:\"work\";}");
INSERT INTO `wpos_postmeta` VALUES("844", "577", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("845", "577", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("846", "577", "_thumbnail_id", "1683");
INSERT INTO `wpos_postmeta` VALUES("857", "1189", "_wp_page_template", "templates/page-full.php");
INSERT INTO `wpos_postmeta` VALUES("858", "1189", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("859", "1189", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("860", "1189", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("861", "1189", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("862", "1189", "_king_page_breadcrumb", "no");
INSERT INTO `wpos_postmeta` VALUES("863", "1189", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("864", "1537", "_thumbnail_id", "1536");
INSERT INTO `wpos_postmeta` VALUES("865", "1537", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("866", "1537", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("867", "1537", "king_staff", "a:5:{s:8:\"position\";s:9:\"Developer\";s:8:\"facebook\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:5:\"gplus\";s:0:\"\";s:5:\"_type\";s:5:\"staff\";}");
INSERT INTO `wpos_postmeta` VALUES("868", "1538", "_thumbnail_id", "1534");
INSERT INTO `wpos_postmeta` VALUES("869", "1538", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("870", "1538", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("871", "1538", "king_staff", "a:5:{s:8:\"position\";s:7:\"Support\";s:8:\"facebook\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:5:\"gplus\";s:0:\"\";s:5:\"_type\";s:5:\"staff\";}");
INSERT INTO `wpos_postmeta` VALUES("901", "517", "_wp_page_template", "default");
INSERT INTO `wpos_postmeta` VALUES("902", "517", "_wpb_vc_js_status", "false");
INSERT INTO `wpos_postmeta` VALUES("903", "517", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("904", "517", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("905", "517", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("906", "517", "_king_page_breadcrumb", "global");
INSERT INTO `wpos_postmeta` VALUES("1101", "996", "_wp_page_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1102", "996", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("1103", "996", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1104", "996", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("1105", "996", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("1106", "996", "_king_page_breadcrumb", "global");
INSERT INTO `wpos_postmeta` VALUES("1107", "996", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1135", "1103", "_wp_page_template", "templates/page-right.php");
INSERT INTO `wpos_postmeta` VALUES("1136", "1103", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("1137", "1103", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1138", "1103", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("1139", "1103", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("1140", "1103", "_king_page_breadcrumb", "global");
INSERT INTO `wpos_postmeta` VALUES("1141", "1103", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1142", "1103", "_king_page_description", "test ttttt desss");
INSERT INTO `wpos_postmeta` VALUES("1708", "2098", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:546;s:4:\"file\";s:29:\"2017/03/logo-MLK_final-09.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-09-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-09-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-09-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"logo-MLK_final-09-1024x451.png\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("1707", "2098", "_wp_attached_file", "2017/03/logo-MLK_final-09.png");
INSERT INTO `wpos_postmeta` VALUES("1239", "1571", "_wp_page_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1240", "1571", "_wpb_vc_js_status", "false");
INSERT INTO `wpos_postmeta` VALUES("1241", "1571", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1242", "1571", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1243", "1571", "_king_page_breadcrumb", "page_title1 sty12");
INSERT INTO `wpos_postmeta` VALUES("1244", "1571", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("1245", "1571", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("1246", "1572", "_wp_page_template", "templates/page-full.php");
INSERT INTO `wpos_postmeta` VALUES("1247", "1572", "_wpb_vc_js_status", "false");
INSERT INTO `wpos_postmeta` VALUES("1248", "1572", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1249", "1572", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1250", "1572", "_king_page_breadcrumb", "page_title1 sty3");
INSERT INTO `wpos_postmeta` VALUES("1251", "1572", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("1252", "1572", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("1277", "128", "king_pricing", "a:9:{s:5:\"price\";s:2:\"40\";s:3:\"per\";s:1:\"A\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:3:\"€\";s:11:\"best_seller\";s:2:\"no\";s:4:\"attr\";s:482:\"<strong>250GB</strong> Espaço\r\n<strong>15</strong> Dominios Parqueados\r\n<strong>3</strong> Dominio Adicionail\r\n<strong>WebSite Builder</strong> Grátis\r\n<strong>SSL</strong> Grátis\r\n<strong>Tráfego </strong>Ilimitado\r\n<strong>Emails</strong> Ilimitados\r\n<strong>Subdominios</strong>Ilimitados\r\n<strong>Contas FTP</strong>Ilimitadas\r\n<strong>Bases de Dados</strong>Ilimitadas\r\n<strong>Softaculous</strong>+100 scripts\r\n<strong>cPanel</strong> Grátis\r\n<strong>Uptime</strong> +99%\";s:10:\"textsubmit\";s:7:\"Comprar\";s:10:\"linksubmit\";s:53:\"https://support.mlksolutions.org/cart.php?a=add&pid=2\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1278", "128", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1279", "128", "_wp_old_slug", "business");
INSERT INTO `wpos_postmeta` VALUES("1280", "128", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1281", "129", "king_pricing", "a:9:{s:5:\"price\";s:2:\"30\";s:3:\"per\";s:1:\"A\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:3:\"€\";s:11:\"best_seller\";s:3:\"yes\";s:4:\"attr\";s:481:\"<strong>100GB</strong> Espaço\r\n<strong>3</strong> Dominios Parqueados\r\n<strong>1</strong> Dominio Adicionail\r\n<strong>WebSite Builder</strong> Grátis\r\n<strong>SSL</strong> Grátis\r\n<strong>Tráfego </strong>Ilimitado\r\n<strong>Emails</strong> Ilimitados\r\n<strong>Subdominios</strong>Ilimitados\r\n<strong>Contas FTP</strong>Ilimitadas\r\n<strong>Bases de Dados</strong>Ilimitadas\r\n<strong>Softaculous</strong>+100 scripts\r\n<strong>cPanel</strong> Grátis\r\n<strong>Uptime</strong> +99%\";s:10:\"textsubmit\";s:7:\"Comprar\";s:10:\"linksubmit\";s:53:\"https://support.mlksolutions.org/cart.php?a=add&pid=1\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1282", "129", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1283", "129", "_wp_old_slug", "business-2");
INSERT INTO `wpos_postmeta` VALUES("1284", "129", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1285", "130", "king_pricing", "a:9:{s:5:\"price\";s:2:\"20\";s:3:\"per\";s:1:\"A\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:3:\"€\";s:11:\"best_seller\";s:2:\"no\";s:4:\"attr\";s:401:\"<strong>50GB</strong> Espaço\r\n<strong>WebSite Builder</strong> Grátis\r\n<strong>SSL</strong> Grátis\r\n<strong>Tráfego </strong>Ilimitado\r\n<strong>Emails</strong> Ilimitados\r\n<strong>Subdominios</strong>Ilimitados\r\n<strong>Contas FTP</strong>Ilimitadas\r\n<strong>Bases de Dados</strong>Ilimitadas\r\n<strong>Softaculous</strong>+100 scripts\r\n<strong>cPanel</strong> Grátis\r\n<strong>Uptime</strong> +99%\";s:10:\"textsubmit\";s:7:\"Comprar\";s:10:\"linksubmit\";s:53:\"https://support.mlksolutions.org/cart.php?a=add&pid=8\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1286", "130", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1287", "130", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1288", "1628", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1289", "1628", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1290", "1628", "king_pricing", "a:9:{s:5:\"price\";s:5:\"45.99\";s:3:\"per\";s:5:\"month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:11:\"best_seller\";s:2:\"no\";s:4:\"attr\";s:218:\"<strong>50 GB</strong> Storage \n<strong>1 FREE</strong> Domain Name \n<strong>100</strong> Mailboxes \n<strong>5</strong> One-Click Apps \n<strong>25</strong> Databases \n24/7 Support \n<strong>Money back</strong> Guarantee\";s:10:\"textsubmit\";s:11:\"Choose Plan\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1291", "1629", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1292", "1629", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1293", "1629", "king_pricing", "a:9:{s:5:\"price\";s:4:\"9.99\";s:3:\"per\";s:5:\"month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:11:\"best_seller\";s:3:\"yes\";s:4:\"attr\";s:218:\"<strong>50 GB</strong> Storage \n<strong>1 FREE</strong> Domain Name \n<strong>100</strong> Mailboxes \n<strong>5</strong> One-Click Apps \n<strong>25</strong> Databases \n24/7 Support \n<strong>Money back</strong> Guarantee\";s:10:\"textsubmit\";s:11:\"Choose Plan\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1294", "1630", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1295", "1630", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1296", "1630", "king_pricing", "a:9:{s:5:\"price\";s:4:\"4.99\";s:3:\"per\";s:5:\"month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:11:\"best_seller\";s:2:\"no\";s:4:\"attr\";s:218:\"<strong>50 GB</strong> Storage \n<strong>1 FREE</strong> Domain Name \n<strong>100</strong> Mailboxes \n<strong>5</strong> One-Click Apps \n<strong>25</strong> Databases \n24/7 Support \n<strong>Money back</strong> Guarantee\";s:10:\"textsubmit\";s:11:\"Choose Plan\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1297", "1631", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1298", "1631", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1299", "1631", "king_pricing", "a:9:{s:5:\"price\";s:1:\"0\";s:3:\"per\";s:3:\"ano\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:3:\"€\";s:11:\"best_seller\";s:3:\"yes\";s:4:\"attr\";s:402:\"<strong>100GB</strong> Espaço\r\n<strong>WebSite Builder</strong> Grátis\r\n<strong>SSL</strong> Grátis\r\n<strong>Tráfego </strong>Ilimitado\r\n<strong>Emails</strong> Ilimitados\r\n<strong>Subdominios</strong>Ilimitados\r\n<strong>Contas FTP</strong>Ilimitadas\r\n<strong>Bases de Dados</strong>Ilimitadas\r\n<strong>Softaculous</strong>+100 scripts\r\n<strong>cPanel</strong> Grátis\r\n<strong>Uptime</strong> +99%\";s:10:\"textsubmit\";s:7:\"GRÁTIS\";s:10:\"linksubmit\";s:0:\"\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1300", "1633", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1301", "1633", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1302", "1633", "king_pricing", "a:8:{s:5:\"price\";s:5:\"60.99\";s:3:\"per\";s:9:\"per month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:4:\"attr\";s:127:\"Unlimited Bandwidth \nUnlimited Space \nMore Databases \nFree Ad Credits \n10 Free Domain \n24/7 Unlimited Support \nUnlimited Emails\";s:10:\"textsubmit\";s:9:\"Order Now\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1303", "1634", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1304", "1634", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1305", "1634", "king_pricing", "a:8:{s:5:\"price\";s:6:\"18.99 \";s:3:\"per\";s:9:\"per month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:4:\"attr\";s:127:\"Unlimited Bandwidth \nUnlimited Space \nMore Databases \nFree Ad Credits \n10 Free Domain \n24/7 Unlimited Support \nUnlimited Emails\";s:10:\"textsubmit\";s:9:\"Order Now\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1306", "1635", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1307", "1635", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1308", "1635", "king_pricing", "a:9:{s:5:\"price\";s:5:\"9.99 \";s:3:\"per\";s:9:\"per month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:11:\"best_seller\";s:3:\"yes\";s:4:\"attr\";s:127:\"Unlimited Bandwidth \nUnlimited Space \nMore Databases \nFree Ad Credits \n10 Free Domain \n24/7 Unlimited Support \nUnlimited Emails\";s:10:\"textsubmit\";s:9:\"Order Now\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1309", "1636", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1310", "1636", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1311", "1636", "king_pricing", "a:8:{s:5:\"price\";s:4:\"3.99\";s:3:\"per\";s:9:\"per month\";s:15:\"regularly_price\";s:0:\"\";s:8:\"currency\";s:1:\"$\";s:4:\"attr\";s:127:\"Unlimited Bandwidth \nUnlimited Space \nMore Databases \nFree Ad Credits \n10 Free Domain \n24/7 Unlimited Support \nUnlimited Emails\";s:10:\"textsubmit\";s:9:\"Order Now\";s:10:\"linksubmit\";s:1:\"#\";s:5:\"_type\";s:7:\"pricing\";}");
INSERT INTO `wpos_postmeta` VALUES("1316", "4", "_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>");
INSERT INTO `wpos_postmeta` VALUES("1317", "4", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:27:\"[your-name] <wordpress@dev>\";s:4:\"body\";s:168:\"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 Aaika Theme (http://arkahost.com)\";s:9:\"recipient\";s:11:\"abc@abc.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("1318", "4", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:27:\"Aaika Theme <wordpress@dev>\";s:4:\"body\";s:110:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Aaika Theme (http://arkahost.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:21:\"Reply-To: abc@abc.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("1319", "4", "_messages", "a:8:{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.\";}");
INSERT INTO `wpos_postmeta` VALUES("1320", "4", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("1321", "21", "_form", "<div class=\"cforms\">	\n	\n	<div class=\"one_half\">\n	    <label class=\"label\">Name <em>*</em></label><label class=\"input\">[text* name]</label>\n	</div>\n	\n	<div class=\"one_half last\">\n	    <label class=\"label\">E-mail <em>*</em></label><label class=\"input\">[email* email]</label>\n	</div>\n	\n	<div class=\"clearfix\"></div>\n	\n	<div class=\"one_half\">\n	    <label class=\"label\">Phone</label><label class=\"input\">[text phone]</label>\n	</div>\n	        		\n	<div class=\"one_half last\">\n	<label class=\"label\">Subject <em>*</em></label><label class=\"input\">[text* subject]</label>\n	</div>\n	\n	<div class=\"clearfix\"></div>\n	\n	<label class=\"label\">Message <em>*</em></label>\n	<label class=\"textarea\">[textarea* message x4]</label>\n	\n	<div class=\"clearfix\"></div>\n	[submit class:button \"Send Message\"]\n	\n</div>");
INSERT INTO `wpos_postmeta` VALUES("1322", "21", "_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.\";}");
INSERT INTO `wpos_postmeta` VALUES("1323", "21", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("1324", "21", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1325", "998", "_form", "<div class=\"cforms\">\n	<label class=\"label\">Nome <em>*</em></label><label class=\"input\">[text* your-name]</label><div class=\"clearfix\"></div>\n	<label class=\"label\">E-mail <em>*</em></label><label class=\"input\">[email* your-email]</label><div class=\"clearfix\"></div>\n	<label class=\"label\">Assunto <em>*</em></label><label class=\"input\">[text your-subject]</label><div class=\"clearfix\"></div>\n	<label class=\"label\">Mensagem <em>*</em></label><label class=\"textarea\">[textarea your-message 40x5]</label><div class=\"clearfix\"></div>\n	[submit class:button \"Enviar Mensagem\"]        \n</div>");
INSERT INTO `wpos_postmeta` VALUES("1326", "998", "_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.\";}");
INSERT INTO `wpos_postmeta` VALUES("1327", "998", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("1328", "998", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1329", "998", "_mail", "a:8:{s:9:\"recipient\";s:9:\"ar@mlk.pt\";s:7:\"subject\";s:11:\"Website MLK\";s:6:\"sender\";s:21:\"site@mlksolutions.org\";s:4:\"body\";s:27:\"[your-email]\n[your-message]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("1330", "998", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2015", "2197", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:546;s:4:\"file\";s:29:\"2017/04/logo-MLK_final-09.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-09-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-09-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-09-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"logo-MLK_final-09-1024x451.png\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2014", "2197", "_wp_attached_file", "2017/04/logo-MLK_final-09.png");
INSERT INTO `wpos_postmeta` VALUES("2013", "2098", "_edit_lock", "1491095101:1");
INSERT INTO `wpos_postmeta` VALUES("2012", "2195", "_wp_attachment_is_custom_header", "arkahost");
INSERT INTO `wpos_postmeta` VALUES("2011", "2195", "_wp_attachment_custom_header_last_used_arkahost", "1491095059");
INSERT INTO `wpos_postmeta` VALUES("2010", "2195", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:603;s:4:\"file\";s:29:\"2017/04/logo-MLK_final-06.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-06-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"logo-MLK_final-06-768x373.png\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"logo-MLK_final-06-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2009", "2195", "_wp_attached_file", "2017/04/logo-MLK_final-06.png");
INSERT INTO `wpos_postmeta` VALUES("2008", "2194", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:562;s:6:\"height\";i:400;s:4:\"file\";s:25:\"2017/04/softaculous-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"softaculous-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:25:\"softaculous-1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2007", "2194", "_wp_attached_file", "2017/04/softaculous-1.png");
INSERT INTO `wpos_postmeta` VALUES("2006", "2193", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:434;s:6:\"height\";i:169;s:4:\"file\";s:23:\"2017/04/softaculous.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"softaculous-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"softaculous-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2005", "2193", "_wp_attached_file", "2017/04/softaculous.png");
INSERT INTO `wpos_postmeta` VALUES("2004", "2192", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:502;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2017/04/solutions-server.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"solutions-server-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:28:\"solutions-server-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2003", "2192", "_wp_attached_file", "2017/04/solutions-server.png");
INSERT INTO `wpos_postmeta` VALUES("3073", "130", "_edit_lock", "1491423159:1");
INSERT INTO `wpos_postmeta` VALUES("1718", "2103", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("1719", "2103", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("1720", "2103", "_edit_lock", "1491318733:1");
INSERT INTO `wpos_postmeta` VALUES("1721", "2103", "_wp_page_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1722", "2103", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("1723", "2103", "_wpb_vc_js_status", "false");
INSERT INTO `wpos_postmeta` VALUES("1724", "2103", "_king_page_logo", "%SITE_URI%/wp-content/uploads/2017/03/logo-MLK_final-09.png");
INSERT INTO `wpos_postmeta` VALUES("1725", "2103", "_king_page_breadcrumb", "global");
INSERT INTO `wpos_postmeta` VALUES("1726", "2103", "_king_page_breadcrumb_tag", "h1");
INSERT INTO `wpos_postmeta` VALUES("1727", "2103", "_king_page_header", "default");
INSERT INTO `wpos_postmeta` VALUES("1728", "2103", "_king_page_footer", "default");
INSERT INTO `wpos_postmeta` VALUES("1731", "2098", "_wp_attachment_custom_header_last_used_arkahost", "1491042817");
INSERT INTO `wpos_postmeta` VALUES("1732", "2098", "_wp_attachment_is_custom_header", "arkahost");
INSERT INTO `wpos_postmeta` VALUES("2016", "2197", "_edit_lock", "1491095144:1");
INSERT INTO `wpos_postmeta` VALUES("2017", "2198", "_wp_attached_file", "2017/04/logo-MLK_final-09-1.png");
INSERT INTO `wpos_postmeta` VALUES("2018", "2198", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:546;s:4:\"file\";s:31:\"2017/04/logo-MLK_final-09-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"logo-MLK_final-09-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:31:\"logo-MLK_final-09-1-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"logo-MLK_final-09-1-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"logo-MLK_final-09-1-1024x451.png\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2019", "2199", "_wp_attached_file", "2017/04/cutmypic.png");
INSERT INTO `wpos_postmeta` VALUES("2020", "2199", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:244;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2017/04/cutmypic.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cutmypic-150x72.png\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2025", "2202", "_wp_attached_file", "2017/04/MLK-CARE-01.png");
INSERT INTO `wpos_postmeta` VALUES("2026", "2202", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:553;s:4:\"file\";s:23:\"2017/04/MLK-CARE-01.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-01-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-01-768x343.png\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MLK-CARE-01-1024x457.png\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2027", "2203", "_wp_attached_file", "2017/04/MLK-CARE-02.png");
INSERT INTO `wpos_postmeta` VALUES("2028", "2203", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:553;s:4:\"file\";s:23:\"2017/04/MLK-CARE-02.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-02-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-02-768x343.png\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MLK-CARE-02-1024x457.png\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2029", "2204", "_wp_attached_file", "2017/04/MLK-CARE-03.png");
INSERT INTO `wpos_postmeta` VALUES("2030", "2204", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:553;s:4:\"file\";s:23:\"2017/04/MLK-CARE-03.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-03-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MLK-CARE-03-768x343.png\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MLK-CARE-03-1024x457.png\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("2216", "6458", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2217", "6458", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2218", "6458", "eg-clients-icon-dark", "");
INSERT INTO `wpos_postmeta` VALUES("2219", "6458", "eg-clients-icon", "");
INSERT INTO `wpos_postmeta` VALUES("2220", "6458", "eg-demogrid-link", "");
INSERT INTO `wpos_postmeta` VALUES("2221", "6458", "eg-pricetable-buy-url", "");
INSERT INTO `wpos_postmeta` VALUES("2222", "6458", "eg-pricetable-line4", "");
INSERT INTO `wpos_postmeta` VALUES("2223", "6458", "eg-pricetable-line3", "");
INSERT INTO `wpos_postmeta` VALUES("2224", "6458", "eg-pricetable-line2", "");
INSERT INTO `wpos_postmeta` VALUES("2225", "6458", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("2226", "6458", "eg_sources_html5_mp4", "");
INSERT INTO `wpos_postmeta` VALUES("2227", "6458", "eg_sources_html5_ogv", "");
INSERT INTO `wpos_postmeta` VALUES("2228", "6458", "eg_sources_html5_webm", "");
INSERT INTO `wpos_postmeta` VALUES("2229", "6458", "eg_sources_youtube", "");
INSERT INTO `wpos_postmeta` VALUES("2230", "6458", "eg_sources_vimeo", "");
INSERT INTO `wpos_postmeta` VALUES("2231", "6458", "eg_sources_wistia", "");
INSERT INTO `wpos_postmeta` VALUES("2232", "6458", "eg_sources_image", "");
INSERT INTO `wpos_postmeta` VALUES("2233", "6458", "eg_sources_iframe", "");
INSERT INTO `wpos_postmeta` VALUES("2234", "6458", "eg_sources_soundcloud", "");
INSERT INTO `wpos_postmeta` VALUES("2235", "6458", "eg_vimeo_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2236", "6458", "eg_youtube_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2237", "6458", "eg_wistia_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2238", "6458", "eg_html5_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2239", "6458", "eg_soundcloud_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2240", "6458", "eg_settings_custom_meta_skin", "");
INSERT INTO `wpos_postmeta` VALUES("2241", "6458", "eg_settings_custom_meta_element", "");
INSERT INTO `wpos_postmeta` VALUES("2242", "6458", "eg_settings_custom_meta_setting", "");
INSERT INTO `wpos_postmeta` VALUES("2243", "6458", "eg_settings_custom_meta_style", "");
INSERT INTO `wpos_postmeta` VALUES("2244", "6458", "eg_sources_revslider", "");
INSERT INTO `wpos_postmeta` VALUES("2245", "6458", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("2246", "6458", "_page_option_meta", "a:1:{s:27:\"easyweb_webnus_page_options\";a:1:{i:0;a:8:{s:33:\"easyweb_webnus_transparent_header\";s:4:\"none\";s:19:\"show_page_title_bar\";s:4:\"show\";s:16:\"sidebar_position\";s:4:\"none\";s:12:\"bg_image_100\";s:2:\"no\";s:15:\"bg_image_repeat\";s:1:\"1\";s:26:\"easyweb_webnus_topbar_show\";s:4:\"true\";s:26:\"easyweb_webnus_header_show\";s:4:\"true\";s:26:\"easyweb_webnus_footer_show\";s:4:\"true\";}}}");
INSERT INTO `wpos_postmeta` VALUES("2247", "6458", "restrict_roles", "");
INSERT INTO `wpos_postmeta` VALUES("2248", "6458", "_is_mega_menu", "a:1:{s:12:\"is_mega_menu\";s:3:\"yes\";}");
INSERT INTO `wpos_postmeta` VALUES("2249", "6458", "_userpro_edit_restrict", "none");
INSERT INTO `wpos_postmeta` VALUES("2250", "6458", "eg-pricetable-line1", "");
INSERT INTO `wpos_postmeta` VALUES("2251", "6458", "eg-pricetable-price", "");
INSERT INTO `wpos_postmeta` VALUES("2252", "6458", "easyweb_page_title_bar_meta", "1");
INSERT INTO `wpos_postmeta` VALUES("2253", "6458", "easyweb_hide_header_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2254", "6458", "easyweb_topbar_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2255", "6458", "easyweb_header_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2256", "6458", "easyweb_footer_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2257", "6458", "easyweb_body_bg_image_100_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2258", "6458", "easyweb_onepage_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2259", "6458", "easyweb_mega_menu_meta", "1");
INSERT INTO `wpos_postmeta` VALUES("2260", "6458", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("2261", "6458", "_et_pb_use_builder", "");
INSERT INTO `wpos_postmeta` VALUES("2262", "6458", "_et_pb_ab_bounce_rate_limit", "5");
INSERT INTO `wpos_postmeta` VALUES("2263", "6458", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpos_postmeta` VALUES("2264", "6458", "_et_pb_old_content", "");
INSERT INTO `wpos_postmeta` VALUES("2265", "6458", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpos_postmeta` VALUES("2266", "6458", "_et_pb_custom_css", "");
INSERT INTO `wpos_postmeta` VALUES("2267", "6458", "_et_pb_light_text_color", "#FFFFFF");
INSERT INTO `wpos_postmeta` VALUES("2268", "6458", "_et_pb_dark_text_color", "#666666");
INSERT INTO `wpos_postmeta` VALUES("2269", "6458", "_et_pb_content_area_background_color", "");
INSERT INTO `wpos_postmeta` VALUES("2270", "6458", "_et_pb_section_background_color", "#FFFFFF");
INSERT INTO `wpos_postmeta` VALUES("2271", "6458", "the_grid_item_custom_link_target", "_self");
INSERT INTO `wpos_postmeta` VALUES("2272", "6458", "the_grid_item_col", "1");
INSERT INTO `wpos_postmeta` VALUES("2273", "6458", "the_grid_item_row", "1");
INSERT INTO `wpos_postmeta` VALUES("2274", "6458", "the_grid_item_content_color", "dark");
INSERT INTO `wpos_postmeta` VALUES("2275", "6458", "the_grid_item_overlay_color", "light");
INSERT INTO `wpos_postmeta` VALUES("2276", "6458", "the_grid_item_video_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2277", "6458", "the_grid_item_youtube_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2278", "6458", "the_grid_item_vimeo_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2279", "6458", "the_grid_item_wistia_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2280", "6478", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2281", "6478", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2282", "6478", "eg-pricetable-price", "");
INSERT INTO `wpos_postmeta` VALUES("2283", "6478", "eg-pricetable-line1", "");
INSERT INTO `wpos_postmeta` VALUES("2284", "6478", "eg-pricetable-line2", "");
INSERT INTO `wpos_postmeta` VALUES("2285", "6478", "eg-pricetable-line3", "");
INSERT INTO `wpos_postmeta` VALUES("2286", "6478", "eg-pricetable-line4", "");
INSERT INTO `wpos_postmeta` VALUES("2287", "6478", "eg-pricetable-buy-url", "");
INSERT INTO `wpos_postmeta` VALUES("2288", "6478", "eg-demogrid-link", "");
INSERT INTO `wpos_postmeta` VALUES("2289", "6478", "eg-clients-icon", "");
INSERT INTO `wpos_postmeta` VALUES("2290", "6478", "eg-clients-icon-dark", "");
INSERT INTO `wpos_postmeta` VALUES("2291", "6478", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("2292", "6478", "eg_sources_html5_mp4", "");
INSERT INTO `wpos_postmeta` VALUES("2293", "6478", "eg_sources_html5_ogv", "");
INSERT INTO `wpos_postmeta` VALUES("2294", "6478", "eg_sources_html5_webm", "");
INSERT INTO `wpos_postmeta` VALUES("2295", "6478", "eg_sources_youtube", "");
INSERT INTO `wpos_postmeta` VALUES("2296", "6478", "eg_sources_vimeo", "");
INSERT INTO `wpos_postmeta` VALUES("2297", "6478", "eg_sources_wistia", "");
INSERT INTO `wpos_postmeta` VALUES("2298", "6478", "eg_sources_image", "");
INSERT INTO `wpos_postmeta` VALUES("2299", "6478", "eg_sources_iframe", "");
INSERT INTO `wpos_postmeta` VALUES("2300", "6478", "eg_sources_soundcloud", "");
INSERT INTO `wpos_postmeta` VALUES("2301", "6478", "eg_vimeo_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2302", "6478", "eg_youtube_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2303", "6478", "eg_wistia_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2304", "6478", "eg_html5_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2305", "6478", "eg_soundcloud_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2306", "6478", "eg_settings_custom_meta_skin", "");
INSERT INTO `wpos_postmeta` VALUES("2307", "6478", "eg_settings_custom_meta_element", "");
INSERT INTO `wpos_postmeta` VALUES("2308", "6478", "eg_settings_custom_meta_setting", "");
INSERT INTO `wpos_postmeta` VALUES("2309", "6478", "eg_settings_custom_meta_style", "");
INSERT INTO `wpos_postmeta` VALUES("2310", "6478", "eg_sources_revslider", "");
INSERT INTO `wpos_postmeta` VALUES("2311", "6478", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("2312", "6478", "_page_option_meta", "a:1:{s:27:\"easyweb_webnus_page_options\";a:1:{i:0;a:8:{s:33:\"easyweb_webnus_transparent_header\";s:4:\"none\";s:19:\"show_page_title_bar\";s:4:\"show\";s:16:\"sidebar_position\";s:4:\"none\";s:12:\"bg_image_100\";s:2:\"no\";s:15:\"bg_image_repeat\";s:1:\"1\";s:26:\"easyweb_webnus_topbar_show\";s:4:\"true\";s:26:\"easyweb_webnus_header_show\";s:4:\"true\";s:26:\"easyweb_webnus_footer_show\";s:4:\"true\";}}}");
INSERT INTO `wpos_postmeta` VALUES("2313", "6478", "_is_mega_menu", "a:1:{s:12:\"is_mega_menu\";s:3:\"yes\";}");
INSERT INTO `wpos_postmeta` VALUES("2314", "6478", "_userpro_edit_restrict", "none");
INSERT INTO `wpos_postmeta` VALUES("2315", "6478", "restrict_roles", "");
INSERT INTO `wpos_postmeta` VALUES("2316", "6478", "easyweb_page_title_bar_meta", "1");
INSERT INTO `wpos_postmeta` VALUES("2317", "6478", "easyweb_hide_header_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2318", "6478", "easyweb_topbar_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2319", "6478", "easyweb_header_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2320", "6478", "easyweb_footer_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2321", "6478", "easyweb_body_bg_image_100_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2322", "6478", "easyweb_onepage_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2323", "6478", "easyweb_mega_menu_meta", "1");
INSERT INTO `wpos_postmeta` VALUES("2324", "6478", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("2325", "6478", "_et_pb_use_builder", "");
INSERT INTO `wpos_postmeta` VALUES("2326", "6478", "_et_pb_ab_bounce_rate_limit", "5");
INSERT INTO `wpos_postmeta` VALUES("2327", "6478", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpos_postmeta` VALUES("2328", "6478", "_et_pb_old_content", "");
INSERT INTO `wpos_postmeta` VALUES("2329", "6478", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpos_postmeta` VALUES("2330", "6478", "_et_pb_custom_css", "");
INSERT INTO `wpos_postmeta` VALUES("2331", "6478", "_et_pb_light_text_color", "#FFFFFF");
INSERT INTO `wpos_postmeta` VALUES("2332", "6478", "_et_pb_dark_text_color", "#666666");
INSERT INTO `wpos_postmeta` VALUES("2333", "6478", "_et_pb_content_area_background_color", "");
INSERT INTO `wpos_postmeta` VALUES("2334", "6478", "_et_pb_section_background_color", "#FFFFFF");
INSERT INTO `wpos_postmeta` VALUES("2335", "6478", "the_grid_item_custom_link_target", "_self");
INSERT INTO `wpos_postmeta` VALUES("2336", "6478", "the_grid_item_col", "1");
INSERT INTO `wpos_postmeta` VALUES("2337", "6478", "the_grid_item_row", "1");
INSERT INTO `wpos_postmeta` VALUES("2338", "6478", "the_grid_item_content_color", "dark");
INSERT INTO `wpos_postmeta` VALUES("2339", "6478", "the_grid_item_overlay_color", "light");
INSERT INTO `wpos_postmeta` VALUES("2340", "6478", "the_grid_item_video_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2341", "6478", "the_grid_item_youtube_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2342", "6478", "the_grid_item_vimeo_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2343", "6478", "the_grid_item_wistia_ratio", "4:3");
INSERT INTO `wpos_postmeta` VALUES("2344", "6508", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2345", "6508", "_wpb_shortcodes_custom_css", ".vc_custom_1462618775841{border-radius: 1px !important;}");
INSERT INTO `wpos_postmeta` VALUES("2346", "6508", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2347", "6508", "_wpb_shortcodes_custom_css", ".vc_custom_1462618775841{border-radius: 1px !important;}");
INSERT INTO `wpos_postmeta` VALUES("2348", "6508", "eg-clients-icon", "");
INSERT INTO `wpos_postmeta` VALUES("2349", "6508", "eg-clients-icon-dark", "");
INSERT INTO `wpos_postmeta` VALUES("2350", "6508", "eg-demogrid-link", "");
INSERT INTO `wpos_postmeta` VALUES("2351", "6508", "eg-pricetable-line4", "");
INSERT INTO `wpos_postmeta` VALUES("2352", "6508", "eg-pricetable-buy-url", "");
INSERT INTO `wpos_postmeta` VALUES("2353", "6508", "eg-pricetable-line3", "");
INSERT INTO `wpos_postmeta` VALUES("2354", "6508", "eg-pricetable-line2", "");
INSERT INTO `wpos_postmeta` VALUES("2355", "6508", "eg-pricetable-line1", "");
INSERT INTO `wpos_postmeta` VALUES("2356", "6508", "eg-pricetable-price", "");
INSERT INTO `wpos_postmeta` VALUES("2357", "6508", "_userpro_edit_restrict", "none");
INSERT INTO `wpos_postmeta` VALUES("2358", "6508", "eg_sources_youtube", "");
INSERT INTO `wpos_postmeta` VALUES("2359", "6508", "eg_sources_html5_webm", "");
INSERT INTO `wpos_postmeta` VALUES("2360", "6508", "eg_sources_html5_ogv", "");
INSERT INTO `wpos_postmeta` VALUES("2361", "6508", "eg_sources_html5_mp4", "");
INSERT INTO `wpos_postmeta` VALUES("2362", "6508", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("2363", "6508", "eg_settings_custom_meta_style", "");
INSERT INTO `wpos_postmeta` VALUES("2364", "6508", "eg_sources_revslider", "");
INSERT INTO `wpos_postmeta` VALUES("2365", "6508", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("2366", "6508", "_page_option_meta", "a:1:{s:27:\"easyweb_webnus_page_options\";a:1:{i:0;a:8:{s:33:\"easyweb_webnus_transparent_header\";s:4:\"none\";s:19:\"show_page_title_bar\";s:4:\"show\";s:16:\"sidebar_position\";s:4:\"none\";s:12:\"bg_image_100\";s:2:\"no\";s:15:\"bg_image_repeat\";s:1:\"1\";s:26:\"easyweb_webnus_topbar_show\";s:4:\"true\";s:26:\"easyweb_webnus_header_show\";s:4:\"true\";s:26:\"easyweb_webnus_footer_show\";s:4:\"true\";}}}");
INSERT INTO `wpos_postmeta` VALUES("2367", "6508", "eg_sources_vimeo", "");
INSERT INTO `wpos_postmeta` VALUES("2368", "6508", "eg_sources_wistia", "");
INSERT INTO `wpos_postmeta` VALUES("2369", "6508", "eg_sources_image", "");
INSERT INTO `wpos_postmeta` VALUES("2370", "6508", "eg_sources_iframe", "");
INSERT INTO `wpos_postmeta` VALUES("2371", "6508", "eg_sources_soundcloud", "");
INSERT INTO `wpos_postmeta` VALUES("2372", "6508", "eg_vimeo_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2373", "6508", "eg_youtube_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2374", "6508", "eg_wistia_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2375", "6508", "eg_html5_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2376", "6508", "eg_soundcloud_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2377", "6508", "eg_settings_custom_meta_skin", "");
INSERT INTO `wpos_postmeta` VALUES("2378", "6508", "eg_settings_custom_meta_element", "");
INSERT INTO `wpos_postmeta` VALUES("2379", "6508", "eg_settings_custom_meta_setting", "");
INSERT INTO `wpos_postmeta` VALUES("2380", "6508", "_is_mega_menu", "a:1:{s:12:\"is_mega_menu\";s:3:\"yes\";}");
INSERT INTO `wpos_postmeta` VALUES("2381", "6508", "restrict_roles", "");
INSERT INTO `wpos_postmeta` VALUES("2382", "6508", "_aioseop_opengraph_settings", "a:12:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:8:\"activity\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:7:\"summary\";}");
INSERT INTO `wpos_postmeta` VALUES("2383", "6508", "easyweb_page_title_bar_meta", "1");
INSERT INTO `wpos_postmeta` VALUES("2384", "6508", "easyweb_hide_header_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2385", "6508", "easyweb_topbar_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2386", "6508", "easyweb_header_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2387", "6508", "easyweb_footer_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2388", "6508", "easyweb_body_bg_image_100_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2389", "6508", "easyweb_onepage_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2390", "6508", "easyweb_mega_menu_meta", "1");
INSERT INTO `wpos_postmeta` VALUES("2508", "8833", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2509", "8833", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2510", "8833", "eg_sources_youtube", "");
INSERT INTO `wpos_postmeta` VALUES("2511", "8833", "_userpro_edit_restrict", "none");
INSERT INTO `wpos_postmeta` VALUES("2512", "8833", "eg_sources_html5_ogv", "");
INSERT INTO `wpos_postmeta` VALUES("2513", "8833", "eg_sources_html5_webm", "");
INSERT INTO `wpos_postmeta` VALUES("2514", "8833", "eg_sources_vimeo", "");
INSERT INTO `wpos_postmeta` VALUES("2515", "8833", "eg_sources_wistia", "");
INSERT INTO `wpos_postmeta` VALUES("2516", "8833", "eg_sources_image", "");
INSERT INTO `wpos_postmeta` VALUES("2517", "8833", "eg_sources_iframe", "");
INSERT INTO `wpos_postmeta` VALUES("2518", "8833", "eg_sources_soundcloud", "");
INSERT INTO `wpos_postmeta` VALUES("2519", "8833", "eg_vimeo_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2520", "8833", "eg_youtube_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2521", "8833", "eg_sources_html5_mp4", "");
INSERT INTO `wpos_postmeta` VALUES("2522", "8833", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("2523", "8833", "eg_settings_custom_meta_element", "");
INSERT INTO `wpos_postmeta` VALUES("2524", "8833", "eg_soundcloud_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2525", "8833", "eg_settings_custom_meta_skin", "");
INSERT INTO `wpos_postmeta` VALUES("2526", "8833", "eg_html5_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2527", "8833", "eg_wistia_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2528", "8833", "eg_settings_custom_meta_setting", "");
INSERT INTO `wpos_postmeta` VALUES("2529", "8833", "eg_settings_custom_meta_style", "");
INSERT INTO `wpos_postmeta` VALUES("2530", "8833", "eg_sources_revslider", "");
INSERT INTO `wpos_postmeta` VALUES("2531", "8833", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("2532", "8833", "_page_option_meta", "a:1:{s:27:\"easyweb_webnus_page_options\";a:1:{i:0;a:8:{s:33:\"easyweb_webnus_transparent_header\";s:4:\"none\";s:19:\"show_page_title_bar\";s:4:\"hide\";s:16:\"sidebar_position\";s:4:\"none\";s:12:\"bg_image_100\";s:2:\"no\";s:15:\"bg_image_repeat\";s:1:\"1\";s:26:\"easyweb_webnus_topbar_show\";s:4:\"true\";s:26:\"easyweb_webnus_header_show\";s:4:\"true\";s:26:\"easyweb_webnus_footer_show\";s:4:\"true\";}}}");
INSERT INTO `wpos_postmeta` VALUES("2533", "8833", "restrict_roles", "");
INSERT INTO `wpos_postmeta` VALUES("2534", "8833", "eg-pricetable-price", "");
INSERT INTO `wpos_postmeta` VALUES("2535", "8833", "eg-pricetable-line1", "");
INSERT INTO `wpos_postmeta` VALUES("2536", "8833", "eg-pricetable-line2", "");
INSERT INTO `wpos_postmeta` VALUES("2537", "8833", "eg-pricetable-line3", "");
INSERT INTO `wpos_postmeta` VALUES("2538", "8833", "eg-pricetable-line4", "");
INSERT INTO `wpos_postmeta` VALUES("2539", "8833", "eg-pricetable-buy-url", "");
INSERT INTO `wpos_postmeta` VALUES("2540", "8833", "eg-demogrid-link", "");
INSERT INTO `wpos_postmeta` VALUES("2541", "8833", "eg-clients-icon", "");
INSERT INTO `wpos_postmeta` VALUES("2542", "8833", "eg-clients-icon-dark", "");
INSERT INTO `wpos_postmeta` VALUES("2543", "8833", "easyweb_page_title_bar_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2544", "8833", "easyweb_hide_header_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2545", "8833", "easyweb_topbar_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2546", "8833", "easyweb_header_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2547", "8833", "easyweb_footer_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2548", "8833", "easyweb_body_bg_image_100_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2549", "8833", "easyweb_onepage_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2550", "8833", "easyweb_mega_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2551", "8856", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2552", "8856", "_wpb_shortcodes_custom_css", ".vc_custom_1454937572705{padding-top: 13px !important;}.vc_custom_1451809419824{margin-bottom: 4px !important;}");
INSERT INTO `wpos_postmeta` VALUES("2553", "8856", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2554", "8856", "_wpb_shortcodes_custom_css", ".vc_custom_1454937572705{padding-top: 13px !important;}.vc_custom_1451809419824{margin-bottom: 4px !important;}");
INSERT INTO `wpos_postmeta` VALUES("2555", "8856", "eg_sources_html5_mp4", "");
INSERT INTO `wpos_postmeta` VALUES("2556", "8856", "eg_sources_html5_ogv", "");
INSERT INTO `wpos_postmeta` VALUES("2557", "8856", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("2558", "8856", "eg_sources_html5_webm", "");
INSERT INTO `wpos_postmeta` VALUES("2559", "8856", "eg_sources_youtube", "");
INSERT INTO `wpos_postmeta` VALUES("2560", "8856", "eg_sources_vimeo", "");
INSERT INTO `wpos_postmeta` VALUES("2561", "8856", "eg_sources_wistia", "");
INSERT INTO `wpos_postmeta` VALUES("2562", "8856", "eg_sources_image", "");
INSERT INTO `wpos_postmeta` VALUES("2563", "8856", "eg_sources_iframe", "");
INSERT INTO `wpos_postmeta` VALUES("2564", "8856", "eg_sources_soundcloud", "");
INSERT INTO `wpos_postmeta` VALUES("2565", "8856", "eg_vimeo_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2566", "8856", "eg_youtube_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2567", "8856", "eg_wistia_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2568", "8856", "eg_html5_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2569", "8856", "eg_soundcloud_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2570", "8856", "eg_settings_custom_meta_skin", "");
INSERT INTO `wpos_postmeta` VALUES("2571", "8856", "eg_settings_custom_meta_element", "");
INSERT INTO `wpos_postmeta` VALUES("2572", "8856", "eg_settings_custom_meta_setting", "");
INSERT INTO `wpos_postmeta` VALUES("2573", "8856", "eg_settings_custom_meta_style", "");
INSERT INTO `wpos_postmeta` VALUES("2574", "8856", "eg_sources_revslider", "");
INSERT INTO `wpos_postmeta` VALUES("2575", "8856", "_wpb_vc_js_status", "true");
INSERT INTO `wpos_postmeta` VALUES("2576", "8856", "_page_option_meta", "a:1:{s:27:\"easyweb_webnus_page_options\";a:1:{i:0;a:8:{s:33:\"easyweb_webnus_transparent_header\";s:4:\"none\";s:19:\"show_page_title_bar\";s:4:\"hide\";s:16:\"sidebar_position\";s:4:\"none\";s:12:\"bg_image_100\";s:2:\"no\";s:15:\"bg_image_repeat\";s:1:\"1\";s:26:\"easyweb_webnus_topbar_show\";s:4:\"true\";s:26:\"easyweb_webnus_header_show\";s:4:\"true\";s:26:\"easyweb_webnus_footer_show\";s:4:\"true\";}}}");
INSERT INTO `wpos_postmeta` VALUES("2577", "8856", "_userpro_edit_restrict", "none");
INSERT INTO `wpos_postmeta` VALUES("2578", "8856", "restrict_roles", "");
INSERT INTO `wpos_postmeta` VALUES("2579", "8856", "eg-pricetable-price", "");
INSERT INTO `wpos_postmeta` VALUES("2580", "8856", "eg-pricetable-line1", "");
INSERT INTO `wpos_postmeta` VALUES("2581", "8856", "eg-pricetable-line2", "");
INSERT INTO `wpos_postmeta` VALUES("2582", "8856", "eg-pricetable-line3", "");
INSERT INTO `wpos_postmeta` VALUES("2583", "8856", "eg-pricetable-line4", "");
INSERT INTO `wpos_postmeta` VALUES("2584", "8856", "eg-pricetable-buy-url", "");
INSERT INTO `wpos_postmeta` VALUES("2585", "8856", "eg-demogrid-link", "");
INSERT INTO `wpos_postmeta` VALUES("2586", "8856", "eg-clients-icon", "");
INSERT INTO `wpos_postmeta` VALUES("2587", "8856", "eg-clients-icon-dark", "");
INSERT INTO `wpos_postmeta` VALUES("2588", "8856", "easyweb_page_title_bar_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2589", "8856", "easyweb_hide_header_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2590", "8856", "easyweb_topbar_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2591", "8856", "easyweb_header_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2592", "8856", "easyweb_footer_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2593", "8856", "easyweb_body_bg_image_100_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2594", "8856", "easyweb_onepage_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2595", "8856", "easyweb_mega_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2639", "9069", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2640", "9069", "_wpb_shortcodes_custom_css", ".vc_custom_1455714564386{margin-top: -21px !important;margin-bottom: -13px !important;}.vc_custom_1454940323575{padding-top: 13px !important;padding-bottom: 11px !important;}.vc_custom_1454940209600{margin-top: -9px !important;padding-bottom: 1px !important;}");
INSERT INTO `wpos_postmeta` VALUES("2641", "9069", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2642", "9069", "_wpb_shortcodes_custom_css", ".vc_custom_1455714564386{margin-top: -21px !important;margin-bottom: -13px !important;}.vc_custom_1454940323575{padding-top: 13px !important;padding-bottom: 11px !important;}.vc_custom_1454940209600{margin-top: -9px !important;padding-bottom: 1px !important;}");
INSERT INTO `wpos_postmeta` VALUES("2643", "9069", "restrict_roles", "");
INSERT INTO `wpos_postmeta` VALUES("2644", "9069", "_userpro_edit_restrict", "none");
INSERT INTO `wpos_postmeta` VALUES("2645", "9069", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("2646", "9069", "eg_sources_html5_mp4", "");
INSERT INTO `wpos_postmeta` VALUES("2647", "9069", "eg_sources_html5_ogv", "");
INSERT INTO `wpos_postmeta` VALUES("2648", "9069", "eg_sources_html5_webm", "");
INSERT INTO `wpos_postmeta` VALUES("2649", "9069", "eg_sources_youtube", "");
INSERT INTO `wpos_postmeta` VALUES("2650", "9069", "eg_sources_vimeo", "");
INSERT INTO `wpos_postmeta` VALUES("2651", "9069", "eg_sources_wistia", "");
INSERT INTO `wpos_postmeta` VALUES("2652", "9069", "eg_sources_image", "");
INSERT INTO `wpos_postmeta` VALUES("2653", "9069", "eg_sources_iframe", "");
INSERT INTO `wpos_postmeta` VALUES("2654", "9069", "eg_sources_soundcloud", "");
INSERT INTO `wpos_postmeta` VALUES("2655", "9069", "eg_vimeo_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2656", "9069", "eg_youtube_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2657", "9069", "eg_wistia_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2658", "9069", "eg_html5_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2659", "9069", "eg_soundcloud_ratio", "0");
INSERT INTO `wpos_postmeta` VALUES("2660", "9069", "eg_settings_custom_meta_skin", "");
INSERT INTO `wpos_postmeta` VALUES("2661", "9069", "eg_settings_custom_meta_element", "");
INSERT INTO `wpos_postmeta` VALUES("2662", "9069", "eg_settings_custom_meta_setting", "");
INSERT INTO `wpos_postmeta` VALUES("2663", "9069", "eg_settings_custom_meta_style", "");
INSERT INTO `wpos_postmeta` VALUES("2664", "9069", "eg-pricetable-price", "");
INSERT INTO `wpos_postmeta` VALUES("2665", "9069", "eg-pricetable-line1", "");
INSERT INTO `wpos_postmeta` VALUES("2666", "9069", "eg-pricetable-line2", "");
INSERT INTO `wpos_postmeta` VALUES("2667", "9069", "eg-pricetable-line3", "");
INSERT INTO `wpos_postmeta` VALUES("2668", "9069", "eg-pricetable-line4", "");
INSERT INTO `wpos_postmeta` VALUES("2669", "9069", "eg-pricetable-buy-url", "");
INSERT INTO `wpos_postmeta` VALUES("2670", "9069", "eg-demogrid-link", "");
INSERT INTO `wpos_postmeta` VALUES("2671", "9069", "eg-clients-icon", "");
INSERT INTO `wpos_postmeta` VALUES("2672", "9069", "eg-clients-icon-dark", "");
INSERT INTO `wpos_postmeta` VALUES("2673", "9069", "eg_sources_revslider", "");
INSERT INTO `wpos_postmeta` VALUES("2674", "9069", "_wpb_vc_js_status", "false");
INSERT INTO `wpos_postmeta` VALUES("2675", "9069", "_page_option_meta", "a:1:{s:27:\"easyweb_webnus_page_options\";a:1:{i:0;a:8:{s:33:\"easyweb_webnus_transparent_header\";s:4:\"none\";s:19:\"show_page_title_bar\";s:4:\"hide\";s:16:\"sidebar_position\";s:4:\"none\";s:12:\"bg_image_100\";s:2:\"no\";s:15:\"bg_image_repeat\";s:1:\"1\";s:26:\"easyweb_webnus_topbar_show\";s:4:\"true\";s:26:\"easyweb_webnus_header_show\";s:4:\"true\";s:26:\"easyweb_webnus_footer_show\";s:4:\"true\";}}}");
INSERT INTO `wpos_postmeta` VALUES("2676", "9069", "easyweb_page_title_bar_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2677", "9069", "easyweb_hide_header_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2678", "9069", "easyweb_topbar_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2679", "9069", "easyweb_header_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2680", "9069", "easyweb_footer_show", "1");
INSERT INTO `wpos_postmeta` VALUES("2681", "9069", "easyweb_body_bg_image_100_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2682", "9069", "easyweb_onepage_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2683", "9069", "easyweb_mega_menu_meta", "0");
INSERT INTO `wpos_postmeta` VALUES("2881", "9820", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2882", "9820", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2883", "9820", "_form", "<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]");
INSERT INTO `wpos_postmeta` VALUES("2884", "9820", "_mail", "a:8:{s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:34:\"[your-name] <wordpress@webnus.biz>\";s:4:\"body\";s:182:\"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 Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:20:\"webnus.net@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2885", "9820", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:31:\"Easyhost <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: webnus.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2886", "9820", "_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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2887", "9820", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2888", "9820", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2889", "9821", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2890", "9821", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2891", "9821", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2892", "9821", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:31:\"Easy SEO <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2893", "9821", "_form", "<!-- name -->\n<div id=\"talk-business\">\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Your Name</p>\n      [text Name class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- mail & subject -->\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Your Email</p>\n      [email Email class:style_contact_information]\n    </div>\n\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Subject</p>\n      [text Subject class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- text area -->\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Your Message</p>\n      [textarea Textarea class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- btns -->\n  <div class=\"row contact_information_btns\">\n\n    <div class=\"col-sm-3\">\n      [submit \"Send\"]\n    </div>\n    \n    <div class=\"col-sm-3\">\n      [submit \"Cancel\"]\n    </div>\n\n    <div class=\"col-sm-6\">\n      \n    </div>\n    \n\n  </div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2894", "9821", "_mail", "a:8:{s:7:\"subject\";s:17:\"Easyweb [Subject]\";s:6:\"sender\";s:29:\"[Name] <wordpress@webnus.biz>\";s:4:\"body\";s:163:\"From: [Name] <[Email]>\nSubject: [Subject]\n\nMessage Body:\n[Textarea]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:19:\"webnus.tf@gmail.com\";s:18:\"additional_headers\";s:30:\"Reply-To: wordpress@webnus.biz\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2895", "9821", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2896", "9821", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2897", "9822", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2898", "9822", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2899", "9822", "_form", "<div id=\"seo_consolation_form\">\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">Your Name*</p>\n      [text* Name class:seostyle]\n    </div>\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">What is your Website?</p>\n      [text What is your Website? class:seostyle]\n    </div>\n  </div>\n  \n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">Your Email*</p>\n      [email* Email class:seostyle]\n    </div>\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">Your Phone*</p>\n      [tel* Phone class:seostyle]\n    </div>\n  </div>\n\n  <div class=\"row\">\n      <div class=\"col-sm-12\">\n            <p class=\"seotitle\">How can we help you?</p>\n            [textarea textarea class:seostyle]\n      </div>\n  </div>\n  \n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"checkboxtitle\">What is your goal?</p>\n    </div>\n    <div class=\"col-sm-6\">\n      \n    </div>\n  </div>\n\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"checkbox_seo_title\">[checkbox checkbox class:seo_from_checkbox use_label_element \"SEO\" \"Email Marketing Service\" \"Content Marketing\" \"Digital Consultancy\"]</p>\n    </div>\n    <div class=\"col-sm-6\">\n      <p class=\"checkbox_seo_title\">[checkbox checkbox-745 class:seo_from_checkbox use_label_element \"Online Strategy\" \"Pay Per Click\" \"Conversion Rate Optimization\" \"Public Relation\"]</p>\n\n    </div>\n  </div>\n\n  <div class=\"row\">\n    <div class=\"col-sm-5 seo_contact_btn\">\n      [submit class:seo_form_btn_sent class:seo_form_btn_style \"SEND\"]\n    </div>\n\n  </div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2900", "9822", "_mail", "a:8:{s:7:\"subject\";s:19:\"Please Check [What]\";s:6:\"sender\";s:29:\"[Name] <wordpress@webnus.biz>\";s:4:\"body\";s:244:\"From: [Name] <[Email]>\nSubject: Please Check [What]\n\nPhone : [Phone]\nMessage Body:\n[textarea]\n\nWebsite : [What]\n\nItems : \n\n[checkbox]\n\n[checkbox-745]\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:19:\"webnus.tf@gmail.com\";s:18:\"additional_headers\";s:30:\"Reply-To: wordpress@webnus.biz\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2901", "9822", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:31:\"Easy SEO <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2902", "9822", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2903", "9822", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2904", "9822", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2905", "105", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2906", "105", "_form", "<label> O seu nome (obrigatório)\n    [text* your-name] </label>\n\n<label> O seu email (obrigatório)\n    [email* your-email] </label>\n\n<label> Assunto\n    [text your-subject] </label>\n\n<label> A sua mensagem\n    [textarea your-message] </label>\n\n[submit \"Enviar\"]");
INSERT INTO `wpos_postmeta` VALUES("2907", "105", "_mail", "a:8:{s:7:\"subject\";s:30:\"MLK Solutions \"[your-subject]\"\";s:6:\"sender\";s:23:\"[your-name] <ar@mlk.pt>\";s:4:\"body\";s:180:\"De: [your-name] <[your-email]>\nAssunto: [your-subject]\n\nCorpo da mensagem:\n[your-message]\n\n-- \nEste email foi enviado por um formulário de contacto em MLK Solutions https://mlk.pt\";s:9:\"recipient\";s:9:\"ar@mlk.pt\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2908", "105", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"MLK Solutions \"[your-subject]\"\";s:6:\"sender\";s:25:\"MLK Solutions <ar@mlk.pt>\";s:4:\"body\";s:124:\"Corpo da mensagem:\n[your-message]\n\n-- \nEste email foi enviado por um formulário de contacto em MLK Solutions https://mlk.pt\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:19:\"Reply-To: ar@mlk.pt\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2909", "105", "_messages", "a:8:{s:12:\"mail_sent_ok\";s:27:\"Obrigado pela sua mensagem.\";s:12:\"mail_sent_ng\";s:84:\"Ocorreu um erro ao tentar enviar a sua mensagem. Por favor tente de novo mais tarde.\";s:16:\"validation_error\";s:65:\"Um ou mais campos com erros. Por favor verifique e tente de novo.\";s:4:\"spam\";s:84:\"Ocorreu um erro ao tentar enviar a sua mensagem. Por favor tente de novo mais tarde.\";s:12:\"accept_terms\";s:71:\"Tem que aceitar os termos e condições antes de enviar a sua mensagem.\";s:16:\"invalid_required\";s:24:\"O campo é obrigatório.\";s:16:\"invalid_too_long\";s:28:\"O campo é demasiado grande.\";s:17:\"invalid_too_short\";s:29:\"O campo é demasiado pequeno.\";}");
INSERT INTO `wpos_postmeta` VALUES("2910", "105", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2911", "105", "_locale", "pt_PT");
INSERT INTO `wpos_postmeta` VALUES("2912", "5689", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2913", "5689", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2914", "5689", "_form", "<!-- name -->\n<div id=\"talk-business\">\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Nome</p>\n      [text Name class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- mail & subject -->\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Email</p>\n      [email Email class:style_contact_information]\n    </div>\n\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Assunto</p>\n      [text Subject class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- text area -->\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Mensagem</p>\n      [textarea Textarea class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- btns -->\n  <div class=\"row contact_information_btns\">\n<div class=\"col-sm-3\">\n</div>\n<div class=\"col-sm-6\">\n      [submit class:host-btn-form \"Enviar\"]\n </div> \n<div class=\"col-sm-3\">\n  </div>  \n\n  </div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2915", "5689", "_mail", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:18:\"MLK SITE [Subject]\";s:6:\"sender\";s:23:\"[Name] <support@mlk.pt>\";s:9:\"recipient\";s:9:\"ar@mlk.pt\";s:4:\"body\";s:125:\"From: [Name] <[Email]>\nSubject: [Subject]\n\nMessage Body:\n[Textarea]\n\n--\nEste email foi enviado a partir do Site MLK Solutions\";s:18:\"additional_headers\";s:19:\"Reply-To: ar@mlk.pt\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2916", "5689", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:31:\"Easy SEO <wordpress@webnus.biz>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2917", "5689", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2918", "5689", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2919", "5689", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2920", "5703", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2921", "5703", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2922", "5703", "_form", "<!-- name -->\n<div id=\"talk-business\" class=seo-cf-page>\n  <div class=\"row\">\n    <div class=\"col-sm-12 es-cp\">\n      <p class=\"talk-business-title\">Your Name</p>\n      [text Name class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- mail & subject -->\n  <div class=\"row\">\n    <div class=\"col-sm-6 es-cp\">\n      <p class=\"talk-business-title\">Your Email</p>\n      [email Email class:style_contact_information]\n    </div>\n\n    <div class=\"col-sm-6 es-cp\">\n      <p class=\"talk-business-title\">Subject</p>\n      [text Subject class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- text area -->\n  <div class=\"row\">\n    <div class=\"col-sm-12 es-cp\">\n      <p class=\"talk-business-title\">Your Message</p>\n      [textarea Textarea class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- btns -->\n  <div class=\"row contact_information_btns\">\n\n    <div class=\"col-sm-3\">\n      \n    </div>\n\n    <div class=\"col-sm-3\">\n      [submit \"send\"]\n    </div>\n    \n    <div class=\"col-sm-3\">\n      [submit \"Cancel\"]\n    </div>\n\n    <div class=\"col-sm-3\">\n      \n    </div>\n    \n\n  </div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2923", "5703", "_mail", "a:8:{s:7:\"subject\";s:17:\"Easyweb [Subject]\";s:6:\"sender\";s:29:\"[Name] <wordpress@webnus.biz>\";s:4:\"body\";s:163:\"From: [Name] <[Email]>\nSubject: [Subject]\n\nMessage Body:\n[Textarea]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:19:\"webnus.tf@gmail.com\";s:18:\"additional_headers\";s:30:\"Reply-To: wordpress@webnus.biz\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2924", "5703", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:31:\"Easy SEO <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2925", "5703", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2926", "5703", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2927", "5703", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2928", "6050", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2929", "6050", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2930", "6050", "_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>");
INSERT INTO `wpos_postmeta` VALUES("2931", "6050", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:34:\"[your-name] <wordpress@webnus.biz>\";s:4:\"body\";s:184:\"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 Easy Host (http://webnus.biz/themes/easyweb/host)\";s:9:\"recipient\";s:19:\"webnus.tf@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2932", "6050", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:32:\"Easy Host <wordpress@webnus.biz>\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy Host (http://webnus.biz/themes/easyweb/host)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2933", "6050", "_messages", "a:8:{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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2934", "6050", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2935", "6050", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2936", "6250", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2937", "6250", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2938", "6250", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2939", "6250", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2940", "6250", "_form", "<div class=\"checkseo\">[text* text placeholder \"Type in your Website URL\"][submit \"CHECKUP!\"]</div>");
INSERT INTO `wpos_postmeta` VALUES("2941", "6250", "_mail", "a:8:{s:7:\"subject\";s:19:\"Please Check [text]\";s:6:\"sender\";s:32:\"Seo Check <wordpress@webnus.biz>\";s:4:\"body\";s:146:\"Subject: Please Check [text]\n\nMessage Body:\n[text]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:19:\"webnus.tf@gmail.com\";s:18:\"additional_headers\";s:30:\"Reply-To: wordpress@webnus.biz\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2942", "6250", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:31:\"Easy SEO <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2943", "6250", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2944", "6481", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2945", "6481", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2946", "6481", "_form", "<div class=\"w-contact-p\">\n	<div class=\"row\">\n		<div class=\"col-md-12\">[text* your-name placeholder \"Nome (obrigatório)\"] </div>\n		<div class=\"col-md-6\">[email* your-email placeholder \"Email (obrigatório)\"] </div>\n		<div class=\"col-md-6\">[text your-subject placeholder \"Assunto\"] </div>\n		<div class=\"col-md-12\">[textarea your-message x7 placeholder \"Sua mensagem...\"] </div>\n		<div class=\"col-md-12\">[submit \"Enviar\"]</div>\n	</div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2947", "6481", "_mail", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"[your-subject] MLK Site\";s:6:\"sender\";s:28:\"[your-name] <support@mlk.pt>\";s:9:\"recipient\";s:9:\"ar@mlk.pt\";s:4:\"body\";s:125:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from MLK Site\";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;}");
INSERT INTO `wpos_postmeta` VALUES("2948", "6481", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:31:\"Easy SEO <wordpress@webnus.biz>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2949", "6481", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2950", "6481", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2951", "6481", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2952", "9173", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2953", "9173", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2954", "9173", "_config_errors", "a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:34:\"The %name% field value is invalid.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:90:\"http://contactform7.com/configuration-errors/#mail.additional_headers:error_invalid_syntax\";}}}}");
INSERT INTO `wpos_postmeta` VALUES("2955", "9173", "_form", "<div class=\"comingsoon-form row\">\n	<div class=\"col-md-6\">\n		[text name class:cs-name placeholder \"Name\"]\n		[email email class:csmail placeholder \"E-mail\"]\n		[text subject class:cs-subject placeholder \"Subject\"]\n	</div>\n	<div class=\"col-md-6\">\n		[textarea* textarea class:cs-message placeholder \"Message\"]\n		[submit class:cs-message \"SEND MESSAGE\"]\n	</div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2956", "9173", "_mail", "a:8:{s:7:\"subject\";s:22:\"Easyweb [your-subject]\";s:6:\"sender\";s:29:\"[name] <wordpress@webnus.biz>\";s:4:\"body\";s:165:\"From: [name] <[email]>\nSubject: [subject]\n\nMessage Body:\n[textarea]\n\n--\nThis e-mail was sent from a contact form on Easy Host (http://webnus.biz/themes/easyweb/host)\";s:9:\"recipient\";s:19:\"webnus.tf@gmail.com\";s:18:\"additional_headers\";s:31:\"Reply-To: wordpress@webnus.biz>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2957", "9173", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:32:\"Easy Host <wordpress@webnus.biz>\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy Host (http://webnus.biz/themes/easyweb/host)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: webnus.tf@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2958", "9173", "_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: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.\";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:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2959", "9173", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2960", "9173", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2961", "9674", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2962", "9674", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2963", "9674", "_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>");
INSERT INTO `wpos_postmeta` VALUES("2964", "9674", "_mail", "a:8:{s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:34:\"[your-name] <wordpress@webnus.biz>\";s:4:\"body\";s:182:\"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 Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:19:\"s.hitched@yahoo.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2965", "9674", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:31:\"Easyhost <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: s.hitched@yahoo.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2966", "9674", "_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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2967", "9674", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2968", "9674", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2969", "9823", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2970", "9823", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2971", "9823", "_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>");
INSERT INTO `wpos_postmeta` VALUES("2972", "9823", "_mail", "a:8:{s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:34:\"[your-name] <wordpress@webnus.biz>\";s:4:\"body\";s:182:\"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 Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:19:\"s.hitched@yahoo.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2973", "9823", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:31:\"Easyhost <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: s.hitched@yahoo.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wpos_postmeta` VALUES("2974", "9823", "_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.\";}");
INSERT INTO `wpos_postmeta` VALUES("2975", "9823", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2976", "9823", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("2977", "9824", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2978", "9824", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("2979", "9824", "_form", "<div class=\"foot-contct-form\">\n	<div class=\"fcf-name col-sm-12\">[text* your-name placeholder \"Your Name :\"]</div>\n	<div class=\"fcf-email col-sm-6\">[email* your-email placeholder \"E mail :\"]</div>\n	<div class=\"fcf-subject col-sm-6\">[text your-subject placeholder \"Subject :\"]</div>\n	<div class=\"fcf-massage col-sm-12\">[textarea your-message placeholder \"Message :\"]</div>\n	<div class=\"fcf-submit col-sm-6\">[submit \"Send Message\"]</div>\n</div>");
INSERT INTO `wpos_postmeta` VALUES("2980", "9824", "_mail", "a:8:{s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:34:\"[your-name] <wordpress@webnus.biz>\";s:4:\"body\";s:182:\"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 Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:20:\"webnus.net@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;}");
INSERT INTO `wpos_postmeta` VALUES("2981", "9824", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"Easyhost \"[your-subject]\"\";s:6:\"sender\";s:31:\"Easyhost <wordpress@webnus.biz>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: webnus.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpos_postmeta` VALUES("2982", "9824", "_messages", "a:23:{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.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}");
INSERT INTO `wpos_postmeta` VALUES("2983", "9824", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("2984", "9824", "_locale", "en_US");
INSERT INTO `wpos_postmeta` VALUES("3074", "130", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3194", "1571", "_wpb_shortcodes_custom_css", ".vc_custom_1491321357568{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}");
INSERT INTO `wpos_postmeta` VALUES("3193", "1571", "_yoast_wpseo_content_score", "60");
INSERT INTO `wpos_postmeta` VALUES("3219", "1631", "_yoast_wpseo_title", "MLK Care - Programa de Apoio a Entidades de Cariz Social");
INSERT INTO `wpos_postmeta` VALUES("3191", "2103", "_yoast_wpseo_content_score", "30");
INSERT INTO `wpos_postmeta` VALUES("3085", "9859", "_wp_attached_file", "2015/07/1914651_1291817737502252_7638834662661526346_n.jpg");
INSERT INTO `wpos_postmeta` VALUES("3086", "9859", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:561;s:6:\"height\";i:561;s:4:\"file\";s:58:\"2015/07/1914651_1291817737502252_7638834662661526346_n.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"1914651_1291817737502252_7638834662661526346_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"1914651_1291817737502252_7638834662661526346_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3087", "9860", "_wp_attached_file", "2015/07/apateiraeventsv_1482846854_280.jpg");
INSERT INTO `wpos_postmeta` VALUES("3088", "9860", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:280;s:6:\"height\";i:280;s:4:\"file\";s:42:\"2015/07/apateiraeventsv_1482846854_280.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"apateiraeventsv_1482846854_280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3089", "9861", "_wp_attached_file", "2015/07/11951932_897977606949154_5310957690001016210_n.png");
INSERT INTO `wpos_postmeta` VALUES("3090", "9861", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:58:\"2015/07/11951932_897977606949154_5310957690001016210_n.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"11951932_897977606949154_5310957690001016210_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3091", "9862", "_wp_attached_file", "2015/07/15590197_1820150014890376_406898579234556122_n-1.jpg");
INSERT INTO `wpos_postmeta` VALUES("3092", "9862", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:591;s:6:\"height\";i:591;s:4:\"file\";s:60:\"2015/07/15590197_1820150014890376_406898579234556122_n-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"15590197_1820150014890376_406898579234556122_n-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:60:\"15590197_1820150014890376_406898579234556122_n-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3093", "9863", "_wp_attached_file", "2015/07/16406641_706965232814136_157636203858084222_n.png");
INSERT INTO `wpos_postmeta` VALUES("3094", "9863", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:781;s:6:\"height\";i:781;s:4:\"file\";s:57:\"2015/07/16406641_706965232814136_157636203858084222_n.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"16406641_706965232814136_157636203858084222_n-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:57:\"16406641_706965232814136_157636203858084222_n-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"16406641_706965232814136_157636203858084222_n-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3095", "9864", "_wp_attached_file", "2015/07/10392595_976067072407308_6186526313517852947_n.png");
INSERT INTO `wpos_postmeta` VALUES("3096", "9864", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:58:\"2015/07/10392595_976067072407308_6186526313517852947_n.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"10392595_976067072407308_6186526313517852947_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3097", "9865", "_wp_attached_file", "2015/07/image.jpg");
INSERT INTO `wpos_postmeta` VALUES("3098", "9865", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:471;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2015/07/image.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"image-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3099", "9866", "_wp_attached_file", "2015/07/saosoutil.jpg");
INSERT INTO `wpos_postmeta` VALUES("3100", "9866", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/07/saosoutil.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"saosoutil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3101", "9867", "_wp_attached_file", "2015/07/starsta_logo.jpg");
INSERT INTO `wpos_postmeta` VALUES("3102", "9867", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:52;s:4:\"file\";s:24:\"2015/07/starsta_logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"starsta_logo-150x52.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3128", "9870", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3129", "9870", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3130", "9870", "_edit_lock", "1491315429:1");
INSERT INTO `wpos_postmeta` VALUES("3131", "9870", "_thumbnail_id", "9862");
INSERT INTO `wpos_postmeta` VALUES("3132", "9870", "slide_template", "");
INSERT INTO `wpos_postmeta` VALUES("3133", "9870", "king_testi", "a:2:{s:7:\"website\";s:0:\"\";s:5:\"_type\";s:5:\"testi\";}");
INSERT INTO `wpos_postmeta` VALUES("3134", "9871", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3135", "9871", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3136", "9871", "_edit_lock", "1491315421:1");
INSERT INTO `wpos_postmeta` VALUES("3137", "9871", "slide_template", "");
INSERT INTO `wpos_postmeta` VALUES("3138", "9871", "king_testi", "a:2:{s:7:\"website\";s:0:\"\";s:5:\"_type\";s:5:\"testi\";}");
INSERT INTO `wpos_postmeta` VALUES("3139", "9872", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3140", "9872", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3141", "9872", "_edit_lock", "1491315411:1");
INSERT INTO `wpos_postmeta` VALUES("3142", "9873", "_wp_attached_file", "2017/04/17311781_1655660054740407_532168808_o.jpg");
INSERT INTO `wpos_postmeta` VALUES("3143", "9873", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:721;s:4:\"file\";s:49:\"2017/04/17311781_1655660054740407_532168808_o.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"17311781_1655660054740407_532168808_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"17311781_1655660054740407_532168808_o-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:49:\"17311781_1655660054740407_532168808_o-768x270.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"17311781_1655660054740407_532168808_o-1024x361.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3144", "9872", "_thumbnail_id", "9873");
INSERT INTO `wpos_postmeta` VALUES("3145", "9872", "slide_template", "");
INSERT INTO `wpos_postmeta` VALUES("3146", "9872", "king_testi", "a:2:{s:7:\"website\";s:0:\"\";s:5:\"_type\";s:5:\"testi\";}");
INSERT INTO `wpos_postmeta` VALUES("3147", "9874", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3148", "9874", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3149", "9874", "_edit_lock", "1491315400:1");
INSERT INTO `wpos_postmeta` VALUES("3150", "9874", "slide_template", "");
INSERT INTO `wpos_postmeta` VALUES("3151", "9874", "king_testi", "a:2:{s:7:\"website\";s:0:\"\";s:5:\"_type\";s:5:\"testi\";}");
INSERT INTO `wpos_postmeta` VALUES("3152", "9875", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3153", "9875", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3154", "9875", "_edit_lock", "1491315243:1");
INSERT INTO `wpos_postmeta` VALUES("3155", "9875", "_thumbnail_id", "9861");
INSERT INTO `wpos_postmeta` VALUES("3156", "9875", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("3157", "9875", "king_testi", "a:2:{s:7:\"website\";s:0:\"\";s:5:\"_type\";s:5:\"testi\";}");
INSERT INTO `wpos_postmeta` VALUES("3158", "9876", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3159", "9876", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3160", "9876", "_edit_lock", "1491315226:1");
INSERT INTO `wpos_postmeta` VALUES("3161", "9876", "_thumbnail_id", "9867");
INSERT INTO `wpos_postmeta` VALUES("3162", "9876", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("3163", "9876", "king_testi", "a:2:{s:7:\"website\";s:0:\"\";s:5:\"_type\";s:5:\"testi\";}");
INSERT INTO `wpos_postmeta` VALUES("3220", "1631", "_yoast_wpseo_metadesc", "Oferta de Hosting a Associações , Instituições e Fundações de cariz social.");
INSERT INTO `wpos_postmeta` VALUES("3166", "9882", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3167", "9882", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3168", "9882", "_edit_lock", "1491318151:1");
INSERT INTO `wpos_postmeta` VALUES("3169", "9883", "_wp_attached_file", "2017/04/transferir.jpg");
INSERT INTO `wpos_postmeta` VALUES("3170", "9883", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:22:\"2017/04/transferir.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"transferir-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3171", "9882", "_thumbnail_id", "9885");
INSERT INTO `wpos_postmeta` VALUES("3177", "9885", "_wp_attached_file", "2017/04/wordcamplisboa.jpg");
INSERT INTO `wpos_postmeta` VALUES("3174", "9882", "slide_template", "default");
INSERT INTO `wpos_postmeta` VALUES("3175", "9882", "_yoast_wpseo_content_score", "90");
INSERT INTO `wpos_postmeta` VALUES("3176", "9882", "_yoast_wpseo_primary_category", "43");
INSERT INTO `wpos_postmeta` VALUES("3178", "9885", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:630;s:6:\"height\";i:416;s:4:\"file\";s:26:\"2017/04/wordcamplisboa.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"wordcamplisboa-150x150.jpg\";s:5:\"width\";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:\"wordcamplisboa-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpos_postmeta` VALUES("3181", "9887", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3182", "9887", "_menu_item_type", "post_type");
INSERT INTO `wpos_postmeta` VALUES("3183", "9887", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpos_postmeta` VALUES("3184", "9887", "_menu_item_object_id", "996");
INSERT INTO `wpos_postmeta` VALUES("3185", "9887", "_menu_item_object", "page");
INSERT INTO `wpos_postmeta` VALUES("3186", "9887", "_menu_item_target", "");
INSERT INTO `wpos_postmeta` VALUES("3187", "9887", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpos_postmeta` VALUES("3188", "9887", "_menu_item_xfn", "");
INSERT INTO `wpos_postmeta` VALUES("3189", "9887", "_menu_item_url", "");
INSERT INTO `wpos_postmeta` VALUES("3195", "1631", "_edit_lock", "1493115825:1");
INSERT INTO `wpos_postmeta` VALUES("3196", "1631", "_edit_last", "1");
INSERT INTO `wpos_postmeta` VALUES("3197", "1631", "_yoast_wpseo_content_score", "30");
INSERT INTO `wpos_postmeta` VALUES("3198", "1630", "_edit_lock", "1491320574:1");
INSERT INTO `wpos_postmeta` VALUES("3199", "1571", "_thumbnail_id", "2203");
INSERT INTO `wpos_postmeta` VALUES("3200", "1572", "_yoast_wpseo_content_score", "60");
INSERT INTO `wpos_postmeta` VALUES("3201", "998", "_additional_settings", "");
INSERT INTO `wpos_postmeta` VALUES("3208", "1189", "_yoast_wpseo_title", "MLK Solutions - Serviços de Webhosting Premium");
INSERT INTO `wpos_postmeta` VALUES("3209", "1189", "_yoast_wpseo_metadesc", "Serviços de Webhosting profissionais , máxima fiabilidade e rapidez. Desde 1.66€ mês . cPanel , SSL , Linux , Softaculous, Website builder e muito mais.");
INSERT INTO `wpos_postmeta` VALUES("3210", "1189", "_yoast_wpseo_content_score", "90");
INSERT INTO `wpos_postmeta` VALUES("3211", "1571", "_yoast_wpseo_title", "MLK Care - Programa de Apoio a Entidades de Cariz Social");
INSERT INTO `wpos_postmeta` VALUES("3212", "1571", "_yoast_wpseo_metadesc", "Na MLK Solutions damos prioridade ao que realmente importa. Oferecemos conta de WebHosting a Associações/Instituições e Fundações de cariz social.");
INSERT INTO `wpos_postmeta` VALUES("3221", "9905", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wpos_postmeta` VALUES("3213", "130", "_yoast_wpseo_content_score", "30");
INSERT INTO `wpos_postmeta` VALUES("3215", "1571", "_yoast_wpseo_focuskw_text_input", "Social");
INSERT INTO `wpos_postmeta` VALUES("3216", "1571", "_yoast_wpseo_focuskw", "Social");
INSERT INTO `wpos_postmeta` VALUES("3217", "1571", "_yoast_wpseo_linkdex", "51");

/* INSERT TABLE DATA: wpos_posts */
INSERT INTO `wpos_posts` VALUES("12", "1", "2015-07-01 15:47:05", "2015-07-01 15:47:05", "", "01", "", "inherit", "closed", "open", "", "01", "", "", "2015-07-01 15:47:05", "2015-07-01 15:47:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("68", "1", "2015-07-05 10:21:25", "2015-07-05 10:21:25", "", "peop-img37", "", "inherit", "closed", "open", "", "peop-img37", "", "", "2015-07-05 10:21:25", "2015-07-05 10:21:25", "", "67", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img37.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("69", "1", "2015-07-05 10:21:25", "2015-07-05 10:21:25", "", "peop-img38", "", "inherit", "closed", "open", "", "peop-img38", "", "", "2015-07-05 10:21:25", "2015-07-05 10:21:25", "", "67", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img38.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("70", "1", "2015-07-05 10:21:26", "2015-07-05 10:21:26", "", "peop-img40", "", "inherit", "closed", "open", "", "peop-img40", "", "", "2015-07-05 10:21:26", "2015-07-05 10:21:26", "", "67", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img40.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("71", "1", "2015-07-05 10:21:26", "2015-07-05 10:21:26", "", "peop-img42", "", "inherit", "closed", "open", "", "peop-img42", "", "", "2015-07-05 10:21:26", "2015-07-05 10:21:26", "", "67", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img42.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("72", "1", "2015-07-05 10:21:27", "2015-07-05 10:21:27", "", "peop-img41", "", "inherit", "closed", "open", "", "peop-img41", "", "", "2015-07-05 10:21:27", "2015-07-05 10:21:27", "", "67", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img41.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("75", "1", "2015-07-05 10:23:34", "2015-07-05 10:23:34", "", "peop-img39", "", "inherit", "closed", "open", "", "peop-img39", "", "", "2015-07-05 10:23:34", "2015-07-05 10:23:34", "", "74", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img39.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("225", "1", "2015-07-06 10:43:47", "2015-07-06 10:43:47", "", "clientlogo16-gray", "", "inherit", "closed", "open", "", "clientlogo16-gray", "", "", "2015-07-06 10:43:47", "2015-07-06 10:43:47", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("226", "1", "2015-07-06 10:43:48", "2015-07-06 10:43:48", "", "clientlogo18-gray", "", "inherit", "closed", "open", "", "clientlogo18-gray", "", "", "2015-07-06 10:43:48", "2015-07-06 10:43:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("227", "1", "2015-07-06 10:43:48", "2015-07-06 10:43:48", "", "clientlogo19-gray", "", "inherit", "closed", "open", "", "clientlogo19-gray", "", "", "2015-07-06 10:43:48", "2015-07-06 10:43:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("228", "1", "2015-07-06 10:43:48", "2015-07-06 10:43:48", "", "clientlogo11-gray", "", "inherit", "closed", "open", "", "clientlogo11-gray", "", "", "2015-07-06 10:43:48", "2015-07-06 10:43:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("229", "1", "2015-07-06 10:43:49", "2015-07-06 10:43:49", "", "clientlogo12-gray", "", "inherit", "closed", "open", "", "clientlogo12-gray", "", "", "2015-07-06 10:43:49", "2015-07-06 10:43:49", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("230", "1", "2015-07-06 10:43:49", "2015-07-06 10:43:49", "", "clientlogo15-gray", "", "inherit", "closed", "open", "", "clientlogo15-gray", "", "", "2015-07-06 10:43:49", "2015-07-06 10:43:49", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo15-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("232", "1", "2015-07-06 10:46:23", "2015-07-06 10:46:23", "", "clientlogo13-gray", "", "inherit", "closed", "open", "", "clientlogo13-gray", "", "", "2015-07-06 10:46:23", "2015-07-06 10:46:23", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("233", "1", "2015-07-06 10:46:23", "2015-07-06 10:46:23", "", "clientlogo14-gray", "", "inherit", "closed", "open", "", "clientlogo14-gray", "", "", "2015-07-06 10:46:23", "2015-07-06 10:46:23", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("234", "1", "2015-07-06 10:46:24", "2015-07-06 10:46:24", "", "clientlogo20-gray", "", "inherit", "closed", "open", "", "clientlogo20-gray", "", "", "2015-07-06 10:46:24", "2015-07-06 10:46:24", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("760", "1", "2015-07-21 03:25:12", "2015-07-21 03:25:12", "", "clientlogo20", "", "inherit", "closed", "open", "", "clientlogo20", "", "", "2015-07-21 03:25:12", "2015-07-21 03:25:12", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("761", "1", "2015-07-21 03:25:13", "2015-07-21 03:25:13", "", "clientlogo19", "", "inherit", "closed", "open", "", "clientlogo19", "", "", "2015-07-21 03:25:13", "2015-07-21 03:25:13", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("762", "1", "2015-07-21 03:25:15", "2015-07-21 03:25:15", "", "clientlogo18", "", "inherit", "closed", "open", "", "clientlogo18", "", "", "2015-07-21 03:25:15", "2015-07-21 03:25:15", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("763", "1", "2015-07-21 03:25:18", "2015-07-21 03:25:18", "", "clientlogo17", "", "inherit", "closed", "open", "", "clientlogo17", "", "", "2015-07-21 03:25:18", "2015-07-21 03:25:18", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo17.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("764", "1", "2015-07-21 03:25:20", "2015-07-21 03:25:20", "", "clientlogo16", "", "inherit", "closed", "open", "", "clientlogo16", "", "", "2015-07-21 03:25:20", "2015-07-21 03:25:20", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("765", "1", "2015-07-21 03:25:22", "2015-07-21 03:25:22", "", "clientlogo15", "", "inherit", "closed", "open", "", "clientlogo15", "", "", "2015-07-21 03:25:22", "2015-07-21 03:25:22", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo15.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("766", "1", "2015-07-21 03:25:23", "2015-07-21 03:25:23", "", "clientlogo14", "", "inherit", "closed", "open", "", "clientlogo14", "", "", "2015-07-21 03:25:23", "2015-07-21 03:25:23", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("767", "1", "2015-07-21 03:25:25", "2015-07-21 03:25:25", "", "clientlogo13", "", "inherit", "closed", "open", "", "clientlogo13", "", "", "2015-07-21 03:25:25", "2015-07-21 03:25:25", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("768", "1", "2015-07-21 03:25:27", "2015-07-21 03:25:27", "", "clientlogo12", "", "inherit", "closed", "open", "", "clientlogo12", "", "", "2015-07-21 03:25:27", "2015-07-21 03:25:27", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("769", "1", "2015-07-21 03:25:29", "2015-07-21 03:25:29", "", "clientlogo11", "", "inherit", "closed", "open", "", "clientlogo11", "", "", "2015-07-21 03:25:29", "2015-07-21 03:25:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1070", "1", "2015-07-24 08:33:34", "2015-07-24 08:33:34", "", "site-img35", "", "inherit", "closed", "open", "", "site-img35", "", "", "2015-07-24 08:33:34", "2015-07-24 08:33:34", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img35.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1071", "1", "2015-07-24 08:33:36", "2015-07-24 08:33:36", "", "site-img38", "", "inherit", "closed", "open", "", "site-img38", "", "", "2015-07-24 08:33:36", "2015-07-24 08:33:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img38.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1149", "1", "2015-07-25 15:34:22", "2015-07-25 15:34:22", "", "peop-img2", "", "inherit", "closed", "open", "", "peop-img2", "", "", "2015-07-25 15:34:22", "2015-07-25 15:34:22", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1152", "1", "2015-07-25 15:36:35", "2015-07-25 15:36:35", "", "peop-img1", "", "inherit", "closed", "open", "", "peop-img1", "", "", "2015-07-25 15:36:35", "2015-07-25 15:36:35", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/peop-img1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1287", "1", "2015-08-03 02:55:47", "2015-08-03 02:55:47", "", "video-bg", "", "inherit", "closed", "open", "", "video-bg-2", "", "", "2015-08-03 02:55:47", "2015-08-03 02:55:47", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/video-bg1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1316", "1", "2015-08-03 08:16:43", "2015-08-03 08:16:43", "", "site-img5", "", "inherit", "closed", "open", "", "site-img5", "", "", "2015-08-03 08:16:43", "2015-08-03 08:16:43", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img5.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1323", "1", "2015-08-03 08:25:23", "2015-08-03 08:25:23", "", "site-img6", "", "inherit", "closed", "open", "", "site-img6-2", "", "", "2015-08-03 08:25:23", "2015-08-03 08:25:23", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img64.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1324", "1", "2015-08-03 08:26:43", "2015-08-03 08:26:43", "", "site-img7", "", "inherit", "closed", "open", "", "site-img7-2", "", "", "2015-08-03 08:26:43", "2015-08-03 08:26:43", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img7.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1325", "1", "2015-08-03 08:27:21", "2015-08-03 08:27:21", "", "site-img8", "", "inherit", "closed", "open", "", "site-img8-2", "", "", "2015-08-03 08:27:21", "2015-08-03 08:27:21", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img8.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1326", "1", "2015-08-03 08:28:22", "2015-08-03 08:28:22", "", "site-img9", "", "inherit", "closed", "open", "", "site-img9-2", "", "", "2015-08-03 08:28:22", "2015-08-03 08:28:22", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img9.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1330", "1", "2015-08-03 08:41:28", "2015-08-03 08:41:28", "", "site-img11", "", "inherit", "closed", "open", "", "site-img11-2", "", "", "2015-08-03 08:41:28", "2015-08-03 08:41:28", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img11-e1439871928486.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1331", "1", "2015-08-03 08:41:29", "2015-08-03 08:41:29", "", "site-img10", "", "inherit", "closed", "open", "", "site-img10-2", "", "", "2015-08-03 08:41:29", "2015-08-03 08:41:29", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img10-e1439871701254.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1332", "1", "2015-08-03 08:41:29", "2015-08-03 08:41:29", "", "site-img12", "", "inherit", "closed", "open", "", "site-img12", "", "", "2015-08-03 08:41:29", "2015-08-03 08:41:29", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img12-e1439871935144.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1342", "1", "2015-08-03 09:49:09", "2015-08-03 09:49:09", "", "site-img14", "", "inherit", "closed", "open", "", "site-img14", "", "", "2015-08-03 09:49:09", "2015-08-03 09:49:09", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1343", "1", "2015-08-03 09:49:09", "2015-08-03 09:49:09", "", "site-img15", "", "inherit", "closed", "open", "", "site-img15", "", "", "2015-08-03 09:49:09", "2015-08-03 09:49:09", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1344", "1", "2015-08-03 09:49:10", "2015-08-03 09:49:10", "", "site-img16", "", "inherit", "closed", "open", "", "site-img16-2", "", "", "2015-08-03 09:49:10", "2015-08-03 09:49:10", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img164.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1354", "1", "2015-08-03 10:24:00", "2015-08-03 10:24:00", "", "site-img17", "", "inherit", "closed", "open", "", "site-img17-2", "", "", "2015-08-03 10:24:00", "2015-08-03 10:24:00", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img17-e1439871857101.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1355", "1", "2015-08-03 10:25:34", "2015-08-03 10:25:34", "", "scripts-logo2", "", "inherit", "closed", "open", "", "scripts-logo2", "", "", "2015-08-03 10:25:34", "2015-08-03 10:25:34", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1356", "1", "2015-08-03 10:25:35", "2015-08-03 10:25:35", "", "scripts-logo8", "", "inherit", "closed", "open", "", "scripts-logo8", "", "", "2015-08-03 10:25:35", "2015-08-03 10:25:35", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1357", "1", "2015-08-03 10:25:36", "2015-08-03 10:25:36", "", "scripts-logo4", "", "inherit", "closed", "open", "", "scripts-logo4", "", "", "2015-08-03 10:25:36", "2015-08-03 10:25:36", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1358", "1", "2015-08-03 10:25:36", "2015-08-03 10:25:36", "", "scripts-logo1", "", "inherit", "closed", "open", "", "scripts-logo1", "", "", "2015-08-03 10:25:36", "2015-08-03 10:25:36", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1359", "1", "2015-08-03 10:25:37", "2015-08-03 10:25:37", "", "scripts-logo7", "", "inherit", "closed", "open", "", "scripts-logo7", "", "", "2015-08-03 10:25:37", "2015-08-03 10:25:37", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1360", "1", "2015-08-03 10:25:37", "2015-08-03 10:25:37", "", "scripts-logo6", "", "inherit", "closed", "open", "", "scripts-logo6", "", "", "2015-08-03 10:25:37", "2015-08-03 10:25:37", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1361", "1", "2015-08-03 10:25:38", "2015-08-03 10:25:38", "", "scripts-logo5", "", "inherit", "closed", "open", "", "scripts-logo5", "", "", "2015-08-03 10:25:38", "2015-08-03 10:25:38", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1362", "1", "2015-08-03 10:25:39", "2015-08-03 10:25:39", "", "scripts-logo3", "", "inherit", "closed", "open", "", "scripts-logo3", "", "", "2015-08-03 10:25:39", "2015-08-03 10:25:39", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1373", "1", "2015-08-08 13:47:22", "2015-08-08 13:47:22", "", "01.jpg", "", "inherit", "closed", "closed", "", "01-jpg", "", "", "2015-08-08 13:47:22", "2015-08-08 13:47:22", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1375", "1", "2015-08-08 23:57:38", "2015-08-08 23:57:38", "", "bg", "", "inherit", "closed", "open", "", "bg", "", "", "2015-08-08 23:57:38", "2015-08-08 23:57:38", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/bg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1377", "1", "2015-08-10 03:24:10", "2015-08-10 03:24:10", "", "02", "", "inherit", "closed", "open", "", "02", "", "", "2015-08-10 03:24:10", "2015-08-10 03:24:10", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/02.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1378", "1", "2015-08-10 03:48:38", "2015-08-10 03:48:38", "", "04", "", "inherit", "closed", "open", "", "04", "", "", "2015-08-10 03:48:38", "2015-08-10 03:48:38", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/04.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1379", "1", "2015-08-10 03:48:40", "2015-08-10 03:48:40", "", "03", "", "inherit", "closed", "open", "", "03", "", "", "2015-08-10 03:48:40", "2015-08-10 03:48:40", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/03.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1380", "1", "2015-08-10 04:03:14", "2015-08-10 04:03:14", "", "05", "", "inherit", "closed", "open", "", "05", "", "", "2015-08-10 04:03:14", "2015-08-10 04:03:14", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/05.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1381", "1", "2015-08-10 04:03:48", "2015-08-10 04:03:48", "", "06", "", "inherit", "closed", "open", "", "06", "", "", "2015-08-10 04:03:48", "2015-08-10 04:03:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/06.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1382", "1", "2015-08-10 04:40:38", "2015-08-10 04:40:38", "", "site-img160", "", "inherit", "closed", "open", "", "site-img160", "", "", "2015-08-10 04:40:38", "2015-08-10 04:40:38", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img160.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1398", "1", "2015-08-10 09:25:26", "2015-08-10 09:25:26", "", "blog-img-02", "", "inherit", "closed", "open", "", "blog-img-02", "", "", "2015-08-10 09:25:26", "2015-08-10 09:25:26", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/blog-img-02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1399", "1", "2015-08-10 09:25:28", "2015-08-10 09:25:28", "", "blog-img-03", "", "inherit", "closed", "open", "", "blog-img-03", "", "", "2015-08-10 09:25:28", "2015-08-10 09:25:28", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/blog-img-03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1400", "1", "2015-08-10 09:25:31", "2015-08-10 09:25:31", "", "blog-img-05", "", "inherit", "closed", "open", "", "blog-img-05", "", "", "2015-08-10 09:25:31", "2015-08-10 09:25:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/blog-img-05.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1401", "1", "2015-08-10 09:25:33", "2015-08-10 09:25:33", "", "blog-img-06", "", "inherit", "closed", "open", "", "blog-img-06", "", "", "2015-08-10 09:25:33", "2015-08-10 09:25:33", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/blog-img-06.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1402", "1", "2015-08-10 09:25:36", "2015-08-10 09:25:36", "", "blog-img-16", "", "inherit", "closed", "open", "", "blog-img-16", "", "", "2015-08-10 09:25:36", "2015-08-10 09:25:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/blog-img-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1403", "1", "2015-08-10 09:25:43", "2015-08-10 09:25:43", "", "blog-img-17", "", "inherit", "closed", "open", "", "blog-img-17", "", "", "2015-08-10 09:25:43", "2015-08-10 09:25:43", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/blog-img-17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1404", "1", "2015-08-10 09:25:45", "2015-08-10 09:25:45", "", "portfolio-img21", "", "inherit", "closed", "open", "", "portfolio-img21", "", "", "2015-08-10 09:25:45", "2015-08-10 09:25:45", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/02/portfolio-img21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1416", "1", "2015-08-10 09:41:19", "2015-08-10 09:41:19", "", "site-img51", "", "inherit", "closed", "open", "", "site-img51", "", "", "2015-08-10 09:41:19", "2015-08-10 09:41:19", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img51.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1417", "1", "2015-08-10 09:44:08", "2015-08-10 09:44:08", "", "site-img52", "", "inherit", "closed", "open", "", "site-img52", "", "", "2015-08-10 09:44:08", "2015-08-10 09:44:08", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img52.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1418", "1", "2015-08-10 09:44:10", "2015-08-10 09:44:10", "", "site-img53", "", "inherit", "closed", "open", "", "site-img53", "", "", "2015-08-10 09:44:10", "2015-08-10 09:44:10", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img53.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1420", "1", "2015-08-10 09:57:32", "2015-08-10 09:57:32", "", "site-img20", "", "inherit", "closed", "open", "", "site-img20", "", "", "2015-08-10 09:57:32", "2015-08-10 09:57:32", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img20.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1421", "1", "2015-08-10 09:57:33", "2015-08-10 09:57:33", "", "site-img21", "", "inherit", "closed", "open", "", "site-img21", "", "", "2015-08-10 09:57:33", "2015-08-10 09:57:33", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1423", "1", "2015-08-10 10:17:05", "2015-08-10 10:17:05", "", "site-img19", "", "inherit", "closed", "open", "", "site-img19", "", "", "2015-08-10 10:17:05", "2015-08-10 10:17:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1425", "1", "2015-08-10 10:25:46", "2015-08-10 10:25:46", "", "site-img7", "", "inherit", "closed", "open", "", "site-img7", "", "", "2015-08-10 10:25:46", "2015-08-10 10:25:46", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img71.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1426", "1", "2015-08-10 10:25:48", "2015-08-10 10:25:48", "", "site-img8", "", "inherit", "closed", "open", "", "site-img8", "", "", "2015-08-10 10:25:48", "2015-08-10 10:25:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img81.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1427", "1", "2015-08-10 10:25:50", "2015-08-10 10:25:50", "", "site-img9", "", "inherit", "closed", "open", "", "site-img9", "", "", "2015-08-10 10:25:50", "2015-08-10 10:25:50", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img91.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1430", "1", "2015-08-10 10:33:54", "2015-08-10 10:33:54", "", "icon-17", "", "inherit", "closed", "open", "", "icon-17", "", "", "2015-08-10 10:33:54", "2015-08-10 10:33:54", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/icon-17.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1435", "1", "2015-08-11 06:49:18", "2015-08-11 06:49:18", "", "site-img32", "", "inherit", "closed", "open", "", "site-img32", "", "", "2015-08-11 06:49:18", "2015-08-11 06:49:18", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img32.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1436", "1", "2015-08-11 06:49:20", "2015-08-11 06:49:20", "", "site-img33", "", "inherit", "closed", "open", "", "site-img33", "", "", "2015-08-11 06:49:20", "2015-08-11 06:49:20", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img33.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1437", "1", "2015-08-11 06:58:47", "2015-08-11 06:58:47", "", "icon-8", "", "inherit", "closed", "open", "", "icon-8", "", "", "2015-08-11 06:58:47", "2015-08-11 06:58:47", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/icon-8.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1438", "1", "2015-08-11 06:58:48", "2015-08-11 06:58:48", "", "icon-9", "", "inherit", "closed", "open", "", "icon-9", "", "", "2015-08-11 06:58:48", "2015-08-11 06:58:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/icon-9.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1439", "1", "2015-08-11 06:58:50", "2015-08-11 06:58:50", "", "icon-15", "", "inherit", "closed", "open", "", "icon-15", "", "", "2015-08-11 06:58:50", "2015-08-11 06:58:50", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/icon-15.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1440", "1", "2015-08-11 06:58:52", "2015-08-11 06:58:52", "", "icon-18", "", "inherit", "closed", "open", "", "icon-18", "", "", "2015-08-11 06:58:52", "2015-08-11 06:58:52", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/icon-18.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1441", "1", "2015-08-11 06:58:54", "2015-08-11 06:58:54", "", "icon-26", "", "inherit", "closed", "open", "", "icon-26", "", "", "2015-08-11 06:58:54", "2015-08-11 06:58:54", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/icon-26.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1442", "1", "2015-08-11 06:58:55", "2015-08-11 06:58:55", "", "icon-27", "", "inherit", "closed", "open", "", "icon-27", "", "", "2015-08-11 06:58:55", "2015-08-11 06:58:55", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/icon-27.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1443", "1", "2015-08-11 07:30:25", "2015-08-11 07:30:25", "", "icon-7", "", "inherit", "closed", "open", "", "icon-7", "", "", "2015-08-11 07:30:25", "2015-08-11 07:30:25", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/icon-7.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1444", "1", "2015-08-11 07:30:26", "2015-08-11 07:30:26", "", "icon-16", "", "inherit", "closed", "open", "", "icon-16", "", "", "2015-08-11 07:30:26", "2015-08-11 07:30:26", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/icon-16.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1445", "1", "2015-08-11 07:30:28", "2015-08-11 07:30:28", "", "icon-19", "", "inherit", "closed", "open", "", "icon-19", "", "", "2015-08-11 07:30:28", "2015-08-11 07:30:28", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/icon-19.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1446", "1", "2015-08-11 07:30:29", "2015-08-11 07:30:29", "", "icon-22", "", "inherit", "closed", "open", "", "icon-22", "", "", "2015-08-11 07:30:29", "2015-08-11 07:30:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/icon-22.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1447", "1", "2015-08-11 07:30:31", "2015-08-11 07:30:31", "", "icon-25", "", "inherit", "closed", "open", "", "icon-25", "", "", "2015-08-11 07:30:31", "2015-08-11 07:30:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/icon-25.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1449", "1", "2015-08-13 08:00:31", "2015-08-13 08:00:31", "", "client-logos1", "", "inherit", "closed", "open", "", "client-logos1", "", "", "2015-08-13 08:00:31", "2015-08-13 08:00:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos1.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1450", "1", "2015-08-13 08:00:33", "2015-08-13 08:00:33", "", "client-logos2", "", "inherit", "closed", "open", "", "client-logos2", "", "", "2015-08-13 08:00:33", "2015-08-13 08:00:33", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos2.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1451", "1", "2015-08-13 08:00:34", "2015-08-13 08:00:34", "", "client-logos3", "", "inherit", "closed", "open", "", "client-logos3", "", "", "2015-08-13 08:00:34", "2015-08-13 08:00:34", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos3.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1452", "1", "2015-08-13 08:00:36", "2015-08-13 08:00:36", "", "client-logos4", "", "inherit", "closed", "open", "", "client-logos4", "", "", "2015-08-13 08:00:36", "2015-08-13 08:00:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos4.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1453", "1", "2015-08-13 08:00:37", "2015-08-13 08:00:37", "", "client-logos5", "", "inherit", "closed", "open", "", "client-logos5", "", "", "2015-08-13 08:00:37", "2015-08-13 08:00:37", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos5.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1454", "1", "2015-08-13 08:00:38", "2015-08-13 08:00:38", "", "client-logos6", "", "inherit", "closed", "open", "", "client-logos6", "", "", "2015-08-13 08:00:38", "2015-08-13 08:00:38", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos6.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1455", "1", "2015-08-13 08:00:40", "2015-08-13 08:00:40", "", "client-logos7", "", "inherit", "closed", "open", "", "client-logos7", "", "", "2015-08-13 08:00:40", "2015-08-13 08:00:40", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos7.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1456", "1", "2015-08-13 08:00:42", "2015-08-13 08:00:42", "", "client-logos8", "", "inherit", "closed", "open", "", "client-logos8", "", "", "2015-08-13 08:00:42", "2015-08-13 08:00:42", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos8.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1457", "1", "2015-08-13 08:00:44", "2015-08-13 08:00:44", "", "client-logos9", "", "inherit", "closed", "open", "", "client-logos9", "", "", "2015-08-13 08:00:44", "2015-08-13 08:00:44", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/client-logos9.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wpos_posts` VALUES("1459", "1", "2015-08-13 08:06:24", "2015-08-13 08:06:24", "", "peop-img33", "", "inherit", "closed", "open", "", "peop-img33", "", "", "2015-08-13 08:06:24", "2015-08-13 08:06:24", "", "1458", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img33.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1460", "1", "2015-08-13 08:06:25", "2015-08-13 08:06:25", "", "peop-img34", "", "inherit", "closed", "open", "", "peop-img34", "", "", "2015-08-13 08:06:25", "2015-08-13 08:06:25", "", "1458", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img34.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1461", "1", "2015-08-13 08:06:27", "2015-08-13 08:06:27", "", "peop-img35", "", "inherit", "closed", "open", "", "peop-img35", "", "", "2015-08-13 08:06:27", "2015-08-13 08:06:27", "", "1458", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img35.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1462", "1", "2015-08-13 08:06:29", "2015-08-13 08:06:29", "", "peop-img36", "", "inherit", "closed", "open", "", "peop-img36", "", "", "2015-08-13 08:06:29", "2015-08-13 08:06:29", "", "1458", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img36.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1463", "1", "2015-08-13 08:06:31", "2015-08-13 08:06:31", "", "peop-img42", "", "inherit", "closed", "open", "", "peop-img42-2", "", "", "2015-08-13 08:06:31", "2015-08-13 08:06:31", "", "1458", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img42.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1464", "1", "2015-08-13 08:06:37", "2015-08-13 08:06:37", "", "peop-img43", "", "inherit", "closed", "open", "", "peop-img43", "", "", "2015-08-13 08:06:37", "2015-08-13 08:06:37", "", "1458", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img43.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1469", "1", "2015-08-13 08:13:25", "2015-08-13 08:13:25", "", "peop-img41", "", "inherit", "closed", "open", "", "peop-img41-2", "", "", "2015-08-13 08:13:25", "2015-08-13 08:13:25", "", "1468", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img41.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1475", "1", "2015-08-13 09:50:58", "2015-08-13 09:50:58", "", "site-img2", "", "inherit", "closed", "open", "", "site-img2", "", "", "2015-08-13 09:50:58", "2015-08-13 09:50:58", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1477", "1", "2015-08-13 16:21:09", "2015-08-13 16:21:09", "", "people-sm1", "", "inherit", "closed", "open", "", "people-sm1", "", "", "2015-08-13 16:21:09", "2015-08-13 16:21:09", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/people-sm1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1479", "1", "2015-08-14 08:06:37", "2015-08-14 08:06:37", "", "logo", "", "inherit", "closed", "open", "", "logo", "", "", "2015-08-14 08:06:37", "2015-08-14 08:06:37", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1486", "1", "2015-08-15 07:24:12", "2015-08-15 07:24:12", "", "works-img1", "", "inherit", "closed", "open", "", "works-img1", "", "", "2015-08-15 07:24:12", "2015-08-15 07:24:12", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1487", "1", "2015-08-15 07:24:14", "2015-08-15 07:24:14", "", "works-img2", "", "inherit", "closed", "open", "", "works-img2", "", "", "2015-08-15 07:24:14", "2015-08-15 07:24:14", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1488", "1", "2015-08-15 07:24:17", "2015-08-15 07:24:17", "", "works-img3", "", "inherit", "closed", "open", "", "works-img3", "", "", "2015-08-15 07:24:17", "2015-08-15 07:24:17", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1489", "1", "2015-08-15 07:24:19", "2015-08-15 07:24:19", "", "works-img4", "", "inherit", "closed", "open", "", "works-img4", "", "", "2015-08-15 07:24:19", "2015-08-15 07:24:19", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1490", "1", "2015-08-15 07:24:22", "2015-08-15 07:24:22", "", "works-img5", "", "inherit", "closed", "open", "", "works-img5", "", "", "2015-08-15 07:24:22", "2015-08-15 07:24:22", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1491", "1", "2015-08-15 07:24:25", "2015-08-15 07:24:25", "", "works-img6", "", "inherit", "closed", "open", "", "works-img6", "", "", "2015-08-15 07:24:25", "2015-08-15 07:24:25", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1492", "1", "2015-08-15 07:24:27", "2015-08-15 07:24:27", "", "works-img7", "", "inherit", "closed", "open", "", "works-img7", "", "", "2015-08-15 07:24:27", "2015-08-15 07:24:27", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1493", "1", "2015-08-15 07:24:29", "2015-08-15 07:24:29", "", "works-img8", "", "inherit", "closed", "open", "", "works-img8", "", "", "2015-08-15 07:24:29", "2015-08-15 07:24:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1494", "1", "2015-08-15 07:24:31", "2015-08-15 07:24:31", "", "works-img102", "", "inherit", "closed", "open", "", "works-img102", "", "", "2015-08-15 07:24:31", "2015-08-15 07:24:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img102.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1495", "1", "2015-08-15 07:24:34", "2015-08-15 07:24:34", "", "works-img103", "", "inherit", "closed", "open", "", "works-img103", "", "", "2015-08-15 07:24:34", "2015-08-15 07:24:34", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img103.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1496", "1", "2015-08-15 07:24:36", "2015-08-15 07:24:36", "", "works-img104", "", "inherit", "closed", "open", "", "works-img104", "", "", "2015-08-15 07:24:36", "2015-08-15 07:24:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img104.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1497", "1", "2015-08-15 07:24:39", "2015-08-15 07:24:39", "", "works-img105", "", "inherit", "closed", "open", "", "works-img105", "", "", "2015-08-15 07:24:39", "2015-08-15 07:24:39", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img105.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1498", "1", "2015-08-15 07:24:41", "2015-08-15 07:24:41", "", "works-img106", "", "inherit", "closed", "open", "", "works-img106", "", "", "2015-08-15 07:24:41", "2015-08-15 07:24:41", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img106.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1499", "1", "2015-08-15 07:24:44", "2015-08-15 07:24:44", "", "works-img107", "", "inherit", "closed", "open", "", "works-img107", "", "", "2015-08-15 07:24:44", "2015-08-15 07:24:44", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img107.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1500", "1", "2015-08-15 07:24:48", "2015-08-15 07:24:48", "", "works-img108", "", "inherit", "closed", "open", "", "works-img108", "", "", "2015-08-15 07:24:48", "2015-08-15 07:24:48", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img108.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1501", "1", "2015-08-15 07:24:51", "2015-08-15 07:24:51", "", "works-img122", "", "inherit", "closed", "open", "", "works-img122", "", "", "2015-08-15 07:24:51", "2015-08-15 07:24:51", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img122.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1502", "1", "2015-08-15 07:24:54", "2015-08-15 07:24:54", "", "works-img123", "", "inherit", "closed", "open", "", "works-img123", "", "", "2015-08-15 07:24:54", "2015-08-15 07:24:54", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img123.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1503", "1", "2015-08-15 07:24:59", "2015-08-15 07:24:59", "", "works-img124", "", "inherit", "closed", "open", "", "works-img124", "", "", "2015-08-15 07:24:59", "2015-08-15 07:24:59", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img124.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1504", "1", "2015-08-15 07:25:02", "2015-08-15 07:25:02", "", "works-img125", "", "inherit", "closed", "open", "", "works-img125", "", "", "2015-08-15 07:25:02", "2015-08-15 07:25:02", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img125.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1505", "1", "2015-08-15 07:25:04", "2015-08-15 07:25:04", "", "works-img126", "", "inherit", "closed", "open", "", "works-img126", "", "", "2015-08-15 07:25:04", "2015-08-15 07:25:04", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img126.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1506", "1", "2015-08-15 07:25:06", "2015-08-15 07:25:06", "", "works-img127", "", "inherit", "closed", "open", "", "works-img127", "", "", "2015-08-15 07:25:06", "2015-08-15 07:25:06", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img127.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1507", "1", "2015-08-15 07:25:08", "2015-08-15 07:25:08", "", "works-img128", "", "inherit", "closed", "open", "", "works-img128", "", "", "2015-08-15 07:25:08", "2015-08-15 07:25:08", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img128.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1508", "1", "2015-08-15 07:25:11", "2015-08-15 07:25:11", "", "works-img129", "", "inherit", "closed", "open", "", "works-img129", "", "", "2015-08-15 07:25:11", "2015-08-15 07:25:11", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/works-img129.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1510", "1", "2015-08-15 09:47:05", "2015-08-15 09:47:05", "", "works-img101", "", "inherit", "closed", "open", "", "works-img101", "", "", "2015-08-15 09:47:05", "2015-08-15 09:47:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img101.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1511", "1", "2015-08-15 09:47:07", "2015-08-15 09:47:07", "", "works-img112", "", "inherit", "closed", "open", "", "works-img112", "", "", "2015-08-15 09:47:07", "2015-08-15 09:47:07", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img112.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1512", "1", "2015-08-15 09:47:08", "2015-08-15 09:47:08", "", "works-img111", "", "inherit", "closed", "open", "", "works-img111", "", "", "2015-08-15 09:47:08", "2015-08-15 09:47:08", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img111.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1513", "1", "2015-08-15 09:47:10", "2015-08-15 09:47:10", "", "works-img110", "", "inherit", "closed", "open", "", "works-img110", "", "", "2015-08-15 09:47:10", "2015-08-15 09:47:10", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img110.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1514", "1", "2015-08-15 09:47:12", "2015-08-15 09:47:12", "", "works-img109", "", "inherit", "closed", "open", "", "works-img109", "", "", "2015-08-15 09:47:12", "2015-08-15 09:47:12", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img109.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1515", "1", "2015-08-17 02:16:03", "2015-08-17 02:16:03", "", "site-img102", "", "inherit", "closed", "open", "", "site-img102", "", "", "2015-08-17 02:16:03", "2015-08-17 02:16:03", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img102-e1439871689742.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1516", "1", "2015-08-17 02:16:05", "2015-08-17 02:16:05", "", "site-img103", "", "inherit", "closed", "open", "", "site-img103", "", "", "2015-08-17 02:16:05", "2015-08-17 02:16:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img103-e1439871679569.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1517", "1", "2015-08-17 02:16:07", "2015-08-17 02:16:07", "", "site-img104", "", "inherit", "closed", "open", "", "site-img104", "", "", "2015-08-17 02:16:07", "2015-08-17 02:16:07", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img104-e1439871663804.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1518", "1", "2015-08-17 02:18:04", "2015-08-17 02:18:04", "", "11", "", "inherit", "closed", "open", "", "11", "", "", "2015-08-17 02:18:04", "2015-08-17 02:18:04", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1519", "1", "2015-08-17 02:18:06", "2015-08-17 02:18:06", "", "12", "", "inherit", "closed", "open", "", "12", "", "", "2015-08-17 02:18:06", "2015-08-17 02:18:06", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/12.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1520", "1", "2015-08-17 02:18:08", "2015-08-17 02:18:08", "", "13", "", "inherit", "closed", "open", "", "13", "", "", "2015-08-17 02:18:08", "2015-08-17 02:18:08", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/13.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1521", "1", "2015-08-17 02:18:10", "2015-08-17 02:18:10", "", "14", "", "inherit", "closed", "open", "", "14", "", "", "2015-08-17 02:18:10", "2015-08-17 02:18:10", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/14.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1523", "1", "2015-08-17 04:10:10", "2015-08-17 04:10:10", "", "site-img106", "", "inherit", "closed", "open", "", "site-img106", "", "", "2015-08-17 04:10:10", "2015-08-17 04:10:10", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img106-e1439871640495.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1524", "1", "2015-08-17 04:12:12", "2015-08-17 04:12:12", "", "site-img107", "", "inherit", "closed", "open", "", "site-img107", "", "", "2015-08-17 04:12:12", "2015-08-17 04:12:12", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img107-e1439871618439.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1525", "1", "2015-08-17 04:14:02", "2015-08-17 04:14:02", "", "site-img108", "", "inherit", "closed", "open", "", "site-img108", "", "", "2015-08-17 04:14:02", "2015-08-17 04:14:02", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img108-e1439871573850.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1526", "1", "2015-08-17 04:25:36", "2015-08-17 04:25:36", "", "10", "", "inherit", "closed", "open", "", "10", "", "", "2015-08-17 04:25:36", "2015-08-17 04:25:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1527", "1", "2015-08-17 04:25:52", "2015-08-17 04:25:52", "", "11", "", "inherit", "closed", "open", "", "11-2", "", "", "2015-08-17 04:25:52", "2015-08-17 04:25:52", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/11.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1528", "1", "2015-08-17 06:58:31", "2015-08-17 06:58:31", "", "logo-white", "", "inherit", "closed", "open", "", "logo-white", "", "", "2015-08-17 06:58:31", "2015-08-17 06:58:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/logo-white.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1529", "1", "2015-08-17 07:17:05", "2015-08-17 07:17:05", "", "12", "", "inherit", "closed", "open", "", "12-2", "", "", "2015-08-17 07:17:05", "2015-08-17 07:17:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1530", "1", "2015-08-17 08:33:05", "2015-08-17 08:33:05", "", "site-img6", "", "inherit", "closed", "open", "", "site-img6", "", "", "2015-08-17 08:33:05", "2015-08-17 08:33:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img6.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1533", "1", "2015-08-17 09:08:48", "2015-08-17 09:08:48", "", "peop-img53", "", "inherit", "closed", "open", "", "peop-img53", "", "", "2015-08-17 09:08:48", "2015-08-17 09:08:48", "", "1531", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img53.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1534", "1", "2015-08-17 09:08:55", "2015-08-17 09:08:55", "", "peop-img56", "", "inherit", "closed", "open", "", "peop-img56", "", "", "2015-08-17 09:08:55", "2015-08-17 09:08:55", "", "1531", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img56.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1535", "1", "2015-08-17 09:08:57", "2015-08-17 09:08:57", "", "peop-img54", "", "inherit", "closed", "open", "", "peop-img54", "", "", "2015-08-17 09:08:57", "2015-08-17 09:08:57", "", "1531", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img54.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1536", "1", "2015-08-17 09:08:58", "2015-08-17 09:08:58", "", "peop-img55", "", "inherit", "closed", "open", "", "peop-img55", "", "", "2015-08-17 09:08:58", "2015-08-17 09:08:58", "", "1531", "https://mlksolutions.org/wp-content/uploads/2015/08/peop-img55.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1539", "1", "2015-08-17 09:21:29", "2015-08-17 09:21:29", "", "clogo3", "", "inherit", "closed", "open", "", "clogo3", "", "", "2015-08-17 09:21:29", "2015-08-17 09:21:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1540", "1", "2015-08-17 09:21:30", "2015-08-17 09:21:30", "", "clogo1", "", "inherit", "closed", "open", "", "clogo1", "", "", "2015-08-17 09:21:30", "2015-08-17 09:21:30", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1541", "1", "2015-08-17 09:21:31", "2015-08-17 09:21:31", "", "clogo3-1", "", "inherit", "closed", "open", "", "clogo3-1", "", "", "2015-08-17 09:21:31", "2015-08-17 09:21:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo3-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1542", "1", "2015-08-17 09:21:33", "2015-08-17 09:21:33", "", "clogo5-1", "", "inherit", "closed", "open", "", "clogo5-1", "", "", "2015-08-17 09:21:33", "2015-08-17 09:21:33", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo5-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1543", "1", "2015-08-17 09:21:34", "2015-08-17 09:21:34", "", "clogo2", "", "inherit", "closed", "open", "", "clogo2", "", "", "2015-08-17 09:21:34", "2015-08-17 09:21:34", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1544", "1", "2015-08-17 09:21:36", "2015-08-17 09:21:36", "", "clogo5", "", "inherit", "closed", "open", "", "clogo5", "", "", "2015-08-17 09:21:36", "2015-08-17 09:21:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo5.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1545", "1", "2015-08-17 09:21:37", "2015-08-17 09:21:37", "", "clogo2-1", "", "inherit", "closed", "open", "", "clogo2-1", "", "", "2015-08-17 09:21:37", "2015-08-17 09:21:37", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo2-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1546", "1", "2015-08-17 09:21:38", "2015-08-17 09:21:38", "", "clogo1-1", "", "inherit", "closed", "open", "", "clogo1-1", "", "", "2015-08-17 09:21:38", "2015-08-17 09:21:38", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo1-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1547", "1", "2015-08-17 09:21:40", "2015-08-17 09:21:40", "", "clogo4", "", "inherit", "closed", "open", "", "clogo4", "", "", "2015-08-17 09:21:40", "2015-08-17 09:21:40", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/clogo4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1548", "1", "2015-08-18 02:39:02", "2015-08-18 02:39:02", "", "site-img176", "", "inherit", "closed", "open", "", "site-img176", "", "", "2015-08-18 02:39:02", "2015-08-18 02:39:02", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img176-e1439871842652.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1549", "1", "2015-08-18 02:39:03", "2015-08-18 02:39:03", "", "site-img175", "", "inherit", "closed", "open", "", "site-img175", "", "", "2015-08-18 02:39:03", "2015-08-18 02:39:03", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img175-e1439871838225.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1550", "1", "2015-08-18 02:39:05", "2015-08-18 02:39:05", "", "site-img177", "", "inherit", "closed", "open", "", "site-img177", "", "", "2015-08-18 02:39:05", "2015-08-18 02:39:05", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img177-e1439871815498.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1551", "1", "2015-08-18 02:41:32", "2015-08-18 02:41:32", "", "site-img178", "", "inherit", "closed", "open", "", "site-img178", "", "", "2015-08-18 02:41:32", "2015-08-18 02:41:32", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img178-e1439871791145.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1553", "1", "2015-08-18 08:10:29", "2015-08-18 08:10:29", "", "logo-blue", "", "inherit", "closed", "open", "", "logo-blue", "", "", "2015-08-18 08:10:29", "2015-08-18 08:10:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/logo-blue.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1555", "1", "2015-08-18 08:43:12", "2015-08-18 08:43:12", "", "logo-orange", "", "inherit", "closed", "open", "", "logo-orange", "", "", "2015-08-18 08:43:12", "2015-08-18 08:43:12", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/logo-orange.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1558", "1", "2015-08-18 09:23:50", "2015-08-18 09:23:50", "", "site-img19", "", "inherit", "closed", "open", "", "site-img19-2", "", "", "2015-08-18 09:23:50", "2015-08-18 09:23:50", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/site-img19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1559", "1", "2015-08-18 09:23:51", "2015-08-18 09:23:51", "", "site-img20", "", "inherit", "closed", "open", "", "site-img20-2", "", "", "2015-08-18 09:23:51", "2015-08-18 09:23:51", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/site-img20.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1560", "1", "2015-08-18 09:23:53", "2015-08-18 09:23:53", "", "site-img21", "", "inherit", "closed", "open", "", "site-img21-2", "", "", "2015-08-18 09:23:53", "2015-08-18 09:23:53", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/site-img21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1577", "1", "2015-08-19 02:56:24", "2015-08-19 02:56:24", "", "thumb-demo1", "", "inherit", "closed", "open", "", "thumb-demo1", "", "", "2015-08-19 02:56:24", "2015-08-19 02:56:24", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/thumb-demo1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1578", "1", "2015-08-19 02:56:26", "2015-08-19 02:56:26", "", "thumb-demo2", "", "inherit", "closed", "open", "", "thumb-demo2", "", "", "2015-08-19 02:56:26", "2015-08-19 02:56:26", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/thumb-demo2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1579", "1", "2015-08-19 02:56:27", "2015-08-19 02:56:27", "", "thumb-demo3", "", "inherit", "closed", "open", "", "thumb-demo3", "", "", "2015-08-19 02:56:27", "2015-08-19 02:56:27", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/thumb-demo3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1642", "1", "2015-08-20 09:31:35", "2015-08-20 09:31:35", "", "site-img402", "", "inherit", "closed", "closed", "", "site-img402", "", "", "2015-08-20 09:31:35", "2015-08-20 09:31:35", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img402.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1643", "1", "2015-08-20 09:31:36", "2015-08-20 09:31:36", "", "site-img403", "", "inherit", "closed", "closed", "", "site-img403", "", "", "2015-08-20 09:31:36", "2015-08-20 09:31:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img403.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1644", "1", "2015-08-20 09:31:38", "2015-08-20 09:31:38", "", "site-img401", "", "inherit", "closed", "closed", "", "site-img401", "", "", "2015-08-20 09:31:38", "2015-08-20 09:31:38", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img401.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1645", "1", "2015-08-20 09:37:15", "2015-08-20 09:37:15", "", "works-img21", "", "inherit", "closed", "closed", "", "works-img21", "", "", "2015-08-20 09:37:15", "2015-08-20 09:37:15", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1646", "1", "2015-08-20 09:37:18", "2015-08-20 09:37:18", "", "works-img24", "", "inherit", "closed", "closed", "", "works-img24", "", "", "2015-08-20 09:37:18", "2015-08-20 09:37:18", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img24.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1647", "1", "2015-08-20 09:37:20", "2015-08-20 09:37:20", "", "works-img22", "", "inherit", "closed", "closed", "", "works-img22", "", "", "2015-08-20 09:37:20", "2015-08-20 09:37:20", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img22.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1648", "1", "2015-08-20 09:37:21", "2015-08-20 09:37:21", "", "works-img23", "", "inherit", "closed", "closed", "", "works-img23", "", "", "2015-08-20 09:37:21", "2015-08-20 09:37:21", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img23.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1649", "1", "2015-08-20 09:41:18", "2015-08-20 09:41:18", "", "video-bg", "", "inherit", "closed", "closed", "", "video-bg", "", "", "2015-08-20 09:41:18", "2015-08-20 09:41:18", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/video-bg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1653", "1", "2015-08-20 10:26:24", "2015-08-20 10:26:24", "", "21", "", "inherit", "closed", "closed", "", "21", "", "", "2015-08-20 10:26:24", "2015-08-20 10:26:24", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1654", "1", "2015-08-20 10:26:27", "2015-08-20 10:26:27", "", "22", "", "inherit", "closed", "closed", "", "22", "", "", "2015-08-20 10:26:27", "2015-08-20 10:26:27", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/22.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1655", "1", "2015-08-20 10:26:29", "2015-08-20 10:26:29", "", "23", "", "inherit", "closed", "closed", "", "23", "", "", "2015-08-20 10:26:29", "2015-08-20 10:26:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/23.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1675", "1", "2015-08-22 08:28:36", "2015-08-22 08:28:36", "", "site-img6911", "", "inherit", "closed", "closed", "", "site-img6911", "", "", "2015-08-22 08:28:36", "2015-08-22 08:28:36", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/site-img6911.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1676", "1", "2015-08-22 09:00:10", "2015-08-22 09:00:10", "", "works-img1", "", "inherit", "closed", "closed", "", "works-img1-2", "", "", "2015-08-22 09:00:10", "2015-08-22 09:00:10", "", "32", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1677", "1", "2015-08-22 09:00:11", "2015-08-22 09:00:11", "", "works-img2", "", "inherit", "closed", "closed", "", "works-img2-2", "", "", "2015-08-22 09:00:11", "2015-08-22 09:00:11", "", "32", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1680", "1", "2015-08-22 09:00:15", "2015-08-22 09:00:15", "", "works-img9", "", "inherit", "closed", "closed", "", "works-img9", "", "", "2015-08-22 09:00:15", "2015-08-22 09:00:15", "", "32", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1682", "1", "2015-08-22 09:04:41", "2015-08-22 09:04:41", "", "works-img6", "", "inherit", "closed", "closed", "", "works-img6-2", "", "", "2015-08-22 09:04:41", "2015-08-22 09:04:41", "", "481", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1683", "1", "2015-08-22 09:12:33", "2015-08-22 09:12:33", "", "works-img8", "", "inherit", "closed", "closed", "", "works-img8-2", "", "", "2015-08-22 09:12:33", "2015-08-22 09:12:33", "", "577", "https://mlksolutions.org/wp-content/uploads/2015/07/works-img8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1685", "1", "2015-08-22 09:28:09", "2015-08-22 09:28:09", "", "portfolio-img411", "", "inherit", "closed", "closed", "", "portfolio-img411", "", "", "2015-08-22 09:28:09", "2015-08-22 09:28:09", "", "31", "https://mlksolutions.org/wp-content/uploads/2015/07/portfolio-img411.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1686", "1", "2015-08-22 09:29:18", "2015-08-22 09:29:18", "", "portfolio-img511", "", "inherit", "closed", "closed", "", "portfolio-img511", "", "", "2015-08-22 09:29:18", "2015-08-22 09:29:18", "", "411", "https://mlksolutions.org/wp-content/uploads/2015/07/portfolio-img511.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1687", "1", "2015-08-22 09:31:51", "2015-08-22 09:31:51", "", "portfolio-img111", "", "inherit", "closed", "closed", "", "portfolio-img111", "", "", "2015-08-22 09:31:51", "2015-08-22 09:31:51", "", "32", "https://mlksolutions.org/wp-content/uploads/2015/07/portfolio-img111.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1707", "1", "2015-08-24 07:21:54", "2015-08-24 07:21:54", "", "KADOHF81P4", "", "inherit", "closed", "closed", "", "kadohf81p4", "", "", "2015-08-24 07:21:54", "2015-08-24 07:21:54", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/KADOHF81P4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1708", "1", "2015-08-24 07:28:54", "2015-08-24 07:28:54", "", "XC8XH37TX9", "", "inherit", "closed", "closed", "", "xc8xh37tx9", "", "", "2015-08-24 07:28:54", "2015-08-24 07:28:54", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/XC8XH37TX9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1714", "1", "2015-08-24 14:05:58", "2015-08-24 14:05:58", "", "slide-cor11", "", "inherit", "closed", "closed", "", "slide-cor11", "", "", "2015-08-24 14:05:58", "2015-08-24 14:05:58", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/slide-cor11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1771", "1", "2015-08-31 09:31:31", "2015-08-31 09:31:31", "", "entrepreneur-593378_1920", "", "inherit", "closed", "closed", "", "entrepreneur-593378_1920", "", "", "2015-08-31 09:31:31", "2015-08-31 09:31:31", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/entrepreneur-593378_1920.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1778", "1", "2017-03-31 10:52:02", "2017-03-31 10:52:02", "", "Home", "", "publish", "closed", "closed", "", "home-2", "", "", "2017-04-04 15:11:57", "2017-04-04 15:11:57", "", "0", "https://mlksolutions.org/?p=1778", "1", "nav_menu_item", "", "0");
INSERT INTO `wpos_posts` VALUES("9892", "1", "2017-04-04 15:23:58", "2017-04-04 15:23:58", "", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-04 15:23:58", "2017-04-04 15:23:58", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2171", "1", "2017-04-01 16:20:26", "2017-04-01 16:20:26", "[vc_row king_class=\"price_compare\" king_class_container=\"table-wrapper\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBV2ViJTIwSG9zdGluZyUyMFBsYW4lMjBQZXJmZWN0JTIwRm9yJTIwWW91JTIxJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"50px\"][vc_row_inner][vc_column_inner el_class=\"first rowfirst first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"][vc_column_text el_class=\"title\"]\r\n<div class=\"arrow_box\">\r\n<h5>All Shared Hosting Features</h5>\r\n<h3 class=\"caps\">Choose Perfect Plan</h3>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]\r\n<h4 class=\"caps\">Starter</h4>\r\n<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]\r\n<p class=\"span\">best value</p>\r\n\r\n<h4 class=\"caps white\">Business</h4>\r\n<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]\r\n<h4 class=\"caps\">Premium</h4>\r\n<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nNumber of Websites\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n1 Website\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nMultiple Websites\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nMultiple Websites\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Domain Registration\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nWeb Space\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n5,000MB\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nEmail Accounts\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n25\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nMySQL Databases\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree App Store\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\ncPanel Control Panel\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Daily Backups\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nSearch Engine Optimization\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n99.9% Uptime Guarantee\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nBandwidth\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n20GB\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Setup\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n$1.99\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nAdvanced Security Features\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nExtra\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nExtra\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nFree\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nCloud Hosting\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nMarketing Offers &amp; Credits\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n$250\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\n$500\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n24/7/365 Support\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nWebsite Builder\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n1\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n50\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n30 Day Money Back Guarantee\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"first-row\"][vc_column_inner el_class=\"first rowfirst\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"]\r\n[/vc_column_inner][vc_column_inner el_class=\"rowsremain\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section7\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBQWxsJTIwT3VyJTIwcGxhbnMlMjBpbmNsdWRlJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"20px\"][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-globe\"></i>Free\r\ndomain</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-database\"></i>Unlimited\r\nDatabase</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-wordpress\"></i>1-click\r\ninstall apps</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-rocket\"></i>99.9% Uptime\r\nGuarantee</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-coffee\"></i>easy-to-use\r\ncontrol panel</h5>\r\n[/vc_column_text][margin margin_top=\"30px\"][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-building-o\"></i> Free\r\nSiteBuilder</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-lock\"></i> SSL\r\nCertificates</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-paper-plane-o\"></i> Transfer\r\nWebsite &amp; Domain</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-money\"></i> 30 Day\r\nMoney Back</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-headphones\"></i> 24/7/365\r\nPremium Support</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section8\"][vc_column][titles type=\"h2\" text=\"JTNDc3Ryb25nJTNFJTBBd2hhdCUyMG91ciUyMGN1c3RvbWVycyUyMHNheSUwQSUzQyUyRnN0cm9uZyUzRQ==\" class=\"caps white\"][margin margin_top=\"20px\"][testimonials words=\"40\" category=\"partners\" template=\"testimonial/layout-3.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"feature_section9\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBRkFRJTIwLSUyMFlvdXIlMjBxdWVzdGlvbnMlM0YlMjBXZSUyMGdvdCUyMGFuc3dlcnMlMjElMEElM0MlMkZzdHJvbmclM0U=\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_half\" width=\"1/2\"][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>How does Web Hosting work?</strong></h4>\r\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What tools or software can I use to build my website?</strong></h4>\r\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What kind of web hosting plan do I need?</strong></h4>\r\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Purchased a hosting plan, now what do I do?</strong></h4>\r\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"one_half last\" width=\"1/2\"][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What does free domain registration mean?</strong></h4>\r\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>How do I transfer my Web pages to your server?</strong></h4>\r\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Can I host multiple domain names with my hosting account?</strong></h4>\r\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Do you offer a money-back guarantee?</strong></h4>\r\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as web sites still in their infancy their default model text and a search for will uncover many versions have evolved over the years.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"client_logos two\"][vc_column][titles type=\"h3\" text=\"Q3VzdG9tZXIlMjBTaG93Y2FzZQ==\" class=\"caps gray\"][margin margin_top=\"20px\"][vc_column_text]\r\n\r\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Web Hosting Low Cost", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-01 16:20:26", "2017-04-01 16:20:26", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("1782", "1", "2017-03-31 10:52:02", "2017-03-31 10:52:02", "", "Blog", "", "publish", "closed", "closed", "", "blog-2", "", "", "2017-04-04 15:11:57", "2017-04-04 15:11:57", "", "0", "https://mlksolutions.org/?p=1782", "3", "nav_menu_item", "", "0");
INSERT INTO `wpos_posts` VALUES("1783", "1", "2015-08-31 09:31:35", "2015-08-31 09:31:35", "", "life-864367_1920", "", "inherit", "closed", "closed", "", "life-864367_1920", "", "", "2015-08-31 09:31:35", "2015-08-31 09:31:35", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/life-864367_1920.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1784", "1", "2015-08-31 10:27:16", "2015-08-31 10:27:16", "", "PLAJNHNMWK", "", "inherit", "closed", "closed", "", "plajnhnmwk", "", "", "2015-08-31 10:27:16", "2015-08-31 10:27:16", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/08/PLAJNHNMWK.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("1785", "1", "2015-09-01 03:27:02", "2015-09-01 03:27:02", "", "logo-gray", "", "inherit", "closed", "closed", "", "logo-gray", "", "", "2015-09-01 03:27:02", "2015-09-01 03:27:02", "", "0", "https://mlksolutions.org/wp-content/uploads/2015/07/logo-gray.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2176", "1", "2017-04-01 17:21:09", "2017-04-01 17:21:09", "[vc_row][vc_column width=\"1/2\" el_class=\"one_half\"][vc_column_text]Feel free to talk to our online representative at any time you please using our Live Chat system on our website or one of the below instant messaging programs.[/vc_column_text][margin margin_top=\"20px\"][vc_column_text]Please be patient while waiting for response. (24/7 Support!) <strong>Phone General Inquiries: 1-888-123-4567-8900</strong>[/vc_column_text][margin margin_top=\"40px\"][vc_column_text][cf7 slug=\"Contact Form Style 1\" title=\"Contact Form Style 1\"][/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"one_half last\"][vc_column_text el_class=\"address_info\"]\r\n<h4>Company <strong>Address</strong></h4>\r\n<ul>\r\n 	<li><strong>Company Name</strong>\r\n2901 Marmora Road, Glassgow, Seattle, WA 98122-1090\r\nTelephone: +1 1234-567-89000\r\nFAX: +1 0123-4567-8900\r\nE-mail: <a href=\"mailto:mail@companyname.com\">mail@companyname.com</a>\r\nWebsite: <a href=\"index.html\">www.yoursitename.com</a></li>\r\n</ul>\r\n[/vc_column_text][titles type=\"h4\" text=\"RmluZCUyMHRoZSUyMEFkZHJlc3M=\" class=\"caps\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3JjJTNEJTIyaHR0cCUzQSUyRiUyRm1hcHMuZ29vZ2xlLmNvbSUyRm1hcHMlM0ZmJTNEcSUyNmFtcCUzQnNvdXJjZSUzRHNfcSUyNmFtcCUzQmhsJTNEZW4lMjZhbXAlM0JnZW9jb2RlJTNEJTI2YW1wJTNCcSUzRFdBJTJDJTJCVW5pdGVkJTJCU3RhdGVzJTI2YW1wJTNCYXElM0QwJTI2YW1wJTNCb3ElM0RXQSUyNmFtcCUzQnNsbCUzRDQ3LjYwNTI4OCUyQy0xMjIuMzI5Mjk2JTI2YW1wJTNCc3NwbiUzRDAuMDA4OTk5JTJDMC4wMTY1NDQlMjZhbXAlM0JpZSUzRFVURjglMjZhbXAlM0JocSUzRCUyNmFtcCUzQmhuZWFyJTNEV2FzaGluZ3RvbiUyQyUyQkRpc3RyaWN0JTJCb2YlMkJDb2x1bWJpYSUyNmFtcCUzQnQlM0RtJTI2YW1wJTNCeiUzRDclMjZhbXAlM0Jpd2xvYyUzREElMjZhbXAlM0JvdXRwdXQlM0RlbWJlZCUyMiUyMG1hcmdpbndpZHRoJTNEJTIyMCUyMiUyMG1hcmdpbmhlaWdodCUzRCUyMjAlMjIlMjBzY3JvbGxpbmclM0QlMjJubyUyMiUyMGNsYXNzJTNEJTIyZ29vZ2xlLW1hcCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\"][/vc_column][/vc_row]", "Contacto", "", "inherit", "closed", "closed", "", "996-revision-v1", "", "", "2017-04-01 17:21:09", "2017-04-01 17:21:09", "", "996", "https://mlksolutions.org/996-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("67", "1", "2015-07-05 10:22:22", "2015-07-05 10:22:22", "Lorem Ipsum which looks reasonable generated as default model as and search many web sites pass websites is therefore always.", "Alen Devonate", "", "publish", "closed", "closed", "", "alen-devonate", "", "", "2015-07-05 10:22:22", "2015-07-05 10:22:22", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=67", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("73", "1", "2015-07-05 10:23:04", "2015-07-05 10:23:04", "Lorem Ipsum which looks reasonable generated as default model as and search many web sites pass websites is therefore always.", "Karla Alishana", "", "publish", "closed", "closed", "", "karla-alishana", "", "", "2015-07-05 10:23:04", "2015-07-05 10:23:04", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=73", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("74", "1", "2015-07-05 10:23:39", "2015-07-05 10:23:39", "Lorem Ipsum which looks reasonable generated as default model as and search many web sites pass websites is therefore always.", "India Lyndsey", "", "publish", "closed", "closed", "", "india-lyndsey", "", "", "2015-07-05 10:23:39", "2015-07-05 10:23:39", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=74", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("76", "1", "2015-07-05 10:24:06", "2015-07-05 10:24:06", "Lorem Ipsum which looks reasonable generated as default model as and search many web sites pass websites is therefore always.", "Jack Alexa", "", "publish", "closed", "closed", "", "jack-alexa", "", "", "2015-07-05 10:24:06", "2015-07-05 10:24:06", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=76", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("77", "1", "2015-07-05 10:24:35", "2015-07-05 10:24:35", "Lorem Ipsum which looks reasonable generated as default model as and search many web sites pass websites is therefore always.", "John Franklin", "", "publish", "closed", "closed", "", "john-franklin", "", "", "2015-07-05 10:24:35", "2015-07-05 10:24:35", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=77", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("78", "1", "2015-07-05 10:25:27", "2015-07-05 10:25:27", "Lorem Ipsum which looks reasonable generated as default model as and search many web sites pass websites is therefore always.", "Jessica Priston", "", "publish", "closed", "closed", "", "jessica-priston", "", "", "2015-07-05 10:25:27", "2015-07-05 10:25:27", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=78", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1458", "1", "2015-08-13 08:07:56", "2015-08-13 08:07:56", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Eva Keely", "", "publish", "closed", "closed", "", "eva-keely", "", "", "2015-08-13 08:07:56", "2015-08-13 08:07:56", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1458", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1465", "1", "2015-08-13 08:09:06", "2015-08-13 08:09:06", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Gargionay Smith", "", "publish", "closed", "closed", "", "gargionay-smith", "", "", "2015-08-13 08:09:06", "2015-08-13 08:09:06", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1465", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1466", "1", "2015-08-13 08:10:44", "2015-08-13 08:10:44", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Eva Keely", "", "publish", "closed", "closed", "", "eva-keely-2", "", "", "2015-08-13 08:10:44", "2015-08-13 08:10:44", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1466", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1467", "1", "2015-08-13 08:11:35", "2015-08-13 08:11:35", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Gregory Smith", "", "publish", "closed", "closed", "", "gregory-smith", "", "", "2015-08-13 08:11:35", "2015-08-13 08:11:35", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1467", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1468", "1", "2015-08-13 08:13:37", "2015-08-13 08:13:37", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Moody Jonathan", "", "publish", "closed", "closed", "", "moody-jonathan", "", "", "2015-08-13 08:13:37", "2015-08-13 08:13:37", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1468", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1470", "1", "2015-08-13 08:14:19", "2015-08-13 08:14:19", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Felipe Keshawn", "", "publish", "closed", "closed", "", "felipe-keshawn", "", "", "2015-08-13 08:14:19", "2015-08-13 08:14:19", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1470", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1471", "1", "2015-08-13 08:14:55", "2015-08-13 08:14:55", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Ashtyn Hailey", "", "publish", "closed", "closed", "", "ashtyn-hailey", "", "", "2015-08-13 08:14:55", "2015-08-13 08:14:55", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1471", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1472", "1", "2015-08-13 08:15:37", "2015-08-13 08:15:37", "Lorem Ipsum which looks many web sites pass websites is therefore always.", "Mark Anderson", "", "publish", "closed", "closed", "", "mark-anderson", "", "", "2015-08-13 08:15:37", "2015-08-13 08:15:37", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1472", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1531", "1", "2015-08-17 09:08:19", "2015-08-17 09:08:19", "Model and a search for will many web sites still in there versions have the years.", "Alan Joaquin", "", "publish", "closed", "closed", "", "alan-joaquin", "", "", "2015-08-17 09:08:19", "2015-08-17 09:08:19", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1531", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1532", "1", "2015-08-17 09:09:18", "2015-08-17 09:09:18", "Model and a search for will many web sites still in there versions have the years.", "Nica Heriberty", "", "publish", "closed", "closed", "", "nica-heriberty", "", "", "2015-08-17 09:09:18", "2015-08-17 09:09:18", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1532", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("25", "1", "2015-07-05 05:45:29", "2015-07-05 05:45:29", "There are apertures on the lateral surfaces in the middle of the fixing tapes, which can be used to craft new forms. Wow! A special adapter is required.", "Creative Man", "There are apertures on the lateral surfaces...", "publish", "closed", "closed", "", "creative-man", "", "", "2015-07-05 05:45:29", "2015-07-05 05:45:29", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=25", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("30", "1", "2015-07-05 05:46:59", "2015-07-05 05:46:59", "A collection of six corporate business card templates with blue designs and black lettering on white.", "Business Cards", "A collection of six corporate business card...", "publish", "closed", "closed", "", "business-cards", "", "", "2015-07-05 05:46:59", "2015-07-05 05:46:59", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=30", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("31", "1", "2015-07-05 05:48:06", "2015-07-05 05:48:06", "Meeting and calculated just how much money was being wasted as a dozen well-paid professionals zoned out around a deathly boring conference table?", "Business Conference Table", "Meeting and calculated just how much $", "publish", "closed", "closed", "", "business-conference-table", "", "", "2015-07-05 05:48:06", "2015-07-05 05:48:06", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=31", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("32", "1", "2015-07-05 05:49:02", "2015-07-05 05:49:02", "A sample business plan for a coffee shop which can be used to create your own business plan or help you assess the risks and benefits of opening a coffee.\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/works-img6.jpg\"><img class=\"alignnone size-full wp-image-1682\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/works-img6.jpg\" alt=\"works-img6\" width=\"680\" height=\"600\" /></a>\n\n&nbsp;\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/works-img9.jpg\"><img class=\"alignnone size-full wp-image-1680\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/works-img9.jpg\" alt=\"works-img9\" width=\"680\" height=\"600\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/works-img1.jpg\"><img class=\"alignnone size-full wp-image-1676\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/works-img1.jpg\" alt=\"works-img1\" width=\"680\" height=\"600\" /></a>", "Coffee Shop", "A sample business plan for a coffee shop", "publish", "closed", "closed", "", "coffee-shop", "", "", "2015-07-05 05:49:02", "2015-07-05 05:49:02", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=32", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("406", "1", "2015-07-04 13:35:09", "2015-07-04 13:35:09", "Making your world a better place through superior web design &amp; online marketing. Latest Projects. Access Corporation. Lifespan Health Systems", "Rubic Design + Interactive", "Making your world a better place...", "publish", "closed", "closed", "", "rubic-design-interactive", "", "", "2015-07-04 13:35:09", "2015-07-04 13:35:09", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=406", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("411", "1", "2015-07-04 13:37:54", "2015-07-04 13:37:54", "an event that occurs when something passes from one state or phase to .... development - a recent event that has <em>some</em> relevance for the present", "Alteration in Some", "an event that occurs when something...", "publish", "closed", "closed", "", "alteration-in-some", "", "", "2015-07-04 13:37:54", "2015-07-04 13:37:54", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=411", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("481", "1", "2015-07-03 03:50:21", "2015-07-03 03:50:21", "Lorem has been the industry\'s standard dummy text ever. Lorem has been the industry\'s standard dummy text ever. Lorem has been the industry\'s standard dummy text ever. Lorem has been the industry\'s standard dummy text ever. Lorem has been the industry\'s standard dummy text ever. Lorem has been the industry\'s standard dummy text ever.\n\nLorem has been the industry\'s standard dummy text ever. Lorem has been the industry\'s standard dummy text ever.", "Latin Words Fine", "Lorem has been the industry\'s standard dummy text ever.", "publish", "closed", "closed", "", "latin-words-fine", "", "", "2015-07-03 03:50:21", "2015-07-03 03:50:21", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=481", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("577", "1", "2015-07-01 15:25:52", "2015-07-01 15:25:52", "<em>Toshiba\'s</em> external and flash <em>hard drives</em> offer fast transfer speeds and easy storage solutions. See what <em>Toshiba</em> has to offer for your portable data needs!", "Hard Drives and Storage", "Toshiba\'s external and flash hard drives", "publish", "closed", "closed", "", "hard-drives-and-storage", "", "", "2015-07-01 15:25:52", "2015-07-01 15:25:52", "", "0", "http://arkahost.com/?post_type=our-works&amp;p=577", "0", "our-works", "", "0");
INSERT INTO `wpos_posts` VALUES("1189", "1", "2015-07-03 05:01:13", "2015-07-03 05:01:13", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\r\n\r\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\r\n\r\nns1.mlk.pt\r\n\r\nns2.mlk.pt\r\n\r\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Como posso configurar os meus emails?\"][vc_column_text]Pode aceder ao seu email via webmail http://dominio/webmail , ou se preferir configurar o seu cliente de emails favorito onde todos os dados de configuração dos clientes de email, encontram-se na página inicial do webmail ou nas opções do mesmo.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQWxndW5zJTIwY2xpZW50ZXMlMjBkYSUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtaGVhcnQlMjBzaXRlY29sb3IlMjIlM0UlM0MlMkZpJTNFJTIwTUxLJTIwU29sdXRpb25zJTIxJTNDJTJGc3Ryb25nJTNF\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][/vc_column][/vc_row][vc_row][vc_column][vc_gallery type=\"image_grid\" images=\"9873,9867,9866,9865,9864,9863,9862,9861,9860,9859\" onclick=\"custom_link\" custom_links_target=\"_blank\" custom_links=\"#E-8_aHR0cCUzQSUyRiUyRnd3dy5sdWlzZmF1c3Rpbm8uZXUlMkNodHRwJTNBJTJGJTJGd3d3LnN0YXJza2F0cmFuc2xhdGlvbnMuY29tJTJDaHR0cCUzQSUyRiUyRnd3dy5zYW9zb3V0aWxpZGFkZXMuY29tJTJDaHR0cCUzQSUyRiUyRnd3dy5hcGN1cC5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cuc29nZXJhc3VjZXNzby5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cuY29yZXNxYi5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cucHJpdmF0ZWRyaXZlcnMucHQlMkNodHRwJTNBJTJGJTJGd3d3LmR1cGxhZGVzaWduLnB0JTJDaHR0cCUzQSUyRiUyRnd3dy5hcGF0ZWlyYS5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cuc2t5Zml0bmVzcy5wdA==\"][/vc_column][/vc_row]", "Home", "", "publish", "closed", "open", "", "home", "", "", "2017-04-05 11:19:06", "2017-04-05 11:19:06", "", "0", "http://arkahost.com/?page_id=2", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("9880", "1", "2017-04-04 14:23:36", "2017-04-04 14:23:36", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Como posso configurar os meus emails?\"][vc_column_text]Pode aceder ao seu email via webmail http://dominio/webmail , ou se preferir configurar o seu cliente de emails favorito onde todos os dados de configuração dos clientes de email, encontram-se na página inicial do webmail ou nas opções do mesmo.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQWxndW5zJTIwY2xpZW50ZXMlMjBkYSUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtaGVhcnQlMjBzaXRlY29sb3IlMjIlM0UlM0MlMkZpJTNFJTIwTUxLJTIwU29sdXRpb25zJTIxJTNDJTJGc3Ryb25nJTNF\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][/vc_column][/vc_row][vc_row][vc_column][team items=\"20\" words=\"20\" category=\"company\" template=\"team/layout-5-flip.php\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 14:23:36", "2017-04-04 14:23:36", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9879", "1", "2017-04-04 14:18:10", "2017-04-04 14:18:10", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Como posso configurar os meus emails?\"][vc_column_text]Pode aceder ao seu email via webmail http://dominio/webmail , ou se preferir configurar o seu cliente de emails favorito onde todos os dados de configuração dos clientes de email, encontram-se na página inicial do webmail ou nas opções do mesmo.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQWxndW5zJTIwY2xpZW50ZXMlMjBkYSUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtaGVhcnQlMjBzaXRlY29sb3IlMjIlM0UlM0MlMkZpJTNFJTIwTUxLJTIwU29sdXRpb25zJTIxJTNDJTJGc3Ryb25nJTNF\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][testimonials words=\"20\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 14:18:10", "2017-04-04 14:18:10", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9855", "1", "2017-04-04 11:20:07", "2017-04-04 11:20:07", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 11:20:07", "2017-04-04 11:20:07", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9853", "1", "2017-04-04 11:15:31", "2017-04-04 11:15:31", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"TGF0ZXN0JTIwTmV3cyUyMCUyRiUyMEJsb2dz\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"SGF2ZSUyMFF1ZXN0aW9ucyUzRg==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 11:15:31", "2017-04-04 11:15:31", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2190", "1", "2017-04-02 00:11:42", "2017-04-02 00:11:42", "", "tumblr_inline_obubanQs6O1ut90hm_1280", "", "inherit", "open", "closed", "", "tumblr_inline_obubanqs6o1ut90hm_1280", "", "", "2017-04-02 00:11:42", "2017-04-02 00:11:42", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/tumblr_inline_obubanQs6O1ut90hm_1280.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("2191", "1", "2017-04-02 00:17:04", "2017-04-02 00:17:04", "", "cPanel-logo (1)", "", "inherit", "open", "closed", "", "cpanel-logo-1", "", "", "2017-04-02 00:17:04", "2017-04-02 00:17:04", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/cPanel-logo-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2192", "1", "2017-04-02 00:19:24", "2017-04-02 00:19:24", "", "solutions-server", "", "inherit", "open", "closed", "", "solutions-server", "", "", "2017-04-02 00:19:24", "2017-04-02 00:19:24", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/solutions-server.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2193", "1", "2017-04-02 00:35:29", "2017-04-02 00:35:29", "", "softaculous", "", "inherit", "open", "closed", "", "softaculous", "", "", "2017-04-02 00:35:29", "2017-04-02 00:35:29", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/softaculous.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2194", "1", "2017-04-02 00:36:03", "2017-04-02 00:36:03", "", "softaculous (1)", "", "inherit", "open", "closed", "", "softaculous-1", "", "", "2017-04-02 00:36:03", "2017-04-02 00:36:03", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/softaculous-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2195", "1", "2017-04-02 01:00:03", "2017-04-02 01:00:03", "", "logo MLK_final-06", "", "inherit", "open", "closed", "", "logo-mlk_final-06", "", "", "2017-04-02 01:00:03", "2017-04-02 01:00:03", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/logo-MLK_final-06.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2197", "1", "2017-04-02 01:07:42", "2017-04-02 01:07:42", "", "logo MLK_final-09", "", "inherit", "open", "closed", "", "logo-mlk_final-09-2", "", "", "2017-04-02 01:07:42", "2017-04-02 01:07:42", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/logo-MLK_final-09.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1537", "1", "2015-08-17 09:09:49", "2015-08-17 09:09:49", "Model and a search for will many web sites still in there versions have the years.", "Alana Desired", "", "publish", "closed", "closed", "", "alana-desired", "", "", "2015-08-17 09:09:49", "2015-08-17 09:09:49", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1537", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("1538", "1", "2015-08-17 09:10:19", "2015-08-17 09:10:19", "Model and a search for will many web sites still in there versions have the years.", "Kiley Felicity", "", "publish", "closed", "closed", "", "kiley-felicity", "", "", "2015-08-17 09:10:19", "2015-08-17 09:10:19", "", "0", "http://arkahost.com/?post_type=our-team&amp;p=1538", "0", "our-team", "", "0");
INSERT INTO `wpos_posts` VALUES("517", "1", "2015-07-18 03:53:10", "2015-07-18 03:53:10", "", "Blog", "", "publish", "closed", "open", "", "blog", "", "", "2015-07-18 03:53:10", "2015-07-18 03:53:10", "", "0", "http://arkahost.com/?page_id=517", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("996", "1", "2015-07-22 16:37:34", "2015-07-22 16:37:34", "[vc_row][vc_column width=\"1/2\" el_class=\"one_half\"][margin margin_top=\"20px\"][vc_column_text]Será dada uma resposta à sua mensagem até 1h após o seu envio, para assuntos técnicos , agradecemos que use na sua área de cliente o sistema de tickets de suporte.[/vc_column_text][margin margin_top=\"40px\"][vc_column_text][cf7 slug=\"Contact Form Style 1\" title=\"Contact Form Style 1\"][/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"one_half last\"][vc_column_text el_class=\"address_info\"]\n<h4>Morada</h4>\n<ul>\n 	<li><strong>MLK Solutions</strong>\nAvenida Afonso Costa Nº47 ,4º Drt, 2745-232 Queluz\nTelephone: +351 96 6036440\nE-mail: <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>\nWebsite: <a href=\"http://www.mlk.pt\">www.mlk.pt</a></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row]", "Contacto", "", "publish", "closed", "open", "", "contacto", "", "", "2017-04-05 09:57:31", "2017-04-05 09:57:31", "", "0", "http://arkahost.com/?page_id=996", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("9900", "1", "2017-04-05 09:56:49", "2017-04-05 09:56:49", "[vc_row][vc_column width=\"1/2\" el_class=\"one_half\"][margin margin_top=\"20px\"][vc_column_text]Será dada uma resposta à sua mensagem até 1h após o seu envio, para assuntos técnicos , agradecemos que use na sua área de cliente o sistema de tickets de suporte.[/vc_column_text][margin margin_top=\"40px\"][vc_column_text][cf7 slug=\"Contact Form Style 1\" title=\"Contact Form Style 1\"][/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"one_half last\"][vc_column_text el_class=\"address_info\"]\n<h4>Morada</h4>\n<ul>\n 	<li><strong>MLK Solutions</strong>\nAvenida Afonso Costa Nº47 ,4º Drt, 2745-232 Queluz\nTelephone: +351 96 6036440\nE-mail: <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>\nWebsite: <a href=\"http://www.mlk.pt\">www.mlk.pt</a></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row]", "Contacto", "", "inherit", "closed", "closed", "", "996-revision-v1", "", "", "2017-04-05 09:56:49", "2017-04-05 09:56:49", "", "996", "https://mlksolutions.org/996-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("1103", "1", "2015-07-24 10:43:03", "2015-07-24 10:43:03", "[vc_row][vc_column el_class=\"st-accordion-four\"][titles type=\"h2\" text=\"RnJlcXVlbnRseSUyMEFza2VkJTIwUXVlc3Rpb25z\"][vc_toggle title=\"Responsive HTML5 &amp; CSS3 Theme with 30 Diffrent Demos\" color=\"green\" open=\"true\"]There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks. Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into. Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into.[/vc_toggle][vc_toggle title=\"Well Commented and Structured Code\" color=\"green\"]Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into. Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into.[/vc_toggle][vc_toggle title=\"Awesome Different Styles of Slideshows\" color=\"green\"]There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks.[/vc_toggle][vc_toggle title=\"Custom BG Patterns, Unlimited Colors and Shortcodes\" color=\"green\"]There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks. There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks.[/vc_toggle][vc_toggle title=\"Designed for Law and Business Websites with Mega Menu\" color=\"green\"]It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions.[/vc_toggle][vc_toggle title=\"Cross Browser Support and Layered PSD Files\" color=\"green\"]Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose.[/vc_toggle][vc_toggle title=\"Get Much More...\" color=\"green\"]If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words.[/vc_toggle][/vc_column][/vc_row]", "FAQs", "", "publish", "closed", "open", "", "faqs", "", "", "2017-04-04 10:23:46", "2017-04-04 10:23:46", "", "0", "http://arkahost.com/?page_id=1103", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("2098", "1", "2017-03-31 16:55:43", "2017-03-31 16:55:43", "", "logo MLK_final-09", "", "inherit", "open", "closed", "", "logo-mlk_final-09", "", "", "2017-03-31 16:55:43", "2017-03-31 16:55:43", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/03/logo-MLK_final-09.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("1571", "1", "2015-08-19 02:39:26", "2015-08-19 02:39:26", "[vc_row][vc_column][vc_column_text]<img class=\" wp-image-2203 aligncenter\" src=\"https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02-300x134.png\" alt=\"\" width=\"457\" height=\"211\" />\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1491321357568{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\r\n\r\nSim!!! É grátis !!! Apenas tem de colocar o logótipo da MLK Care na página principal do seu site (onde quiser) com link para http://mlk.pt , enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\r\n\r\nAguardo por um contacto seu.\r\n\r\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "publish", "closed", "open", "", "mlkcare", "", "", "2017-04-09 01:54:42", "2017-04-09 01:54:42", "", "0", "http://arkahost.com/?page_id=1571", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("9893", "1", "2017-04-04 15:40:15", "2017-04-04 15:40:15", "[vc_row][vc_column][vc_single_image image=\"2203\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeIn\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\n\nSim!!! É grátis !!! Apenas tem de colocar o logótipo  da MLK Care na página principal do seu site (onde quiser), enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\n\nAguardo por um contacto seu.\n\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1491319842592{margin-top: 0px !important;margin-right: 250px !important;margin-bottom: 0px !important;margin-left: 250px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-04 15:40:15", "2017-04-04 15:40:15", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9894", "1", "2017-04-04 15:42:34", "2017-04-04 15:42:34", "[vc_row][vc_column][vc_single_image image=\"2203\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeIn\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\n\nSim!!! É grátis !!! Apenas tem de colocar o logótipo da MLK Care na página principal do seu site (onde quiser) com link para http://mlk.pt , enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\n\nAguardo por um contacto seu.\n\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1491319842592{margin-top: 0px !important;margin-right: 250px !important;margin-bottom: 0px !important;margin-left: 250px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-04 15:42:34", "2017-04-04 15:42:34", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9895", "1", "2017-04-04 15:46:28", "2017-04-04 15:46:28", "", "MLK CARE", "", "inherit", "closed", "closed", "", "1631-autosave-v1", "", "", "2017-04-04 15:46:28", "2017-04-04 15:46:28", "", "1631", "https://mlksolutions.org/1631-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9896", "1", "2017-04-04 15:54:28", "2017-04-04 15:54:28", "<img class=\" wp-image-2203 aligncenter\" src=\"https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02-300x134.png\" alt=\"\" width=\"606\" height=\"276\" />\r\n[vc_row][vc_column css=\".vc_custom_1491319842592{margin-top: 0px !important;margin-right: 250px !important;margin-bottom: 0px !important;margin-left: 250px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\r\n\r\nSim!!! É grátis !!! Apenas tem de colocar o logótipo da MLK Care na página principal do seu site (onde quiser) com link para http://mlk.pt , enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\r\n\r\nAguardo por um contacto seu.\r\n\r\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-04 15:54:28", "2017-04-04 15:54:28", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9897", "1", "2017-04-04 15:56:38", "2017-04-04 15:56:38", "[vc_row][vc_column][vc_column_text]<img class=\" wp-image-2203 aligncenter\" src=\"https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02-300x134.png\" alt=\"\" width=\"606\" height=\"276\" />\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1491321357568{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\n\nSim!!! É grátis !!! Apenas tem de colocar o logótipo da MLK Care na página principal do seu site (onde quiser) com link para http://mlk.pt , enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\n\nAguardo por um contacto seu.\n\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-04 15:56:38", "2017-04-04 15:56:38", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("1572", "1", "2015-08-19 02:39:55", "2015-08-19 02:39:55", "[pum]", "Estado dos Servidores", "", "publish", "closed", "open", "", "uptime", "", "", "2017-04-04 16:04:35", "2017-04-04 16:04:35", "", "0", "http://arkahost.com/?page_id=1572", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("9905", "1", "2017-05-22 15:32:13", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "closed", "closed", "", "", "", "", "2017-05-22 15:32:13", "0000-00-00 00:00:00", "", "0", "https://mlksolutions.org/?p=9905", "0", "post", "", "0");
INSERT INTO `wpos_posts` VALUES("9902", "1", "2017-04-05 11:12:53", "2017-04-05 11:12:53", "[vc_row][vc_column][vc_column_text]<img class=\" wp-image-2203 aligncenter\" src=\"https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02-300x134.png\" alt=\"\" width=\"457\" height=\"211\" />\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1491321357568{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\r\n\r\nSim!!! É grátis !!! Apenas tem de colocar o logótipo da MLK Care na página principal do seu site (onde quiser) com link para http://mlk.pt , enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\r\n\r\nAguardo por um contacto seu.\r\n\r\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-05 11:12:53", "2017-04-05 11:12:53", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("128", "1", "2015-07-05 15:10:32", "2015-07-05 15:10:32", "", "DIAMOND", "", "publish", "closed", "closed", "", "diamond", "", "", "2017-04-04 10:57:19", "2017-04-04 10:57:19", "", "0", "http://king-theme.com/preview/aloom/?post_type=pricing-tables&#038;p=128", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("129", "1", "2015-07-05 15:11:15", "2015-07-05 15:11:15", "", "GOLD", "", "publish", "closed", "closed", "", "gold", "", "", "2017-04-04 10:55:43", "2017-04-04 10:55:43", "", "0", "http://king-theme.com/preview/aloom/?post_type=pricing-tables&#038;p=129", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("130", "1", "2015-07-05 15:12:06", "2015-07-05 15:12:06", "", "SILVER", "", "publish", "closed", "closed", "", "silver", "", "", "2017-04-05 20:12:38", "2017-04-05 20:12:38", "", "0", "http://king-theme.com/preview/aloom/?post_type=pricing-tables&#038;p=130", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1628", "1", "2015-08-20 04:28:57", "2015-08-20 04:28:57", "", "Advanced", "", "publish", "closed", "closed", "", "advanced", "", "", "2015-08-20 04:28:57", "2015-08-20 04:28:57", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1628", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1629", "1", "2015-08-20 04:35:09", "2015-08-20 04:35:09", "", "Professional", "", "publish", "closed", "closed", "", "professional", "", "", "2015-08-20 04:35:09", "2015-08-20 04:35:09", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1629", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1630", "1", "2015-08-20 04:36:33", "2015-08-20 04:36:33", "", "Standard", "", "publish", "closed", "closed", "", "standard-2", "", "", "2015-08-20 04:36:33", "2015-08-20 04:36:33", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1630", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1631", "1", "2015-08-20 04:37:07", "2015-08-20 04:37:07", "", "MLK CARE", "", "publish", "closed", "closed", "", "1631", "", "", "2017-04-25 10:25:53", "2017-04-25 10:25:53", "", "0", "http://arkahost.com/?post_type=pricing-tables&#038;p=1631", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1633", "1", "2015-08-20 07:27:29", "2015-08-20 07:27:29", "", "Ultimate", "", "publish", "closed", "closed", "", "ultimate", "", "", "2015-08-20 07:27:29", "2015-08-20 07:27:29", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1633", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1634", "1", "2015-08-20 07:28:20", "2015-08-20 07:28:20", "", "Professional", "", "publish", "closed", "closed", "", "professional-2", "", "", "2015-08-20 07:28:20", "2015-08-20 07:28:20", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1634", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1635", "1", "2015-08-20 07:29:08", "2015-08-20 07:29:08", "", "Standard", "", "publish", "closed", "closed", "", "standard-3", "", "", "2015-08-20 07:29:08", "2015-08-20 07:29:08", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1635", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("1636", "1", "2015-08-20 07:30:07", "2015-08-20 07:30:07", "", "Economy", "", "publish", "closed", "closed", "", "economy", "", "", "2015-08-20 07:30:07", "2015-08-20 07:30:07", "", "0", "http://arkahost.com/?post_type=pricing-tables&amp;p=1636", "0", "pricing-tables", "", "0");
INSERT INTO `wpos_posts` VALUES("4", "1", "2015-09-03 04:00:00", "2015-09-03 04:00:00", "<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>\n[your-subject]\n[your-name] <wordpress@dev>\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 Aaika Theme (http://arkahost.com)\nabc@abc.com\nReply-To: [your-email]\n\n0\n0\n\n[your-subject]\nAaika Theme <wordpress@dev>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Aaika Theme (http://arkahost.com)\n[your-email]\nReply-To: abc@abc.com\n\n0\n0\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.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1", "", "", "2015-09-03 04:00:00", "2015-09-03 04:00:00", "", "0", "http://arkahost.com/?post_type=wpcf7_contact_form&amp;p=4", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("21", "1", "2015-07-04 09:00:20", "2015-07-04 09:00:20", "<div class=\"cforms\">	\n	\n	<div class=\"one_half\">\n	    <label class=\"label\">Name <em>*</em></label><label class=\"input\">[text* name]</label>\n	</div>\n	\n	<div class=\"one_half last\">\n	    <label class=\"label\">E-mail <em>*</em></label><label class=\"input\">[email* email]</label>\n	</div>\n	\n	<div class=\"clearfix\"></div>\n	\n	<div class=\"one_half\">\n	    <label class=\"label\">Phone</label><label class=\"input\">[text phone]</label>\n	</div>\n	        		\n	<div class=\"one_half last\">\n	<label class=\"label\">Subject <em>*</em></label><label class=\"input\">[text* subject]</label>\n	</div>\n	\n	<div class=\"clearfix\"></div>\n	\n	<label class=\"label\">Message <em>*</em></label>\n	<label class=\"textarea\">[textarea* message x4]</label>\n	\n	<div class=\"clearfix\"></div>\n	[submit class:button \"Send Message\"]\n	\n</div>\n[your-subject]\n[your-name] <wordpress@arkahost.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 Aloom (http://arkahost.com)\nabc@abc.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAloom <wordpress@arkahost.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Aloom (http://arkahost.com)\n[your-email]\nReply-To: abc@abc.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 Form 1", "", "publish", "closed", "open", "", "contact-form-1-2", "", "", "2015-07-04 09:00:20", "2015-07-04 09:00:20", "", "0", "http://arkahost.com/?post_type=wpcf7_contact_form&amp;p=21", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("998", "1", "2015-07-22 16:40:21", "2015-07-22 16:40:21", "<div class=\"cforms\">\r\n	<label class=\"label\">Nome <em>*</em></label><label class=\"input\">[text* your-name]</label><div class=\"clearfix\"></div>\r\n	<label class=\"label\">E-mail <em>*</em></label><label class=\"input\">[email* your-email]</label><div class=\"clearfix\"></div>\r\n	<label class=\"label\">Assunto <em>*</em></label><label class=\"input\">[text your-subject]</label><div class=\"clearfix\"></div>\r\n	<label class=\"label\">Mensagem <em>*</em></label><label class=\"textarea\">[textarea your-message 40x5]</label><div class=\"clearfix\"></div>\r\n	[submit class:button \"Enviar Mensagem\"]        \r\n</div>\nar@mlk.pt\nWebsite MLK\nsite@mlksolutions.org\n[your-email]\r\n[your-message]\n\n\n\n\n\n\n\n\n\n\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 Form Style 1", "", "publish", "closed", "open", "", "contact-form-style-1", "", "", "2017-04-05 11:10:03", "2017-04-05 11:10:03", "", "0", "http://arkahost.com/?post_type=wpcf7_contact_form&#038;p=998", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("2103", "1", "2017-04-01 00:35:24", "2017-04-01 00:35:24", "<strong><u>Condições de Serviço</u></strong>\r\n\r\n&nbsp;\r\n\r\n<em>A MLK Solutions encontra-se representada nas finanças pelo contribuinte António Paulo Cunha Costa Raimundo – NIF230675999 e registado com o </em><em><strong>CAE</strong></em><em>:</em> <em><strong>63110</strong></em> <em>- ACTIVIDADES DE PROCESSAMENTO DE DADOS, DOMICILIAÇÃO DE INFORMAÇÃO E ACTIVIDADES RELACIONADAS</em><em>.</em>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“A MLK Solutions proíbe alguns ficheiros nos alojamentos partilhados (alojamento web, revenda e webdrive), entre os quais destacamos: MP3, Imagens e Vídeos protegidos por copyright, Exploits, Torrents, Trackers, Cracks, Warez, Nukes, Flooders e qualquer outro tipo de ficheiro que não esteja em conformidade com a lei ou possa prejudicar o bom funcionamento dos servidores.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions proíbe alguns programas nos servidores, entre os quais destacamos: Port Scanners, Exploits Scanners, Nukes, Flooders, Servidores de Jogos (excluindo em servidor dedicado), Servidores de Socks, ficheiros pesados para download e qualquer outro tipo de programa que possa prejudicar o bom funcionamento dos servidores.</li>\r\n 	<li>A existência de links para os programas/ficheiros acima descritos, ou que possam ser enquadrados na generalidade da descrição, também serão considerados ilegais perante as condições de serviço aqui mencionadas.</li>\r\n 	<li>Exceto quando devidamente indicado, os serviços de alojamento prestados pela MLK Solutions servem para a publicação de páginas, recurso a bases de dados e sistemas de email. Não se encontra contemplado nos nossos serviços a utilização de contas de alojamento para streaming de áudio, vídeo ou repositório de ficheiros (vulgo backup).</li>\r\n 	<li>É proibida a utilização massiva de recursos no servidor. Caso se verifique que um cliente se encontra a absorver todos os recursos A MLK Solutions poderá tomar medidas para que tal não aconteça.</li>\r\n 	<li>Não é permitido o alojamento de conteúdo adulto, seja ela sob a forma de fotografias ou vídeos. A determinação final do que constitui “conteúdo adulto” fica a cargo da MLK Solutions.</li>\r\n 	<li>Não é permitido colocar no servidor ficheiros que contenham conteúdos punidos pelas leis do país onde os servidores se encontram (EUA e/ou Portugal).</li>\r\n 	<li>Realizar ataques (nomeadamente de DDoS) ou scans a partir da MLK Solutions é proibido. Caso aconteça, a conta será terminada sem aviso prévio.</li>\r\n 	<li>A utilização de forma abusiva e/ou com diferentes propósitos dos explícitos/óbvios referentes ao tipo de conta adquirida não é aceitável.</li>\r\n 	<li>As contas de alojamento são destinadas ao cliente que a subscreveu. Nenhum cliente pode subalugar ou subalugar, ou seja, não pode alugar, alojar ou revender serviços a terceiros, excluindo contas existentes para esse efeito.</li>\r\n 	<li>A MLK Solutions apenas presta serviço de suporte ao cliente que comprou o serviço e nunca a terceiros.</li>\r\n 	<li>Utilizar as contas de e-mail ou o alojamento para o envio de Spam é proibido. Caso a sua conta esteja envolvida em atividades de spam a MLK Solutions reserva-se no direito de cancelar a mesma, sem qualquer reembolso.</li>\r\n 	<li>O cliente que adquiriu a conta à MLK Solutions é responsável pelo que acontece dentro da mesma, mesmo que problemas relativos à mesma tenham sido obra de terceiros.</li>\r\n 	<li>O cliente é responsável pelos conteúdos da sua conta e deverá efectuar cópias de segurança. A MLK Solutions não se responsabiliza caso ocorram problemas com os mesmos.</li>\r\n 	<li>Às regras da MLK Solutions acrescem as regras dos serviços de terceiros que interajam com as contas dos utilizadores da MLK Solutions, tais como os Servidores de IRC, Motores de busca, etc. Caso essas regras não sejam cumpridas a MLK Solutions reserva-se ao direito de tomar as medidas necessárias para que tal aconteça.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de recusar a abertura de contas sem que para tal necessite de justificá-lo.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de alterar estas condições sempre que achar necessário sem qualquer aviso prévio.\r\nSe for detetada qualquer uma destas situações, a MLK Solutions reserva-se no direito de suspender/cancelar a conta sem aviso prévio.”</li>\r\n 	<li>A MLK Solutions não presta apoio informático na configuração dos clientes de emails e na restante configuração do serviço e utilização dos programas contidos no mesmo, sendo esta utilização e configuração da responsabilidade do cliente.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Contas MLK CARE</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Estas contas são para uso exclusivo de entidades, associações ou instituições de cariz solidário e de interesse público sem qualquer interesse ou vantagem financeira em geral.</li>\r\n 	<li>A criação destas contas exige a um escrutínio por parte da MLK Solutions, de forma a averiguar os requisitos para a atribuição do serviço.</li>\r\n 	<li>Todas as entidades ao abrigo deste protocolo solidário, têm de obrigatoriamente colocar uma imagem de destaque da MLK Care na página inicial do seu site, com link para <a href=\"http://www.mlk.pt\">http://www.mlk.pt</a> e de tamanho nunca inferior a 50px/70px |___| .</li>\r\n 	<li>O pedido destas contas de web hosting tem de ser obrigatoriamente feito via email , através do endereço <a href=\"mailto:mlkcare@mlk.pt\">mlkcare@mlk.pt</a>.</li>\r\n 	<li>O suporte técnico destas contas, limita-se na sua essência ao bom funcionamento do serviço e nunca à configuração do mesmo, nem a outros programas contidos no serviço.</li>\r\n 	<li>A MLK Solutions não se responsabiliza por qualquer falha no serviço, sendo que o serviço deve estar preparado para eventuais falhas de acesso e mesmo de remoção de ficheiros, pelo que aconselhamos a que seja feito um backup diário.</li>\r\n 	<li>Por ser um serviço oferecido, a MLK Solutions não tem de indemnizar por quais quer danos que o serviço possa causar ao funcionamento da entidade .</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Suspensões e Cancelamentos</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n<ul>\r\n 	<li>Os pagamentos devem ser efetuados até ao próprio dia que a conta expira. Após 15 dias sem pagamento, a conta de alojamento será suspensa. 30 dias após a data de pagamento, a conta será apagada.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions não se responsabiliza pela não entrega de e-mails a notificar a data de pagamento. Tal facto não serve como argumento válido para o não pagamento na data devida. O cliente deverá manter-se informado sobre a data de pagamento na sua zona de cliente.</li>\r\n 	<li>Expirada a data de renovação, a responsabilidade sobre a salvaguarda dos conteúdos recai sobre o cliente, não podendo ser imputada à MLK Solutions.</li>\r\n 	<li>Os comprovativos de pagamento são remetidos em formato digital (PDF) , emitidos os recibos no portal das finanças.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de alterar os preços de qualquer um dos seus serviços a qualquer altura, tendo em conta que deverá também notificar todos os seus clientes das alterações do(s) preço(s) com quinze (15) dias de antecedência.</li>\r\n 	<li>A MLK Solutions reserva-se ao direito de fazer os upgrades e downgrades que ache necessário para adaptar os serviços obtidos dos clientes aos pacotes existentes em venda.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions reserva-se no direito de suspender e/ou cancelar o serviço a clientes em qualquer altura, com base nas condições acima descritas.</li>\r\n 	<li>Se tal cancelamento for devido a violação por parte do cliente de alguma das condições descritas neste documento, não será devido qualquer reembolso.</li>\r\n 	<li>Os clientes podem cancelar o serviço em qualquer altura. Tal não obriga a MLK Solutions a qualquer reembolso.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Acordo de Nível de Serviço</strong>\r\n\r\n&nbsp;\r\n\r\nEste Contrato de Nível de Serviço MLK Solutions (\"SLA\") se aplica a todos os clientes compartilhados e dedicados. O Cliente concorda que as medições por meio de terceiros estabelecem a elegibilidade para qualquer Crédito de Desempenho aplicável. Caso o Cliente determine que existe uma discrepância nessa mensuração, o Cliente deverá notificar prontamente MLK Solutions e MLK Solutions e o Cliente concordará mutuamente sobre a validade e exatidão da medição e sobre a elegibilidade do Cliente para quaisquer Créditos de Desempenho aplicáveis\r\n\r\n&nbsp;\r\n\r\nEste SLA pode ser alterado a qualquer momento por MLK Solutions.\r\n\r\n&nbsp;\r\n\r\nA Rede MLK Solutions é definida como o equipamento, software e instalações dentro do segmento de rede MLK Solutions, incluindo os serviços ISP contratados da MLK Solutions aos quais o segmento de rede MLK Solutions está conectado e utilizado coletivamente pela MLK Solutions para fornecer serviços dedicados e Serviços de co-localização\r\n\r\n&nbsp;\r\n\r\nDisponibilidade de serviço é o tempo total em um mês de calendário que o MLK Solutions está disponível através da Internet, desde que o cliente tenha estabelecido conectividade. A MLK Solutions assume a responsabilidade pela Disponibilidade do Serviço no seu segmento de rede imediato e não pode ser responsabilizada por problemas diretamente relacionados com um fornecedor de largura de banda a montante. A rede MLK Solutions estará disponível para clientes livres de interrupções de rede por 99% do tempo\r\n\r\n&nbsp;\r\n\r\nO Tempo de Inatividade do Serviço é qualquer interrupção não planejada na Disponibilidade do Serviço durante a qual o Cliente é incapaz de aceder os serviços como descrito na seção anterior, desde que a interrupção seja determinada por ter sido causada por um problema no segmento de rede MLK Solutions imediato como confirmado pela MLK Solutions. Com o tempo de inatividade do serviço é medido como o tempo total de interrupção não planejada na disponibilidade do serviço durante um mês de calendário. MLK Solutions não é responsável por quaisquer interrupções não planejadas devido a falhas de software de terceiros são de responsabilidade direta do editor do software e não de MLK Solutions\r\n\r\n&nbsp;\r\n\r\nO tempo de inatividade de serviço programado é qualquer interrupção de MLK Solutions de serviços de hospedagem. O tempo de inatividade de serviço programado ocorre durante uma janela de manutenção do servidor MLK Solutions, que ocorre em conjunto com uma notificação de 12 horas ao cliente por meio de comunicação eletrônica.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nExclusões de serviços\r\n\r\n&nbsp;\r\n\r\nEste SLA não cobre o tempo de inatividade do serviço causado por problemas no seguinte:\r\n\r\n&nbsp;\r\n\r\n* Rede de área local do cliente\r\n\r\n* Conectividade à Internet ou software de utilizador final fornecido pelo cliente\r\n\r\n* Entidades dentro da rede interna do cliente, incluindo, mas não se limitando a, configuração de firewall e modelagem de largura de banda, estações de trabalho de área local ou outros servidores, equipamentos e software que tenham um potencial impacto no ambiente de rede local\r\n\r\n&nbsp;\r\n\r\nExclusões de tempo de serviço\r\n\r\n&nbsp;\r\n\r\nSão excluídos do cálculo mensal de Disponibilidade do Serviço:\r\n\r\n&nbsp;\r\n\r\n* Qualquer tempo de serviço programado utilizado\r\n\r\n* Qualquer problema além do segmento de rede MLK Solutions imediato\r\n\r\n* Quaisquer interrupções, atrasos ou falhas causados ​​por funcionários, agentes ou subcontratados do Cliente ou Cliente, tais como, mas não se limitando a:\r\n\r\nConfiguração imprecisa\r\n\r\nO Uso não compatível de qualquer software instalado no servidor\r\n\r\nO Cliente iniciou a sobre utilização do servidor\r\n\r\nO Quaisquer problemas relacionados a ataques à máquina como hacking, ataques baseados em largura de banda de qualquer natureza e explorações de serviços ou sistemas operacionais\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Política de Privacidade</strong>\r\n\r\n&nbsp;\r\n\r\nColeta de Informações Pessoais ::\r\n\r\n&nbsp;\r\n\r\nTodos os dados cedidos à MLK Solutions pelos clientes serão mantidos em sigilo. Em momento algum será partilhada a informação do cliente com outras empresas do mesmo grupo ou empresas terceiras.\r\n\r\nPara uma maior segurança, todas as áreas do nosso website que tenham o intuito de recolher informação cedida pelo cliente encontram-se protegidas por certificados SSL.\r\n\r\nOs dados que nos sejam cedidos por clientes são utilizados única e exclusivamente para contactos realizados pela MLK Solutions, não sendo cedidos a qualquer entidade terceira.\r\n\r\n&nbsp;\r\n\r\nPara aceder nossos serviços MLK Solutions, você será solicitado a fazer login com um endereço de e-mail e uma senha, que chamamos de credenciais. Na maioria dos casos, essas credenciais farão parte do MLK Solutions, o que significa que você pode usar as mesmas credenciais para fazer login em diversos sites e serviços. Ao fazer login no site ou no serviço MLK Solutions, você pode entrar automaticamente em outros sites e serviços.\r\n\r\n&nbsp;\r\n\r\nVocê também pode ser solicitado a fornecer respostas, que usamos para ajudar a confirmar sua identidade e ajudar na redefinição de sua senha, bem como um endereço de e-mail alternativo. Um número de ID exclusivo será atribuído às suas credenciais que serão usadas para identificar suas credenciais e informações associadas.\r\n\r\n&nbsp;\r\n\r\nSolicitamos que você forneça informações pessoais, como seu endereço de e-mail, nome, endereço residencial ou profissional ou número de telefone. Podemos também coletar informações demográficas, como seu NIF/NIPCS, idade, sexo, preferências, interesses e favoritos. Se você optar por fazer uma compra ou se inscrever para um serviço de assinatura paga, solicitaremos informações adicionais, como o endereço de faturação, usados ​​para criar uma conta de cliente.\r\n\r\n&nbsp;\r\n\r\nPodemos guardar informações sobre sua visita, incluindo as páginas que você vê, os links que você clica e outras ações tomadas em conexão com o site MLK Solutions e serviços. Também guardamos algumas informações padrão que seu navegador envia para todos os sites que você visita, como seu endereço IP, tipo de navegador e idioma, tempos de acesso e endereços de sites de referência.\r\n\r\n&nbsp;\r\n\r\nUso de suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nMLK Solutions guarda e usa suas informações pessoais para operar e melhorar seus sites e entregar os serviços ou realizar as transações que você solicitou. Esses usos podem incluir o fornecimento de um serviço ao cliente mais eficaz; Tornando os sites ou serviços mais fáceis de usar, eliminando a necessidade de você digitar repetidamente as mesmas informações.\r\n\r\n&nbsp;\r\n\r\nTambém usamos suas informações pessoais para nos comunicar com você. Podemos enviar certas comunicações de serviço obrigatórias, como e-mails de boas-vindas, lembretes de faturação, informações sobre problemas de serviços técnicos e anúncios de segurança.\r\n\r\n&nbsp;\r\n\r\nPartilha das suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nNós não divulgaremos suas informações pessoais fora de MLK Solutions. Permitimos que você escolha compartilhar suas informações pessoais para que elas possam contatá-lo sobre nossos produtos, serviços ou ofertas. Suas informações serão mantidas confidenciais e estão proibidas de usá-las para qualquer outra finalidade. Podemos aceder e / ou divulgar suas informações pessoais se acreditarmos que tal ação é necessária em circunstâncias urgentes para proteger a segurança pessoal dos usuários.\r\n\r\n&nbsp;\r\n\r\nAceder às suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nVocê pode ter a capacidade de visualizar ou editar suas informações pessoais on-line. Para ajudar a impedir que suas informações pessoais sejam vistas por outros, você será solicitado a fazer login com suas credenciais (endereço de e-mail e senha). Você pode escrever / e-mails e nós entraremos em contato com você sobre o seu pedido.\r\n\r\n&nbsp;\r\n\r\nSegurança das suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nMLK Solutions é cometido a proteger a segurança de suas informações pessoais. Utilizamos uma variedade de procedimentos de segurança e implementamos procedimentos físicos, eletrónicos e gerenciais adequados para ajudar a proteger suas informações pessoais de acesso e uso não autorizados. Quando transmitimos informações altamente confidenciais (como uma senha) pela Internet, protegemo-lo através do uso de criptografia, como o protocolo Secure Socket Layer (SSL). Além disso, é sua responsabilidade manter sua senha confidencial. Não compartilhe esta informação com ninguém. Se você estiver compartilhando um computador com alguém, você deve sempre optar por efetuar logoff antes de deixar um site ou serviço para proteger o acesso às suas informações de usuários subsequentes.\r\n\r\n&nbsp;\r\n\r\nAlterações a esta declaração de privacidade ::\r\n\r\n&nbsp;\r\n\r\nOcasionalmente, atualizaremos esta declaração de privacidade para refletir as alterações nos nossos serviços e os comentários dos clientes. Encorajamos você a revisar periodicamente esta declaração para ser informado de como MLK Solutions está protegendo suas informações e gerenciando as coisas.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Política de Uso Aceitável</strong>\r\n\r\n&nbsp;\r\n\r\nEsta política está sujeita a alterações, sem aviso prévio, portanto verifique regularmente as atualizações. Esta política é adicionalmente, e considerada parte dos Termos e Condições da MLK Solutions. MLK Solutions será o único árbitro sobre o que constitui uma violação desta disposição. Se você achar que descobriu uma violação de qualquer área de nossa AUP (exceto avisos de suposta violação de nossos clientes ou quaisquer ordens judiciais, intimações, mandados de busca ou outros processos legais, o endereço de e-mail para todos os quais é \"legal @ MLK Solutions \")\r\n\r\n&nbsp;\r\n\r\n1) Web Hosting\r\n\r\n&nbsp;\r\n\r\n1.1) MLK Solutions reserva-se o direito de suspender ou cancelar o acesso de um cliente a qualquer ou todos os serviços prestados por MLK Solutions, onde MLK Solutions decide que a conta foi usada de forma inadequada. MLK Solutions se reserva o direito de recusar o serviço e / ou o acesso a seus servidores a qualquer um.\r\n\r\n&nbsp;\r\n\r\n1.2) MLK Solutions oferece vários níveis de espaço web e largura de banda de subsídio com os diferentes tipos de conta. Por isso, queremos dizer espaço para o conteúdo do site legítimo e largura de banda para os visitantes para vê-lo. Todos os arquivos em um domínio devem fazer parte do site ativo e estar vinculados ao site. MP3 e outros grandes arquivos multimídia não são conteúdo baseado na web. MLK Solutions oferece um serviço de streaming de mídia para este tipo de conteúdo. Todos os arquivos, informações e e-mails sob a conta serão preservados por 30 dias a partir da data do pagamento. Se o pagamento não for recebido após 30 dias, todos os arquivos, informações e e-mails sob a conta poderão ser excluídos. Se o assinante desejar reutilizar / reativar o serviço, o assinante poderá precisar se candidatar novamente como novo assinante, e uma taxa de ativação poderá ser necessária.\r\n\r\n&nbsp;\r\n\r\n1.2.1) Utilização da largura de banda e do disco: A empresa fornecerá ao Cliente um volume ilimitado de largura de banda, espaço em disco e outros recursos, como contas de correio eletrónico e / ou de transferência de ficheiros (FTP). Os Serviços são destinados apenas para uso normal. Qualquer atividade que resulte em uso excessivo inconsistente com padrões normais de uso é estritamente proibida. O Cliente concorda que tal largura de banda e uso de disco não devem exceder os valores estabelecidos pela Empresa para os Serviços (o \"Uso Aprovado\"). Essas alocações são otimizadas e dedicadas a servir o Conteúdo e os serviços de e-mail do Cliente relacionados apenas com as contas de hospedagem na Web do Cliente com a Empresa. O Cliente não deve usar qualquer largura de banda e / ou uso de disco para materiais que não sejam o site do Cliente, o Conteúdo do Cliente e / ou os serviços de correio eletrônico do Cliente. Por exemplo, o Cliente não pode usar a largura de banda ou o uso do disco como área de armazenamento offsite para arquivos eletrônicos ou como um serviço de provisionamento para terceiros de correio eletrônico ou hosts FTP. A empresa monitorará a largura de banda e o uso de disco do Cliente. A Empresa, a seu exclusivo critério, terá o direito de tomar qualquer ação corretiva se a largura de banda do Cliente ou o uso do disco exceder o Uso Aprovado ou outro armazenamento ou uso inadequado. Tal ação corretiva pode incluir a avaliação de tarifas adicionais, desconexão ou descontinuidade de qualquer e todos os Serviços, remoção ou exclusão do site do Cliente, Conteúdo do Cliente, serviços de correio eletrônico do Cliente e / ou outros materiais ou rescisão deste Contrato, Tomada à discrição exclusiva e absoluta da Companhia. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso ou crédito de quaisquer taxas pagas antes dessa ação. O Cliente cumprirá todas as leis, regras e regulamentos aplicáveis ​​no que se refere ao site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrônico do Cliente e cada um, incluindo largura de banda, espaço em disco e outros recursos apenas para fins legais. O Cliente não pode utilizar: os Serviços para copiar material de terceiros (incluindo texto, gráficos, música, vídeos ou outro material protegido por direitos autorais) sem a devida autorização; Os Serviços a se apropriar indevidamente ou infringir as patentes, direitos autorais, marcas registradas ou outros direitos de propriedade intelectual de terceiros; Os Serviços ao tráfico de drogas ilegais, jogos de azar ilegais, materiais obscenos ou outros produtos ou serviços proibidos pela lei aplicável; Os Serviços de exportação de software de criptografia para pontos fora dos Estados Unidos, em violação das leis de controle de exportação aplicáveis; Os Serviços para forjar ou deturpar cabeçalhos de mensagem, seja em todo ou em parte, para mascarar o originador da mensagem. Se a Empresa descobrir ou descobrir que o Cliente está a violar qualquer lei relacionada com o Web site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrónico do Cliente, utilização de largura de banda, utilização do disco ou Utilização Acordada, a Empresa poderá ser obrigada a informar os responsáveis ​​pela aplicação da lei. (S) relacionada (s) com o Cliente, o site do Cliente, o Conteúdo do Cliente e / ou o correio eletrônico do Cliente.\r\n\r\nCron Jobs: Enquanto os clientes são capazes de configurar jobs cron através de seu painel de control (linux apenas), Cron Job timing não pode ser mais rápido do que a cada 5 minutos. Cada servidor irá reverter \'cada minuto\' Cron Job a cada 5 minutos em uma base noturna.\r\n\r\n&nbsp;\r\n\r\n1.2.2) Utilização da CPU. O Cliente concorda que o Cliente não deve usar quantidades excessivas de processamento da CPU em nenhum dos servidores da Empresa. Qualquer violação desta política pode resultar em ações corretivas da Empresa, incluindo a avaliação de encargos adicionais, desconexão ou descontinuidade de todos e quaisquer Serviços, ou rescisão deste Contrato, cujas ações podem ser tomadas a critério exclusivo e absoluto da Empresa. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso de quaisquer taxas pagas antecipadamente antes de tal ação.\r\n\r\n&nbsp;\r\n\r\n1.3) Os scripts no site devem ser projetados para produzir conteúdo baseado na web e não usar o servidor como um servidor de aplicativos. Usar o servidor para gerar grandes volumes de e-mail a partir de um banco de dados é um exemplo de atividade que não é permitida. Scripts não devem tentar manipular os tempos limite em servidores. Estes são definidos nos valores presentes para garantir a confiabilidade do servidor. Os sites que redefinem esses recursos fazem isso porque são muito intensivos em recursos e afetam negativamente o desempenho do servidor e, portanto, não são permitidos.\r\n\r\n&nbsp;\r\n\r\n1.4) O MLK Solutions desabilitará qualquer domínio que não cumpra os seguintes critérios assim que tivermos conhecimento, de acordo com as práticas de trabalho atuais:\r\n\r\n&nbsp;\r\n\r\n1.4.1) O objetivo principal de qualquer site deve ser fornecer conteúdo baseado na web para os espectadores. Os arquivos no site devem estar vinculados ao site.\r\n\r\n&nbsp;\r\n\r\n1.4.2) O objetivo principal de qualquer script deve ser produzir uma página da web. Os scripts que enviam um único e-mail com base em informações inseridas pelo usuário ou atualizam um banco de dados são aceitáveis. Os scripts que enviam e-mails em massa ou executam processos de banco de dados intensivos de processador não são permitidos. Todo o correio enviado é monitorado e filtrado.\r\n\r\n&nbsp;\r\n\r\n1.4.3) Os sites não devem conter material Warez, ilegal, imoral ou protegido por direitos autorais. O ônus é sobre você o cliente para provar que você possui os direitos de publicar material, não para MLK Solutions para provar que você não.\r\n\r\n&nbsp;\r\n\r\n1.4.4) Os sites não devem conter arquivos MP3, pois não representam conteúdo da Web ativo. Outros ficheiros multimédia são aceitáveis ​​se estiverem configurados para transmitir ao cliente em vez de descarregar (consulte a secção 1.2 desta política).\r\n\r\n&nbsp;\r\n\r\n1.4.5) Os sites não devem conter arquivos protegidos por senha (por exemplo, zip ou rar) ou backups de dados.\r\n\r\n&nbsp;\r\n\r\n1.4.6) Os sites não devem conter material pornográfico ou outro material lascivo. O material adulto inclui toda a pornografia, imagens eróticas ou conteúdo obsceno ou obsceno. A designação de \"material adulto\" é deixada inteiramente à discrição de MLK Solutions.\r\n\r\n&nbsp;\r\n\r\n1.4.7) Os sites não devem usar quantidades excessivas de recursos do servidor. Estes incluem largura de banda, utilização do processador e / ou espaço em disco. Quando um site é encontrado para monopolizar os recursos disponíveis MLK Solutions se reserva o direito de suspender esse site imediatamente. Esta política só é implementada em circunstâncias extremas e destina-se a impedir o mau uso dos nossos servidores. Os clientes podem ser oferecidos uma opção em que uma opção de atualização ou adição de hospedagem é necessária.\r\n\r\n&nbsp;\r\n\r\n1.4.8) Os sites não devem conter scripts que tentem aceder a recursos de servidor privilegiados ou outros sites no mesmo servidor.\r\n\r\n&nbsp;\r\n\r\n1.4.9) Qualquer cliente MLK Solutions que pretenda utilizar a nossa infraestrutura no que diz respeito à prestação de serviços de jogos é obrigado a fornecer-nos uma cópia válida da sua licença de jogo de sua jurisdição de licenciamento. Isso deve ser fornecido a MLK Solutions antes da ativação de qualquer serviço de jogos.\r\n\r\n&nbsp;\r\n\r\n2) E-mail\r\n\r\n&nbsp;\r\n\r\n2.1) Se MLK Solutions identifica uma caixa de correio ou domínio que está causando problemas; Removeremos as caixas de correio ofensivas ou alteraremos suas configurações para resolver o problema. Em casos extremos, desativaremos o e-mail ou suspenderemos todos os serviços para o domínio, conforme apropriado.\r\n\r\n&nbsp;\r\n\r\n2.2) Problemas comuns que causam problemas são:\r\n\r\n&nbsp;\r\n\r\n2.2.1) Quando uma caixa de correio recebe grandes volumes de e-mails não entregues.\r\n\r\n&nbsp;\r\n\r\n2.2.2) Onde as caixas de correio têm encaminhadores definidos para outras caixas de correio onde o correio não pode ser entregue.\r\n\r\n&nbsp;\r\n\r\n2.2.3) Onde as caixas de correio têm encaminhadores e / ou auto-responders que geram loops de e-mail circulares.\r\n\r\n&nbsp;\r\n\r\n2.3) Você não pode usar os serviços de e-mail do MLK Solutions para qualquer um dos seguintes:\r\n\r\n&nbsp;\r\n\r\n2.3.4) Enviar mensagens ou comunicações que não sejam solicitadas, ofensivas, abusivas, indecentes ou obscenas.\r\n\r\n&nbsp;\r\n\r\n2.3.5) Enviar mensagens causando incómodo, inconveniência ou ansiedade a outro usuário da Internet.\r\n\r\n&nbsp;\r\n\r\n2.3.6) Enviar mensagens para efeitos de Fraude e / ou com a intenção de cometer uma infração penal.\r\n\r\n&nbsp;\r\n\r\n2.4) Para evitar o envio de correio não solicitado em massa, o tráfego SMTP para e de um servidor será bloqueado nos seguintes cenários:\r\n\r\n&nbsp;\r\n\r\n2.4.1) Onde identificamos um servidor que possui um relé de correio aberto.\r\n\r\n&nbsp;\r\n\r\n2.4.2) Quando um volume significativo de correio é enviado a partir de um domínio num período de 10 minutos.\r\n\r\n&nbsp;\r\n\r\n2.4.3) Onde temos recebido volumes significativos de reclamações relativas a correio não solicitado originado de um servidor hospedado MLK Solutions.\r\n\r\n&nbsp;\r\n\r\n2.5) Para evitar que os Endereços IP do MLK Solutions sejam bloqueados pelo bloqueio do Endereço IP, um domínio mantido nos servidores do MLK Solutions pode ser desativado:\r\n\r\n&nbsp;\r\n\r\n2.5.1) Onde temos recebido volumes significativos de reclamações relativas ao correio não solicitado originado ou a um email não solicitado enviado para promover sites hospedados em um servidor MLK Solutions.\r\n\r\n&nbsp;\r\n\r\nSPAM e e-mail comercial não solicitado (UCE): MLK Solutions tem uma abordagem de tolerância zero para o envio de correio eletrónico comercial não solicitado (UCE) ou SPAM através da nossa rede. Muito simplesmente, isso significa que os clientes da MLK Solutions não podem usar ou permitir que outros usem nossa rede para fazer transações na UCE. Os clientes de MLK Solutions não podem hospedar ou permitir hospedagem de sites ou informações que sejam anunciados pela UCE de outras redes. Violações desta política levam a penas severas, incluindo a cessação de serviço.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><em>Nota</em></strong><em>: Todas as questões não contidas neste documento, encontram-se à apreciação de António Paulo Cunha Costa Raimundo, sendo a decisão do mesmo tomada como final e a cumprir-se nos termos legais da lei em vigor na República Portuguesa. Qualquer dúvida não hesite em contactar support@mlk.pt.</em>", "TOS", "", "publish", "closed", "closed", "", "tos", "", "", "2017-04-04 15:14:27", "2017-04-04 15:14:27", "", "0", "https://mlksolutions.org/?page_id=2103", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("2104", "1", "2017-04-01 00:35:24", "2017-04-01 00:35:24", "<strong><u>Condições de Serviço</u></strong>\r\n\r\n&nbsp;\r\n\r\n<em>A MLK Solutions encontra-se representada nas finanças pelo contribuinte António Paulo Cunha Costa Raimundo – NIF230675999 e registado com o </em><em><strong>CAE</strong></em><em>:</em> <em><strong>63110</strong></em> <em>- ACTIVIDADES DE PROCESSAMENTO DE DADOS, DOMICILIAÇÃO DE INFORMAÇÃO E ACTIVIDADES RELACIONADAS</em><em>.</em>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“A MLK Solutions proíbe alguns ficheiros nos alojamentos partilhados (alojamento web, revenda e webdrive), entre os quais destacamos: MP3, Imagens e Vídeos protegidos por copyright, Exploits, Torrents, Trackers, Cracks, Warez, Nukes, Flooders e qualquer outro tipo de ficheiro que não esteja em conformidade com a lei ou possa prejudicar o bom funcionamento dos servidores.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions proíbe alguns programas nos servidores, entre os quais destacamos: Port Scanners, Exploits Scanners, Nukes, Flooders, Servidores de Jogos (excluindo em servidor dedicado), Servidores de Socks, ficheiros pesados para download e qualquer outro tipo de programa que possa prejudicar o bom funcionamento dos servidores.</li>\r\n 	<li>A existência de links para os programas/ficheiros acima descritos, ou que possam ser enquadrados na generalidade da descrição, também serão considerados ilegais perante as condições de serviço aqui mencionadas.</li>\r\n 	<li>Exceto quando devidamente indicado, os serviços de alojamento prestados pela MLK Solutions servem para a publicação de páginas, recurso a bases de dados e sistemas de email. Não se encontra contemplado nos nossos serviços a utilização de contas de alojamento para streaming de áudio, vídeo ou repositório de ficheiros (vulgo backup).</li>\r\n 	<li>É proibida a utilização massiva de recursos no servidor. Caso se verifique que um cliente se encontra a absorver todos os recursos A MLK Solutions poderá tomar medidas para que tal não aconteça.</li>\r\n 	<li>Não é permitido o alojamento de conteúdo adulto, seja ela sob a forma de fotografias ou vídeos. A determinação final do que constitui “conteúdo adulto” fica a cargo da MLK Solutions.</li>\r\n 	<li>Não é permitido colocar no servidor ficheiros que contenham conteúdos punidos pelas leis do país onde os servidores se encontram (EUA e/ou Portugal).</li>\r\n 	<li>Realizar ataques (nomeadamente de DDoS) ou scans a partir da MLK Solutions é proibido. Caso aconteça, a conta será terminada sem aviso prévio.</li>\r\n 	<li>A utilização de forma abusiva e/ou com diferentes propósitos dos explícitos/óbvios referentes ao tipo de conta adquirida não é aceitável.</li>\r\n 	<li>As contas de alojamento são destinadas ao cliente que a subscreveu. Nenhum cliente pode subalugar ou subalugar, ou seja, não pode alugar, alojar ou revender serviços a terceiros, excluindo contas existentes para esse efeito.</li>\r\n 	<li>A MLK Solutions apenas presta serviço de suporte ao cliente que comprou o serviço e nunca a terceiros.</li>\r\n 	<li>Utilizar as contas de e-mail ou o alojamento para o envio de Spam é proibido. Caso a sua conta esteja envolvida em atividades de spam a MLK Solutions reserva-se no direito de cancelar a mesma, sem qualquer reembolso.</li>\r\n 	<li>O cliente que adquiriu a conta à MLK Solutions é responsável pelo que acontece dentro da mesma, mesmo que problemas relativos à mesma tenham sido obra de terceiros.</li>\r\n 	<li>O cliente é responsável pelos conteúdos da sua conta e deverá efectuar cópias de segurança. A MLK Solutions não se responsabiliza caso ocorram problemas com os mesmos.</li>\r\n 	<li>Às regras da MLK Solutions acrescem as regras dos serviços de terceiros que interajam com as contas dos utilizadores da MLK Solutions, tais como os Servidores de IRC, Motores de busca, etc. Caso essas regras não sejam cumpridas a MLK Solutions reserva-se ao direito de tomar as medidas necessárias para que tal aconteça.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de recusar a abertura de contas sem que para tal necessite de justificá-lo.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de alterar estas condições sempre que achar necessário sem qualquer aviso prévio.\r\nSe for detetada qualquer uma destas situações, a MLK Solutions reserva-se no direito de suspender/cancelar a conta sem aviso prévio.”</li>\r\n 	<li>A MLK Solutions não presta apoio informático na configuração dos clientes de emails e na restante configuração do serviço e utilização dos programas contidos no mesmo, sendo esta utilização e configuração da responsabilidade do cliente.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Contas MLK CARE</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Estas contas são para uso exclusivo de entidades, associações ou instituições de cariz solidário e de interesse público sem qualquer interesse ou vantagem financeira em geral.</li>\r\n 	<li>A criação destas contas exige a um escrutínio por parte da MLK Solutions, de forma a averiguar os requisitos para a atribuição do serviço.</li>\r\n 	<li>Todas as entidades ao abrigo deste protocolo solidário, têm de obrigatoriamente colocar uma imagem de destaque da MLK Care na página inicial do seu site, com link para <a href=\"http://www.mlk.pt\">http://www.mlk.pt</a> e de tamanho nunca inferior a 50px/70px |___| .</li>\r\n 	<li>O pedido destas contas de web hosting tem de ser obrigatoriamente feito via email , através do endereço <a href=\"mailto:mlkcare@mlk.pt\">mlkcare@mlk.pt</a>.</li>\r\n 	<li>O suporte técnico destas contas, limita-se na sua essência ao bom funcionamento do serviço e nunca à configuração do mesmo, nem a outros programas contidos no serviço.</li>\r\n 	<li>A MLK Solutions não se responsabiliza por qualquer falha no serviço, sendo que o serviço deve estar preparado para eventuais falhas de acesso e mesmo de remoção de ficheiros, pelo que aconselhamos a que seja feito um backup diário.</li>\r\n 	<li>Por ser um serviço oferecido, a MLK Solutions não tem de indemnizar por quais quer danos que o serviço possa causar ao funcionamento da entidade .</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Suspensões e Cancelamentos</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n<ul>\r\n 	<li>Os pagamentos devem ser efetuados até ao próprio dia que a conta expira. Após 15 dias sem pagamento, a conta de alojamento será suspensa. 30 dias após a data de pagamento, a conta será apagada.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions não se responsabiliza pela não entrega de e-mails a notificar a data de pagamento. Tal facto não serve como argumento válido para o não pagamento na data devida. O cliente deverá manter-se informado sobre a data de pagamento na sua zona de cliente.</li>\r\n 	<li>Expirada a data de renovação, a responsabilidade sobre a salvaguarda dos conteúdos recai sobre o cliente, não podendo ser imputada à MLK Solutions.</li>\r\n 	<li>Os comprovativos de pagamento são remetidos em formato digital (PDF) , emitidos os recibos no portal das finanças.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de alterar os preços de qualquer um dos seus serviços a qualquer altura, tendo em conta que deverá também notificar todos os seus clientes das alterações do(s) preço(s) com quinze (15) dias de antecedência.</li>\r\n 	<li>A MLK Solutions reserva-se ao direito de fazer os upgrades e downgrades que ache necessário para adaptar os serviços obtidos dos clientes aos pacotes existentes em venda.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions reserva-se no direito de suspender e/ou cancelar o serviço a clientes em qualquer altura, com base nas condições acima descritas.</li>\r\n 	<li>Se tal cancelamento for devido a violação por parte do cliente de alguma das condições descritas neste documento, não será devido qualquer reembolso.</li>\r\n 	<li>Os clientes podem cancelar o serviço em qualquer altura. Tal não obriga a MLK Solutions a qualquer reembolso.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Acordo de Nível de Serviço</strong>\r\n\r\n&nbsp;\r\n\r\nEste Contrato de Nível de Serviço MLK Solutions (\"SLA\") se aplica a todos os clientes compartilhados e dedicados. O Cliente concorda que as medições por meio de terceiros estabelecem a elegibilidade para qualquer Crédito de Desempenho aplicável. Caso o Cliente determine que existe uma discrepância nessa mensuração, o Cliente deverá notificar prontamente MLK Solutions e MLK Solutions e o Cliente concordará mutuamente sobre a validade e exatidão da medição e sobre a elegibilidade do Cliente para quaisquer Créditos de Desempenho aplicáveis\r\n\r\n&nbsp;\r\n\r\nEste SLA pode ser alterado a qualquer momento por MLK Solutions.\r\n\r\n&nbsp;\r\n\r\nA Rede MLK Solutions é definida como o equipamento, software e instalações dentro do segmento de rede MLK Solutions, incluindo os serviços ISP contratados da MLK Solutions aos quais o segmento de rede MLK Solutions está conectado e utilizado coletivamente pela MLK Solutions para fornecer serviços dedicados e Serviços de co-localização\r\n\r\n&nbsp;\r\n\r\nDisponibilidade de serviço é o tempo total em um mês de calendário que o MLK Solutions está disponível através da Internet, desde que o cliente tenha estabelecido conectividade. A MLK Solutions assume a responsabilidade pela Disponibilidade do Serviço no seu segmento de rede imediato e não pode ser responsabilizada por problemas diretamente relacionados com um fornecedor de largura de banda a montante. A rede MLK Solutions estará disponível para clientes livres de interrupções de rede por 99% do tempo\r\n\r\n&nbsp;\r\n\r\nO Tempo de Inatividade do Serviço é qualquer interrupção não planejada na Disponibilidade do Serviço durante a qual o Cliente é incapaz de aceder os serviços como descrito na seção anterior, desde que a interrupção seja determinada por ter sido causada por um problema no segmento de rede MLK Solutions imediato como confirmado pela MLK Solutions. Com o tempo de inatividade do serviço é medido como o tempo total de interrupção não planejada na disponibilidade do serviço durante um mês de calendário. MLK Solutions não é responsável por quaisquer interrupções não planejadas devido a falhas de software de terceiros são de responsabilidade direta do editor do software e não de MLK Solutions\r\n\r\n&nbsp;\r\n\r\nO tempo de inatividade de serviço programado é qualquer interrupção de MLK Solutions de serviços de hospedagem. O tempo de inatividade de serviço programado ocorre durante uma janela de manutenção do servidor MLK Solutions, que ocorre em conjunto com uma notificação de 12 horas ao cliente por meio de comunicação eletrônica.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nExclusões de serviços\r\n\r\n&nbsp;\r\n\r\nEste SLA não cobre o tempo de inatividade do serviço causado por problemas no seguinte:\r\n\r\n&nbsp;\r\n\r\n* Rede de área local do cliente\r\n\r\n* Conectividade à Internet ou software de utilizador final fornecido pelo cliente\r\n\r\n* Entidades dentro da rede interna do cliente, incluindo, mas não se limitando a, configuração de firewall e modelagem de largura de banda, estações de trabalho de área local ou outros servidores, equipamentos e software que tenham um potencial impacto no ambiente de rede local\r\n\r\n&nbsp;\r\n\r\nExclusões de tempo de serviço\r\n\r\n&nbsp;\r\n\r\nSão excluídos do cálculo mensal de Disponibilidade do Serviço:\r\n\r\n&nbsp;\r\n\r\n* Qualquer tempo de serviço programado utilizado\r\n\r\n* Qualquer problema além do segmento de rede MLK Solutions imediato\r\n\r\n* Quaisquer interrupções, atrasos ou falhas causados ​​por funcionários, agentes ou subcontratados do Cliente ou Cliente, tais como, mas não se limitando a:\r\n\r\nConfiguração imprecisa\r\n\r\nO Uso não compatível de qualquer software instalado no servidor\r\n\r\nO Cliente iniciou a sobre utilização do servidor\r\n\r\nO Quaisquer problemas relacionados a ataques à máquina como hacking, ataques baseados em largura de banda de qualquer natureza e explorações de serviços ou sistemas operacionais\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Política de Privacidade</strong>\r\n\r\n&nbsp;\r\n\r\nColeta de Informações Pessoais ::\r\n\r\n&nbsp;\r\n\r\nTodos os dados cedidos à MLK Solutions pelos clientes serão mantidos em sigilo. Em momento algum será partilhada a informação do cliente com outras empresas do mesmo grupo ou empresas terceiras.\r\n\r\nPara uma maior segurança, todas as áreas do nosso website que tenham o intuito de recolher informação cedida pelo cliente encontram-se protegidas por certificados SSL.\r\n\r\nOs dados que nos sejam cedidos por clientes são utilizados única e exclusivamente para contactos realizados pela MLK Solutions, não sendo cedidos a qualquer entidade terceira.\r\n\r\n&nbsp;\r\n\r\nPara aceder nossos serviços MLK Solutions, você será solicitado a fazer login com um endereço de e-mail e uma senha, que chamamos de credenciais. Na maioria dos casos, essas credenciais farão parte do MLK Solutions, o que significa que você pode usar as mesmas credenciais para fazer login em diversos sites e serviços. Ao fazer login no site ou no serviço MLK Solutions, você pode entrar automaticamente em outros sites e serviços.\r\n\r\n&nbsp;\r\n\r\nVocê também pode ser solicitado a fornecer respostas, que usamos para ajudar a confirmar sua identidade e ajudar na redefinição de sua senha, bem como um endereço de e-mail alternativo. Um número de ID exclusivo será atribuído às suas credenciais que serão usadas para identificar suas credenciais e informações associadas.\r\n\r\n&nbsp;\r\n\r\nSolicitamos que você forneça informações pessoais, como seu endereço de e-mail, nome, endereço residencial ou profissional ou número de telefone. Podemos também coletar informações demográficas, como seu CEP, idade, sexo, preferências, interesses e favoritos. Se você optar por fazer uma compra ou se inscrever para um serviço de assinatura paga, solicitaremos informações adicionais, como seu número de cartão de crédito e endereço de faturação, usados ​​para criar uma conta de cliente.\r\n\r\n&nbsp;\r\n\r\nPodemos coletar informações sobre sua visita, incluindo as páginas que você vê, os links que você clica e outras ações tomadas em conexão com o site MLK Solutions e serviços. Também coletamos algumas informações padrão que seu navegador envia para todos os sites que você visita, como seu endereço IP, tipo de navegador e idioma, tempos de acesso e endereços de sites de referência.\r\n\r\n&nbsp;\r\n\r\nUso de suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nMLK Solutions coleta e usa suas informações pessoais para operar e melhorar seus sites e entregar os serviços ou realizar as transações que você solicitou. Esses usos podem incluir o fornecimento de um serviço ao cliente mais eficaz; Tornando os sites ou serviços mais fáceis de usar, eliminando a necessidade de você digitar repetidamente as mesmas informações.\r\n\r\n&nbsp;\r\n\r\nTambém usamos suas informações pessoais para nos comunicar com você. Podemos enviar certas comunicações de serviço obrigatórias, como e-mails de boas-vindas, lembretes de faturação, informações sobre problemas de serviços técnicos e anúncios de segurança.\r\n\r\n&nbsp;\r\n\r\nPartilha das suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nNós não divulgaremos suas informações pessoais fora de MLK Solutions. Permitimos que você escolha compartilhar suas informações pessoais para que elas possam contatá-lo sobre nossos produtos, serviços ou ofertas. Suas informações serão mantidas confidenciais e estão proibidas de usá-las para qualquer outra finalidade. Podemos aceder e / ou divulgar suas informações pessoais se acreditarmos que tal ação é necessária em circunstâncias urgentes para proteger a segurança pessoal dos usuários.\r\n\r\n&nbsp;\r\n\r\nAceder às suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nVocê pode ter a capacidade de visualizar ou editar suas informações pessoais on-line. Para ajudar a impedir que suas informações pessoais sejam vistas por outros, você será solicitado a fazer login com suas credenciais (endereço de e-mail e senha). Você pode escrever / e-mails e nós entraremos em contato com você sobre o seu pedido.\r\n\r\n&nbsp;\r\n\r\nSegurança das suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nMLK Solutions é cometido a proteger a segurança de suas informações pessoais. Utilizamos uma variedade de procedimentos de segurança e implementamos procedimentos físicos, eletrônicos e gerenciais adequados para ajudar a proteger suas informações pessoais de acesso e uso não autorizados. Quando transmitimos informações altamente confidenciais (como uma senha) pela Internet, protegemo-lo através do uso de criptografia, como o protocolo Secure Socket Layer (SSL). Além disso, é sua responsabilidade manter sua senha confidencial. Não compartilhe esta informação com ninguém. Se você estiver compartilhando um computador com alguém, você deve sempre optar por efetuar logoff antes de deixar um site ou serviço para proteger o acesso às suas informações de usuários subsequentes.\r\n\r\n&nbsp;\r\n\r\nAlterações a esta declaração de privacidade ::\r\n\r\n&nbsp;\r\n\r\nOcasionalmente, atualizaremos esta declaração de privacidade para refletir as alterações nos nossos serviços e os comentários dos clientes. Encorajamos você a revisar periodicamente esta declaração para ser informado de como MLK Solutions está protegendo suas informações e gerenciando as coisas.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Política de Uso Aceitável</strong>\r\n\r\n&nbsp;\r\n\r\nEsta política está sujeita a alterações, sem aviso prévio, portanto verifique regularmente as atualizações. Esta política é adicionalmente, e considerada parte dos Termos e Condições da MLK Solutions. MLK Solutions será o único árbitro sobre o que constitui uma violação desta disposição. Se você achar que descobriu uma violação de qualquer área de nossa AUP (exceto avisos de suposta violação de nossos clientes ou quaisquer ordens judiciais, intimações, mandados de busca ou outros processos legais, o endereço de e-mail para todos os quais é \"legal @ MLK Solutions \")\r\n\r\n&nbsp;\r\n\r\n1) Web Hosting\r\n\r\n&nbsp;\r\n\r\n1.1) MLK Solutions reserva-se o direito de suspender ou cancelar o acesso de um cliente a qualquer ou todos os serviços prestados por MLK Solutions, onde MLK Solutions decide que a conta foi usada de forma inadequada. MLK Solutions se reserva o direito de recusar o serviço e / ou o acesso a seus servidores a qualquer um.\r\n\r\n&nbsp;\r\n\r\n1.2) MLK Solutions oferece vários níveis de espaço web e largura de banda de subsídio com os diferentes tipos de conta. Por isso, queremos dizer espaço para o conteúdo do site legítimo e largura de banda para os visitantes para vê-lo. Todos os arquivos em um domínio devem fazer parte do site ativo e estar vinculados ao site. MP3 e outros grandes arquivos multimídia não são conteúdo baseado na web. MLK Solutions oferece um serviço de streaming de mídia para este tipo de conteúdo. Todos os arquivos, informações e e-mails sob a conta serão preservados por 30 dias a partir da data do pagamento. Se o pagamento não for recebido após 30 dias, todos os arquivos, informações e e-mails sob a conta poderão ser excluídos. Se o assinante desejar reutilizar / reativar o serviço, o assinante poderá precisar se candidatar novamente como novo assinante, e uma taxa de ativação poderá ser necessária.\r\n\r\n&nbsp;\r\n\r\n1.2.1) Utilização da largura de banda e do disco: A empresa fornecerá ao Cliente um volume ilimitado de largura de banda, espaço em disco e outros recursos, como contas de correio eletrónico e / ou de transferência de ficheiros (FTP). Os Serviços são destinados apenas para uso normal. Qualquer atividade que resulte em uso excessivo inconsistente com padrões normais de uso é estritamente proibida. O Cliente concorda que tal largura de banda e uso de disco não devem exceder os valores estabelecidos pela Empresa para os Serviços (o \"Uso Aprovado\"). Essas alocações são otimizadas e dedicadas a servir o Conteúdo e os serviços de e-mail do Cliente relacionados apenas com as contas de hospedagem na Web do Cliente com a Empresa. O Cliente não deve usar qualquer largura de banda e / ou uso de disco para materiais que não sejam o site do Cliente, o Conteúdo do Cliente e / ou os serviços de correio eletrônico do Cliente. Por exemplo, o Cliente não pode usar a largura de banda ou o uso do disco como área de armazenamento offsite para arquivos eletrônicos ou como um serviço de provisionamento para terceiros de correio eletrônico ou hosts FTP. A empresa monitorará a largura de banda e o uso de disco do Cliente. A Empresa, a seu exclusivo critério, terá o direito de tomar qualquer ação corretiva se a largura de banda do Cliente ou o uso do disco exceder o Uso Aprovado ou outro armazenamento ou uso inadequado. Tal ação corretiva pode incluir a avaliação de tarifas adicionais, desconexão ou descontinuidade de qualquer e todos os Serviços, remoção ou exclusão do site do Cliente, Conteúdo do Cliente, serviços de correio eletrônico do Cliente e / ou outros materiais ou rescisão deste Contrato, Tomada à discrição exclusiva e absoluta da Companhia. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso ou crédito de quaisquer taxas pagas antes dessa ação. O Cliente cumprirá todas as leis, regras e regulamentos aplicáveis ​​no que se refere ao site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrônico do Cliente e cada um, incluindo largura de banda, espaço em disco e outros recursos apenas para fins legais. O Cliente não pode utilizar: os Serviços para copiar material de terceiros (incluindo texto, gráficos, música, vídeos ou outro material protegido por direitos autorais) sem a devida autorização; Os Serviços a se apropriar indevidamente ou infringir as patentes, direitos autorais, marcas registradas ou outros direitos de propriedade intelectual de terceiros; Os Serviços ao tráfico de drogas ilegais, jogos de azar ilegais, materiais obscenos ou outros produtos ou serviços proibidos pela lei aplicável; Os Serviços de exportação de software de criptografia para pontos fora dos Estados Unidos, em violação das leis de controle de exportação aplicáveis; Os Serviços para forjar ou deturpar cabeçalhos de mensagem, seja em todo ou em parte, para mascarar o originador da mensagem. Se a Empresa descobrir ou descobrir que o Cliente está a violar qualquer lei relacionada com o Web site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrónico do Cliente, utilização de largura de banda, utilização do disco ou Utilização Acordada, a Empresa poderá ser obrigada a informar os responsáveis ​​pela aplicação da lei. (S) relacionada (s) com o Cliente, o site do Cliente, o Conteúdo do Cliente e / ou o correio eletrônico do Cliente.\r\n\r\nCron Jobs: Enquanto os clientes são capazes de configurar jobs cron através de seu painel de control (linux apenas), Cron Job timing não pode ser mais rápido do que a cada 5 minutos. Cada servidor irá reverter \'cada minuto\' Cron Job a cada 5 minutos em uma base noturna.\r\n\r\n&nbsp;\r\n\r\n1.2.2) Utilização da CPU. O Cliente concorda que o Cliente não deve usar quantidades excessivas de processamento da CPU em nenhum dos servidores da Empresa. Qualquer violação desta política pode resultar em ações corretivas da Empresa, incluindo a avaliação de encargos adicionais, desconexão ou descontinuidade de todos e quaisquer Serviços, ou rescisão deste Contrato, cujas ações podem ser tomadas a critério exclusivo e absoluto da Empresa. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso de quaisquer taxas pagas antecipadamente antes de tal ação.\r\n\r\n&nbsp;\r\n\r\n1.3) Os scripts no site devem ser projetados para produzir conteúdo baseado na web e não usar o servidor como um servidor de aplicativos. Usar o servidor para gerar grandes volumes de e-mail a partir de um banco de dados é um exemplo de atividade que não é permitida. Scripts não devem tentar manipular os tempos limite em servidores. Estes são definidos nos valores presentes para garantir a confiabilidade do servidor. Os sites que redefinem esses recursos fazem isso porque são muito intensivos em recursos e afetam negativamente o desempenho do servidor e, portanto, não são permitidos.\r\n\r\n&nbsp;\r\n\r\n1.4) O MLK Solutions desabilitará qualquer domínio que não cumpra os seguintes critérios assim que tivermos conhecimento, de acordo com as práticas de trabalho atuais:\r\n\r\n&nbsp;\r\n\r\n1.4.1) O objetivo principal de qualquer site deve ser fornecer conteúdo baseado na web para os espectadores. Os arquivos no site devem estar vinculados ao site.\r\n\r\n&nbsp;\r\n\r\n1.4.2) O objetivo principal de qualquer script deve ser produzir uma página da web. Os scripts que enviam um único e-mail com base em informações inseridas pelo usuário ou atualizam um banco de dados são aceitáveis. Os scripts que enviam e-mails em massa ou executam processos de banco de dados intensivos de processador não são permitidos. Todo o correio enviado é monitorado e filtrado.\r\n\r\n&nbsp;\r\n\r\n1.4.3) Os sites não devem conter material Warez, ilegal, imoral ou protegido por direitos autorais. O ônus é sobre você o cliente para provar que você possui os direitos de publicar material, não para MLK Solutions para provar que você não.\r\n\r\n&nbsp;\r\n\r\n1.4.4) Os sites não devem conter arquivos MP3, pois não representam conteúdo da Web ativo. Outros ficheiros multimédia são aceitáveis ​​se estiverem configurados para transmitir ao cliente em vez de descarregar (consulte a secção 1.2 desta política).\r\n\r\n&nbsp;\r\n\r\n1.4.5) Os sites não devem conter arquivos protegidos por senha (por exemplo, zip ou rar) ou backups de dados.\r\n\r\n&nbsp;\r\n\r\n1.4.6) Os sites não devem conter material pornográfico ou outro material lascivo. O material adulto inclui toda a pornografia, imagens eróticas ou conteúdo obsceno ou obsceno. A designação de \"material adulto\" é deixada inteiramente à discrição de MLK Solutions.\r\n\r\n&nbsp;\r\n\r\n1.4.7) Os sites não devem usar quantidades excessivas de recursos do servidor. Estes incluem largura de banda, utilização do processador e / ou espaço em disco. Quando um site é encontrado para monopolizar os recursos disponíveis MLK Solutions se reserva o direito de suspender esse site imediatamente. Esta política só é implementada em circunstâncias extremas e destina-se a impedir o mau uso dos nossos servidores. Os clientes podem ser oferecidos uma opção em que uma opção de atualização ou adição de hospedagem é necessária.\r\n\r\n&nbsp;\r\n\r\n1.4.8) Os sites não devem conter scripts que tentem aceder a recursos de servidor privilegiados ou outros sites no mesmo servidor.\r\n\r\n&nbsp;\r\n\r\n1.4.9) Qualquer cliente MLK Solutions que pretenda utilizar a nossa infraestrutura no que diz respeito à prestação de serviços de jogos é obrigado a fornecer-nos uma cópia válida da sua licença de jogo de sua jurisdição de licenciamento. Isso deve ser fornecido a MLK Solutions antes da ativação de qualquer serviço de jogos.\r\n\r\n&nbsp;\r\n\r\n2) E-mail\r\n\r\n&nbsp;\r\n\r\n2.1) Se MLK Solutions identifica uma caixa de correio ou domínio que está causando problemas; Removeremos as caixas de correio ofensivas ou alteraremos suas configurações para resolver o problema. Em casos extremos, desativaremos o e-mail ou suspenderemos todos os serviços para o domínio, conforme apropriado.\r\n\r\n&nbsp;\r\n\r\n2.2) Problemas comuns que causam problemas são:\r\n\r\n&nbsp;\r\n\r\n2.2.1) Quando uma caixa de correio recebe grandes volumes de e-mails não entregues.\r\n\r\n&nbsp;\r\n\r\n2.2.2) Onde as caixas de correio têm encaminhadores definidos para outras caixas de correio onde o correio não pode ser entregue.\r\n\r\n&nbsp;\r\n\r\n2.2.3) Onde as caixas de correio têm encaminhadores e / ou auto-responders que geram loops de e-mail circulares.\r\n\r\n&nbsp;\r\n\r\n2.3) Você não pode usar os serviços de e-mail do MLK Solutions para qualquer um dos seguintes:\r\n\r\n&nbsp;\r\n\r\n2.3.4) Enviar mensagens ou comunicações que não sejam solicitadas, ofensivas, abusivas, indecentes ou obscenas.\r\n\r\n&nbsp;\r\n\r\n2.3.5) Enviar mensagens causando incómodo, inconveniência ou ansiedade a outro usuário da Internet.\r\n\r\n&nbsp;\r\n\r\n2.3.6) Enviar mensagens para efeitos de Fraude e / ou com a intenção de cometer uma infração penal.\r\n\r\n&nbsp;\r\n\r\n2.4) Para evitar o envio de correio não solicitado em massa, o tráfego SMTP para e de um servidor será bloqueado nos seguintes cenários:\r\n\r\n&nbsp;\r\n\r\n2.4.1) Onde identificamos um servidor que possui um relé de correio aberto.\r\n\r\n&nbsp;\r\n\r\n2.4.2) Quando um volume significativo de correio é enviado a partir de um domínio num período de 10 minutos.\r\n\r\n&nbsp;\r\n\r\n2.4.3) Onde temos recebido volumes significativos de reclamações relativas a correio não solicitado originado de um servidor hospedado MLK Solutions.\r\n\r\n&nbsp;\r\n\r\n2.5) Para evitar que os Endereços IP do MLK Solutions sejam bloqueados pelo bloqueio do Endereço IP, um domínio mantido nos servidores do MLK Solutions pode ser desativado:\r\n\r\n&nbsp;\r\n\r\n2.5.1) Onde temos recebido volumes significativos de reclamações relativas ao correio não solicitado originado ou a um email não solicitado enviado para promover sites hospedados em um servidor MLK Solutions.\r\n\r\n&nbsp;\r\n\r\nSPAM e e-mail comercial não solicitado (UCE): MLK Solutions tem uma abordagem de tolerância zero para o envio de correio eletrónico comercial não solicitado (UCE) ou SPAM através da nossa rede. Muito simplesmente, isso significa que os clientes da MLK Solutions não podem usar ou permitir que outros usem nossa rede para fazer transações na UCE. Os clientes de MLK Solutions não podem hospedar ou permitir hospedagem de sites ou informações que sejam anunciados pela UCE de outras redes. Violações desta política levam a penas severas, incluindo a cessação de serviço.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><em>Nota</em></strong><em>: Todas as questões não contidas neste documento, encontram-se à apreciação de António Paulo Cunha Costa Raimundo, sendo a decisão do mesmo tomada como final e a cumprir-se nos termos legais da lei em vigor na República Portuguesa. Qualquer dúvida não hesite em contactar support@mlk.pt.</em>", "TOS", "", "inherit", "closed", "closed", "", "2103-revision-v1", "", "", "2017-04-01 00:35:24", "2017-04-01 00:35:24", "", "2103", "https://mlksolutions.org/?p=2104", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2120", "1", "2017-04-01 15:22:14", "2017-04-01 15:22:14", "[vc_row][vc_column el_class=\"st-accordion-four\"][titles type=\"h2\" text=\"RnJlcXVlbnRseSUyMEFza2VkJTIwUXVlc3Rpb25z\"][vc_toggle title=\"Responsive HTML5 &amp; CSS3 Theme with 30 Diffrent Demos\" color=\"green\" open=\"true\"]There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks. Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into. Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into.[/vc_toggle][vc_toggle title=\"Well Commented and Structured Code\" color=\"green\"]Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into. Lorem Ipsum is simply dummy text of the printing and typesetting indust been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into.[/vc_toggle][vc_toggle title=\"Awesome Different Styles of Slideshows\" color=\"green\"]There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks.[/vc_toggle][vc_toggle title=\"Custom BG Patterns, Unlimited Colors and Shortcodes\" color=\"green\"]There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks. There are many variations of but the majority have suffered alteration in some form, by injected humour, or randomised words which looks.[/vc_toggle][vc_toggle title=\"Designed for Law and Business Websites with Mega Menu\" color=\"green\"]It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions.[/vc_toggle][vc_toggle title=\"Cross Browser Support and Layered PSD Files\" color=\"green\"]Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose.[/vc_toggle][vc_toggle title=\"Get Much More...\" color=\"green\"]If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words.[/vc_toggle][/vc_column][/vc_row]", "FAQs", "", "inherit", "closed", "closed", "", "1103-revision-v1", "", "", "2017-04-01 15:22:14", "2017-04-01 15:22:14", "", "1103", "https://mlksolutions.org/1103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2169", "1", "2017-04-01 16:19:58", "2017-04-01 16:19:58", " ", "", "", "publish", "closed", "closed", "", "2169", "", "", "2017-04-04 15:11:57", "2017-04-04 15:11:57", "", "0", "https://mlksolutions.org/?p=2169", "2", "nav_menu_item", "", "0");
INSERT INTO `wpos_posts` VALUES("2173", "1", "2017-04-01 16:45:35", "2017-04-01 16:45:35", "[vc_row king_class=\"price_compare\" king_class_container=\"table-wrapper\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBV2ViJTIwSG9zdGluZyUyMFBsYW4lMjBQZXJmZWN0JTIwRm9yJTIwWW91JTIxJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"50px\"][vc_row_inner][vc_column_inner el_class=\"first rowfirst first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"][vc_column_text el_class=\"title\"]\n<div class=\"arrow_box\">\n<h5>All Shared Hosting Features</h5>\n<h3 class=\"caps\">Choose Perfect Plan</h3>\n</div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]\n<h4 class=\"caps\">Starter</h4>\n<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]\n<p class=\"span\">best value</p>\n\n<h4 class=\"caps white\">Business</h4>\n<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]\n<h4 class=\"caps\">Premium</h4>\n<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nNumber of Websites\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n1 Website\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\nMultiple Websites\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n\nMultiple Websites\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nFree Domain Registration\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nWeb Space\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n5,000MB\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\nUnlimited\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n\nUnlimited\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nEmail Accounts\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n25\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\nUnlimited\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n\nUnlimited\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nMySQL Databases\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-times gray\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nFree App Store\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-times gray\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\ncPanel Control Panel\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nFree Daily Backups\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nSearch Engine Optimization\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\n99.9% Uptime Guarantee\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nBandwidth\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n20GB\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nFree Setup\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n$1.99\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nAdvanced Security Features\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\nExtra\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\nExtra\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n\nFree\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nCloud Hosting\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nMarketing Offers &amp; Credits\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-times gray\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n$250\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n\n$500\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\n24/7/365 Support\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\nWebsite Builder\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n1\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n\n50\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n\nUnlimited\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\n\n30 Day Money Back Guarantee\n\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\n<div class=\"fa fa-check sitecolor\"></div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"first-row\"][vc_column_inner el_class=\"first rowfirst\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"]\n[/vc_column_inner][vc_column_inner el_class=\"rowsremain\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section7\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBQWxsJTIwT3VyJTIwcGxhbnMlMjBpbmNsdWRlJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"20px\"][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-globe\"></i>Free\ndomain</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-database\"></i>Unlimited\nDatabase</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-wordpress\"></i>1-click\ninstall apps</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-rocket\"></i>99.9% Uptime\nGuarantee</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\n<h5 class=\"caps\"><i class=\"fa fa-coffee\"></i>easy-to-use\ncontrol panel</h5>\n[/vc_column_text][margin margin_top=\"30px\"][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-building-o\"></i> Free\nSiteBuilder</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-lock\"></i> SSL\nCertificates</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-paper-plane-o\"></i> Transfer\nWebsite &amp; Domain</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\n<h5 class=\"caps\"><i class=\"fa fa-money\"></i> 30 Day\nMoney Back</h5>\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\n<h5 class=\"caps\"><i class=\"fa fa-headphones\"></i> 24/7/365\nPremium Support</h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section8\"][vc_column][titles type=\"h2\" text=\"JTNDc3Ryb25nJTNFJTBBd2hhdCUyMG91ciUyMGN1c3RvbWVycyUyMHNheSUwQSUzQyUyRnN0cm9uZyUzRQ==\" class=\"caps white\"][margin margin_top=\"20px\"][testimonials words=\"40\" category=\"partners\" template=\"testimonial/layout-3.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"feature_section9\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBRkFRJTIwLSUyMFlvdXIlMjBxdWVzdGlvbnMlM0YlMjBXZSUyMGdvdCUyMGFuc3dlcnMlMjElMEElM0MlMkZzdHJvbmclM0U=\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_half\" width=\"1/2\"][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>How does Web Hosting work?</strong></h4>\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\n[/vc_column_text][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>What tools or software can I use to build my website?</strong></h4>\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\n[/vc_column_text][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>What kind of web hosting plan do I need?</strong></h4>\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\n[/vc_column_text][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>Purchased a hosting plan, now what do I do?</strong></h4>\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"one_half last\" width=\"1/2\"][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>What does free domain registration mean?</strong></h4>\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\n[/vc_column_text][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>How do I transfer my Web pages to your server?</strong></h4>\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\n[/vc_column_text][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>Can I host multiple domain names with my hosting account?</strong></h4>\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\n[/vc_column_text][vc_column_text el_class=\"box\"]\n<h4 class=\"caps\"><strong>Do you offer a money-back guarantee?</strong></h4>\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as web sites still in their infancy their default model text and a search for will uncover many versions have evolved over the years.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"client_logos two\"][vc_column][titles type=\"h3\" text=\"Q3VzdG9tZXIlMjBTaG93Y2FzZQ==\" class=\"caps gray\"][margin margin_top=\"20px\"][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Estado dos Servidores", "", "inherit", "closed", "closed", "", "1572-autosave-v1", "", "", "2017-04-01 16:45:35", "2017-04-01 16:45:35", "", "1572", "https://mlksolutions.org/1572-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9898", "1", "2017-04-04 16:00:49", "2017-04-04 16:00:49", "", "Estado dos Servidores", "", "inherit", "closed", "closed", "", "1572-revision-v1", "", "", "2017-04-04 16:00:49", "2017-04-04 16:00:49", "", "1572", "https://mlksolutions.org/1572-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9899", "1", "2017-04-04 16:04:26", "2017-04-04 16:04:26", "[pum]", "Estado dos Servidores", "", "inherit", "closed", "closed", "", "1572-revision-v1", "", "", "2017-04-04 16:04:26", "2017-04-04 16:04:26", "", "1572", "https://mlksolutions.org/1572-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2174", "1", "2017-04-01 16:45:58", "2017-04-01 16:45:58", "[vc_row king_class=\"price_compare\" king_class_container=\"table-wrapper\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBV2ViJTIwSG9zdGluZyUyMFBsYW4lMjBQZXJmZWN0JTIwRm9yJTIwWW91JTIxJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"50px\"][vc_row_inner][vc_column_inner el_class=\"first rowfirst first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"][vc_column_text el_class=\"title\"]\r\n<div class=\"arrow_box\">\r\n<h5>All Shared Hosting Features</h5>\r\n<h3 class=\"caps\">Choose Perfect Plan</h3>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]\r\n<h4 class=\"caps\">Starter</h4>\r\n<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]\r\n<p class=\"span\">best value</p>\r\n\r\n<h4 class=\"caps white\">Business</h4>\r\n<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]\r\n<h4 class=\"caps\">Premium</h4>\r\n<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nNumber of Websites\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n1 Website\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nMultiple Websites\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nMultiple Websites\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Domain Registration\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nWeb Space\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n5,000MB\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nEmail Accounts\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n25\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nMySQL Databases\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree App Store\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\ncPanel Control Panel\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Daily Backups\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nSearch Engine Optimization\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n99.9% Uptime Guarantee\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nBandwidth\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n20GB\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Setup\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n$1.99\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nAdvanced Security Features\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nExtra\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nExtra\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nFree\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nCloud Hosting\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nMarketing Offers &amp; Credits\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n$250\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\n$500\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n24/7/365 Support\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nWebsite Builder\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n1\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n50\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n30 Day Money Back Guarantee\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"first-row\"][vc_column_inner el_class=\"first rowfirst\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"]\r\n[/vc_column_inner][vc_column_inner el_class=\"rowsremain\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section7\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBQWxsJTIwT3VyJTIwcGxhbnMlMjBpbmNsdWRlJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"20px\"][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-globe\"></i>Free\r\ndomain</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-database\"></i>Unlimited\r\nDatabase</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-wordpress\"></i>1-click\r\ninstall apps</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-rocket\"></i>99.9% Uptime\r\nGuarantee</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-coffee\"></i>easy-to-use\r\ncontrol panel</h5>\r\n[/vc_column_text][margin margin_top=\"30px\"][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-building-o\"></i> Free\r\nSiteBuilder</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-lock\"></i> SSL\r\nCertificates</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-paper-plane-o\"></i> Transfer\r\nWebsite &amp; Domain</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-money\"></i> 30 Day\r\nMoney Back</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-headphones\"></i> 24/7/365\r\nPremium Support</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section8\"][vc_column][titles type=\"h2\" text=\"JTNDc3Ryb25nJTNFJTBBd2hhdCUyMG91ciUyMGN1c3RvbWVycyUyMHNheSUwQSUzQyUyRnN0cm9uZyUzRQ==\" class=\"caps white\"][margin margin_top=\"20px\"][testimonials words=\"40\" category=\"partners\" template=\"testimonial/layout-3.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"feature_section9\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBRkFRJTIwLSUyMFlvdXIlMjBxdWVzdGlvbnMlM0YlMjBXZSUyMGdvdCUyMGFuc3dlcnMlMjElMEElM0MlMkZzdHJvbmclM0U=\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_half\" width=\"1/2\"][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>How does Web Hosting work?</strong></h4>\r\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What tools or software can I use to build my website?</strong></h4>\r\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What kind of web hosting plan do I need?</strong></h4>\r\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Purchased a hosting plan, now what do I do?</strong></h4>\r\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"one_half last\" width=\"1/2\"][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What does free domain registration mean?</strong></h4>\r\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>How do I transfer my Web pages to your server?</strong></h4>\r\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Can I host multiple domain names with my hosting account?</strong></h4>\r\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Do you offer a money-back guarantee?</strong></h4>\r\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as web sites still in their infancy their default model text and a search for will uncover many versions have evolved over the years.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"client_logos two\"][vc_column][titles type=\"h3\" text=\"Q3VzdG9tZXIlMjBTaG93Y2FzZQ==\" class=\"caps gray\"][margin margin_top=\"20px\"][vc_column_text]\r\n\r\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Estado dos Servidores", "", "inherit", "closed", "closed", "", "1572-revision-v1", "", "", "2017-04-01 16:45:58", "2017-04-01 16:45:58", "", "1572", "https://mlksolutions.org/1572-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9849", "1", "2017-04-04 10:32:12", "2017-04-04 10:32:12", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2UlMjBhcmUlMjBBbm5vdW5jaW5nJTIwUGVyZmVjdCUyMFBhY2thZ2UlMjBmb3IlMjB5b3UlM0MlMkZzdHJvbmclM0UlMEElM0NlbSUzRSUwQUFSS0FIT1NUJTIwUHJvdmlkaW5nJTIweW91JTIwd2l0aCUyMGElMjBoZXNpdGF0ZSUyMGZyZWUlMjB3ZWIlMjBob3N0aW5nJTIwc2VydmljZSUyMHdlJTIwdGFrZSUyMHdvcmRzJTIwbG9vayUyMHRoZSUyMGJlbGlldmFibGUuJTBBJTNDJTJGZW0lM0U=\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"4\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2hhdCUyMG1ha2VzJTIwb3VyJTIwV29yZHByZXNzJTIwaG9zdGluZyUyMGlzJTIwQmVzdCUzRiUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQXV0b3VwZGF0ZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VXZSUyMHVwZGF0ZSUyMFdvcmRQcmVzcyUyMGNvcmUlMjBhbmQlMjBwbHVnaW5zJTIwdG8lMjBrZWVwJTIweW91ciUyMHNpdGUlMjBwcm90ZWN0ZWQuJTNDJTJGcCUzRQ==\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQWNjb3VudCUyMElzb2xhdGlvbiUzQyUyRmg0JTNFJTBBJTNDcCUzRVlvdXIlMjB3ZWJzaXRlJTIwd2lsbCUyMGJlJTIwc2FmZSUyMGV2ZW4lMjBpZiUyMHRoZXJlJTIwYXJlJTIwdnVsbmVyYWJsZSUyMGFjY291bnRzLiUzQyUyRnAlM0U=\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFT3B0aW1pemVkJTIwU29mdHdhcmUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VBbGwlMjBzb2Z0d2FyZSUyMHdlJTIwaW5zdGFsbCUyMG9uJTIwb3VyJTIwbWFjaGluZXMlMjBpcyUyMG9wdGltaXplZCUyMGZvciUyMHNwZWVkLiUzQyUyRnAlM0U=\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRGFpbHklMjBCYWNrdXBzJTNDJTJGaDQlM0UlMEElM0NwJTNFV2UlMjBrZWVwJTIwdXAlMjB0byUyMDMwJTIwZGFpbHklMjBiYWNrdXAlMjBjb3BpZXMlMjBvZiUyMHlvdXIlMjBXb3JkUHJlc3MlMjBzaXRlLiUzQyUyRnAlM0U=\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFVW5saW1pdGVkJTIwRW1haWwlMjBBZGRyZXNzZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VDcmVhdGUlMjBhcyUyMG1hbnklMjBlbWFpbCUyMGFkZHJlc3NlcyUyQyUyMGFuZCUyMGVtYWlsJTIwZm9yd2FyZHMlMjBhcyUyMHlvdSUyMG5lZWQlMjElM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRGbGFyZSUyMEludGVncmF0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFQ2FjaGUlMjBjb250ZW50JTIwYW5kJTIwZmlsdGVyJTIwbWFsaWNpb3VzJTIwdHJhZmZpYyUyMGJlZm9yZSUyMGl0JTIwaGl0cyUyMHlvdXIlMjBzZXJ2ZXIuJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU2VydmVyJTIwTGV2ZWwlMjBQcm90ZWN0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjBhJTIwbWFqb3IlMjB2dWxuZXJhYmlsaXR5JTIwYXBwZWFycyUyQyUyMHdlJTIwZGV2ZWxvcCUyMCUyNiUyMGFwcGx5JTIwc2VydmVyLWxldmVsJTIwZml4ZXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRnJlZSUyMDI0JUMzJTk3NyUyRjM2NSUyMFN1cHBvcnQlM0MlMkZoNCUzRSUwQSUzQ3AlM0VZb3UlMjBjYW4lMjByZWFjaCUyMG91ciUyMHRlYW0lMjBhdCUyMGFueSUyMHRpbWUlMkMlMjBkYXklMjBvciUyMG5pZ2h0LiUzQyUyRnAlM0U=\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFMzAlMjBEYXklMjBNb25leS1iYWNrJTIwR3VhcmFudGVlJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjB5b3UlMjdyZSUyMG5vdCUyMGNvbXBsZXRlbHklMjBzYXRpc2ZpZWQlMkMlMjBzaW1wbHklMjBjYW5jZWwlMjB3aXRoaW4lMjAzMCUyMGRheXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"TGF0ZXN0JTIwTmV3cyUyMCUyRiUyMEJsb2dz\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"SGF2ZSUyMFF1ZXN0aW9ucyUzRg==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\r\n<ul>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\r\n\r\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 10:32:12", "2017-04-04 10:32:12", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9848", "1", "2017-04-04 10:31:16", "2017-04-04 10:31:16", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2UlMjBhcmUlMjBBbm5vdW5jaW5nJTIwUGVyZmVjdCUyMFBhY2thZ2UlMjBmb3IlMjB5b3UlM0MlMkZzdHJvbmclM0UlMEElM0NlbSUzRSUwQUFSS0FIT1NUJTIwUHJvdmlkaW5nJTIweW91JTIwd2l0aCUyMGElMjBoZXNpdGF0ZSUyMGZyZWUlMjB3ZWIlMjBob3N0aW5nJTIwc2VydmljZSUyMHdlJTIwdGFrZSUyMHdvcmRzJTIwbG9vayUyMHRoZSUyMGJlbGlldmFibGUuJTBBJTNDJTJGZW0lM0U=\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"4\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\"][vc_raw_html]JTVCd2htcHJlc3NfcHJpY2luZ190YWJsZSUyMGlkJTIwJTNEJTIwJTIyMTAlMjIlNUQ=[/vc_raw_html][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2hhdCUyMG1ha2VzJTIwb3VyJTIwV29yZHByZXNzJTIwaG9zdGluZyUyMGlzJTIwQmVzdCUzRiUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQXV0b3VwZGF0ZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VXZSUyMHVwZGF0ZSUyMFdvcmRQcmVzcyUyMGNvcmUlMjBhbmQlMjBwbHVnaW5zJTIwdG8lMjBrZWVwJTIweW91ciUyMHNpdGUlMjBwcm90ZWN0ZWQuJTNDJTJGcCUzRQ==\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQWNjb3VudCUyMElzb2xhdGlvbiUzQyUyRmg0JTNFJTBBJTNDcCUzRVlvdXIlMjB3ZWJzaXRlJTIwd2lsbCUyMGJlJTIwc2FmZSUyMGV2ZW4lMjBpZiUyMHRoZXJlJTIwYXJlJTIwdnVsbmVyYWJsZSUyMGFjY291bnRzLiUzQyUyRnAlM0U=\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFT3B0aW1pemVkJTIwU29mdHdhcmUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VBbGwlMjBzb2Z0d2FyZSUyMHdlJTIwaW5zdGFsbCUyMG9uJTIwb3VyJTIwbWFjaGluZXMlMjBpcyUyMG9wdGltaXplZCUyMGZvciUyMHNwZWVkLiUzQyUyRnAlM0U=\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRGFpbHklMjBCYWNrdXBzJTNDJTJGaDQlM0UlMEElM0NwJTNFV2UlMjBrZWVwJTIwdXAlMjB0byUyMDMwJTIwZGFpbHklMjBiYWNrdXAlMjBjb3BpZXMlMjBvZiUyMHlvdXIlMjBXb3JkUHJlc3MlMjBzaXRlLiUzQyUyRnAlM0U=\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFVW5saW1pdGVkJTIwRW1haWwlMjBBZGRyZXNzZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VDcmVhdGUlMjBhcyUyMG1hbnklMjBlbWFpbCUyMGFkZHJlc3NlcyUyQyUyMGFuZCUyMGVtYWlsJTIwZm9yd2FyZHMlMjBhcyUyMHlvdSUyMG5lZWQlMjElM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRGbGFyZSUyMEludGVncmF0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFQ2FjaGUlMjBjb250ZW50JTIwYW5kJTIwZmlsdGVyJTIwbWFsaWNpb3VzJTIwdHJhZmZpYyUyMGJlZm9yZSUyMGl0JTIwaGl0cyUyMHlvdXIlMjBzZXJ2ZXIuJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU2VydmVyJTIwTGV2ZWwlMjBQcm90ZWN0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjBhJTIwbWFqb3IlMjB2dWxuZXJhYmlsaXR5JTIwYXBwZWFycyUyQyUyMHdlJTIwZGV2ZWxvcCUyMCUyNiUyMGFwcGx5JTIwc2VydmVyLWxldmVsJTIwZml4ZXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRnJlZSUyMDI0JUMzJTk3NyUyRjM2NSUyMFN1cHBvcnQlM0MlMkZoNCUzRSUwQSUzQ3AlM0VZb3UlMjBjYW4lMjByZWFjaCUyMG91ciUyMHRlYW0lMjBhdCUyMGFueSUyMHRpbWUlMkMlMjBkYXklMjBvciUyMG5pZ2h0LiUzQyUyRnAlM0U=\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFMzAlMjBEYXklMjBNb25leS1iYWNrJTIwR3VhcmFudGVlJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjB5b3UlMjdyZSUyMG5vdCUyMGNvbXBsZXRlbHklMjBzYXRpc2ZpZWQlMkMlMjBzaW1wbHklMjBjYW5jZWwlMjB3aXRoaW4lMjAzMCUyMGRheXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"TGF0ZXN0JTIwTmV3cyUyMCUyRiUyMEJsb2dz\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"SGF2ZSUyMFF1ZXN0aW9ucyUzRg==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\r\n<ul>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\r\n\r\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 10:31:16", "2017-04-04 10:31:16", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2187", "1", "2017-04-01 23:36:24", "2017-04-01 23:36:24", "[vc_row king_class=\"price_compare\" king_class_container=\"table-wrapper\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBV2ViJTIwSG9zdGluZyUyMFBsYW4lMjBQZXJmZWN0JTIwRm9yJTIwWW91JTIxJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"50px\"][vc_row_inner][vc_column_inner el_class=\"first rowfirst first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"][vc_column_text el_class=\"title\"]\r\n<div class=\"arrow_box\">\r\n<h5>All Shared Hosting Features</h5>\r\n<h3 class=\"caps\">Choose Perfect Plan</h3>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]\r\n<h4 class=\"caps\">Starter</h4>\r\n<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]\r\n<p class=\"span\">best value</p>\r\n\r\n<h4 class=\"caps white\">Business</h4>\r\n<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]\r\n<h4 class=\"caps\">Premium</h4>\r\n<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nNumber of Websites\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n1 Website\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nMultiple Websites\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nMultiple Websites\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Domain Registration\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nWeb Space\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n5,000MB\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nEmail Accounts\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n25\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nMySQL Databases\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree App Store\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\ncPanel Control Panel\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Daily Backups\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nSearch Engine Optimization\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n99.9% Uptime Guarantee\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nBandwidth\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n20GB\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nFree Setup\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n$1.99\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nAdvanced Security Features\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nExtra\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\nExtra\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nFree\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nCloud Hosting\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nMarketing Offers &amp; Credits\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-times gray\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n$250\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\n$500\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n24/7/365 Support\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"th\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\nWebsite Builder\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n1\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n\r\n50\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n\r\nUnlimited\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"td\"][vc_column_inner el_class=\"first rowfirst\" width=\"1/4\"][vc_column_text]\r\n\r\n30 Day Money Back Guarantee\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" width=\"1/4\"][vc_column_text]\r\n<div class=\"fa fa-check sitecolor\"></div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner king_class=\"first-row\"][vc_column_inner el_class=\"first rowfirst\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"200\"]\r\n[/vc_column_inner][vc_column_inner el_class=\"rowsremain\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"300\"][vc_column_text el_class=\"prices\"]<strong>$2.95<i>/M</i></strong> <b>Regularly <em>$4.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain first-row center\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"400\"][vc_column_text el_class=\"prices\"]<strong>$4.50<i>/M</i></strong> <b>Regularly <em>$8.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"rowsremain last\" el_animate=\"animated eff-fadeIn\" width=\"1/4\" el_delay=\"500\"][vc_column_text el_class=\"prices\"]<strong>$9.75<i>/M</i></strong> <b>Regularly <em>$18.99</em></b>\r\n<a href=\"#\">Buy Now</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section7\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBQWxsJTIwT3VyJTIwcGxhbnMlMjBpbmNsdWRlJTBBJTNDJTJGc3Ryb25nJTNF\" effect=\" animated eff-fadeIn delay-200ms\" class=\"caps\"][margin margin_top=\"20px\"][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-globe\"></i>Free\r\ndomain</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-database\"></i>Unlimited\r\nDatabase</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-wordpress\"></i>1-click\r\ninstall apps</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-rocket\"></i>99.9% Uptime\r\nGuarantee</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-coffee\"></i>easy-to-use\r\ncontrol panel</h5>\r\n[/vc_column_text][margin margin_top=\"30px\"][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-building-o\"></i> Free\r\nSiteBuilder</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-lock\"></i> SSL\r\nCertificates</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-paper-plane-o\"></i> Transfer\r\nWebsite &amp; Domain</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-money\"></i> 30 Day\r\nMoney Back</h5>\r\n[/vc_column_text][vc_column_text el_class=\"one_fifth_less last\"]\r\n<h5 class=\"caps\"><i class=\"fa fa-headphones\"></i> 24/7/365\r\nPremium Support</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section8\"][vc_column][titles type=\"h2\" text=\"JTNDc3Ryb25nJTNFJTBBd2hhdCUyMG91ciUyMGN1c3RvbWVycyUyMHNheSUwQSUzQyUyRnN0cm9uZyUzRQ==\" class=\"caps white\"][margin margin_top=\"20px\"][testimonials words=\"40\" category=\"partners\" template=\"testimonial/layout-3.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"feature_section9\"][vc_column][titles type=\"h1\" text=\"JTNDc3Ryb25nJTNFJTBBRkFRJTIwLSUyMFlvdXIlMjBxdWVzdGlvbnMlM0YlMjBXZSUyMGdvdCUyMGFuc3dlcnMlMjElMEElM0MlMkZzdHJvbmclM0U=\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_half\" width=\"1/2\"][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>How does Web Hosting work?</strong></h4>\r\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What tools or software can I use to build my website?</strong></h4>\r\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What kind of web hosting plan do I need?</strong></h4>\r\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Purchased a hosting plan, now what do I do?</strong></h4>\r\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"one_half last\" width=\"1/2\"][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>What does free domain registration mean?</strong></h4>\r\n<p class=\"bigtfont\">Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>How do I transfer my Web pages to your server?</strong></h4>\r\n<p class=\"bigtfont\">Desktop publishing packages and web page editors now use Lorem Ipsum as their default model text and a search</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Can I host multiple domain names with my hosting account?</strong></h4>\r\n<p class=\"bigtfont\">Lorem Ipsum as their default model text and a search for will uncover many web sites still in their infancy versions have evolved over the years.</p>\r\n[/vc_column_text][vc_column_text el_class=\"box\"]\r\n<h4 class=\"caps\"><strong>Do you offer a money-back guarantee?</strong></h4>\r\n<p class=\"bigtfont\">Web page editors now use Lorem Ipsum as web sites still in their infancy their default model text and a search for will uncover many versions have evolved over the years.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"client_logos two\"][vc_column][titles type=\"h3\" text=\"Q3VzdG9tZXIlMjBTaG93Y2FzZQ==\" class=\"caps gray\"][margin margin_top=\"20px\"][vc_column_text]\r\n\r\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-revision-v1", "", "", "2017-04-01 23:36:24", "2017-04-01 23:36:24", "", "1571", "https://mlksolutions.org/1571-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2189", "1", "2017-04-01 23:53:28", "2017-04-01 23:53:28", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2UlMjBhcmUlMjBBbm5vdW5jaW5nJTIwUGVyZmVjdCUyMFBhY2thZ2UlMjBmb3IlMjB5b3UlM0MlMkZzdHJvbmclM0UlMEElM0NlbSUzRSUwQUFSS0FIT1NUJTIwUHJvdmlkaW5nJTIweW91JTIwd2l0aCUyMGElMjBoZXNpdGF0ZSUyMGZyZWUlMjB3ZWIlMjBob3N0aW5nJTIwc2VydmljZSUyMHdlJTIwdGFrZSUyMHdvcmRzJTIwbG9vayUyMHRoZSUyMGJlbGlldmFibGUuJTBBJTNDJTJGZW0lM0U=\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"4\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2hhdCUyMG1ha2VzJTIwb3VyJTIwV29yZHByZXNzJTIwaG9zdGluZyUyMGlzJTIwQmVzdCUzRiUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQXV0b3VwZGF0ZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VXZSUyMHVwZGF0ZSUyMFdvcmRQcmVzcyUyMGNvcmUlMjBhbmQlMjBwbHVnaW5zJTIwdG8lMjBrZWVwJTIweW91ciUyMHNpdGUlMjBwcm90ZWN0ZWQuJTNDJTJGcCUzRQ==\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQWNjb3VudCUyMElzb2xhdGlvbiUzQyUyRmg0JTNFJTBBJTNDcCUzRVlvdXIlMjB3ZWJzaXRlJTIwd2lsbCUyMGJlJTIwc2FmZSUyMGV2ZW4lMjBpZiUyMHRoZXJlJTIwYXJlJTIwdnVsbmVyYWJsZSUyMGFjY291bnRzLiUzQyUyRnAlM0U=\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFT3B0aW1pemVkJTIwU29mdHdhcmUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VBbGwlMjBzb2Z0d2FyZSUyMHdlJTIwaW5zdGFsbCUyMG9uJTIwb3VyJTIwbWFjaGluZXMlMjBpcyUyMG9wdGltaXplZCUyMGZvciUyMHNwZWVkLiUzQyUyRnAlM0U=\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRGFpbHklMjBCYWNrdXBzJTNDJTJGaDQlM0UlMEElM0NwJTNFV2UlMjBrZWVwJTIwdXAlMjB0byUyMDMwJTIwZGFpbHklMjBiYWNrdXAlMjBjb3BpZXMlMjBvZiUyMHlvdXIlMjBXb3JkUHJlc3MlMjBzaXRlLiUzQyUyRnAlM0U=\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFVW5saW1pdGVkJTIwRW1haWwlMjBBZGRyZXNzZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VDcmVhdGUlMjBhcyUyMG1hbnklMjBlbWFpbCUyMGFkZHJlc3NlcyUyQyUyMGFuZCUyMGVtYWlsJTIwZm9yd2FyZHMlMjBhcyUyMHlvdSUyMG5lZWQlMjElM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRGbGFyZSUyMEludGVncmF0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFQ2FjaGUlMjBjb250ZW50JTIwYW5kJTIwZmlsdGVyJTIwbWFsaWNpb3VzJTIwdHJhZmZpYyUyMGJlZm9yZSUyMGl0JTIwaGl0cyUyMHlvdXIlMjBzZXJ2ZXIuJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU2VydmVyJTIwTGV2ZWwlMjBQcm90ZWN0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjBhJTIwbWFqb3IlMjB2dWxuZXJhYmlsaXR5JTIwYXBwZWFycyUyQyUyMHdlJTIwZGV2ZWxvcCUyMCUyNiUyMGFwcGx5JTIwc2VydmVyLWxldmVsJTIwZml4ZXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRnJlZSUyMDI0JUMzJTk3NyUyRjM2NSUyMFN1cHBvcnQlM0MlMkZoNCUzRSUwQSUzQ3AlM0VZb3UlMjBjYW4lMjByZWFjaCUyMG91ciUyMHRlYW0lMjBhdCUyMGFueSUyMHRpbWUlMkMlMjBkYXklMjBvciUyMG5pZ2h0LiUzQyUyRnAlM0U=\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFMzAlMjBEYXklMjBNb25leS1iYWNrJTIwR3VhcmFudGVlJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjB5b3UlMjdyZSUyMG5vdCUyMGNvbXBsZXRlbHklMjBzYXRpc2ZpZWQlMkMlMjBzaW1wbHklMjBjYW5jZWwlMjB3aXRoaW4lMjAzMCUyMGRheXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"TGF0ZXN0JTIwTmV3cyUyMCUyRiUyMEJsb2dz\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"SGF2ZSUyMFF1ZXN0aW9ucyUzRg==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-01 23:53:28", "2017-04-01 23:53:28", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2188", "1", "2017-04-01 23:41:23", "2017-04-01 23:41:23", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-1\"][/vc_column][/vc_row][vc_row king_class=\"domain_search\"][vc_column][domain_checker html_before=\"JTNDaDUlMjBjbGFzcyUzRCUyMndoaXRlJTIwY2FwcyUyMiUzRUZpbmQlMjB5b3VyJTIwUGVyZmVjdCUyMERvbWFpbiUyME5hbWUlM0ElM0MlMkZoNSUzRQ==\" title=\"Find your Perfect Domain Name: \" text_before=\"JTNDaDUlMjBjbGFzcyUzRCUyMndoaXRlJTIwY2FwcyUyMiUzRUZpbmQlMjB5b3VyJTIwUGVyZmVjdCUyMERvbWFpbiUyME5hbWUlM0ElM0MlMkZoNSUzRQ==\"][vc_row_inner king_class=\"offers\"][vc_column_inner el_animate=\"animated eff-fadeInUp\" el_delay=\"300\"][vc_column_text]\r\n<ul>\r\n	<li><strong>.com</strong> $5.75</li>\r\n	<li><strong>.net</strong> $9.45</li>\r\n	<li><strong>.org</strong> $7.50</li>\r\n	<li><strong>.us</strong> $5.99</li>\r\n	<li><strong>.biz</strong> $9.99</li>\r\n	<li class=\"last\"><small>* All prices\r\nper annum</small></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2UlMjBhcmUlMjBBbm5vdW5jaW5nJTIwUGVyZmVjdCUyMFBhY2thZ2UlMjBmb3IlMjB5b3UlM0MlMkZzdHJvbmclM0UlMEElM0NlbSUzRSUwQUFSS0FIT1NUJTIwUHJvdmlkaW5nJTIweW91JTIwd2l0aCUyMGElMjBoZXNpdGF0ZSUyMGZyZWUlMjB3ZWIlMjBob3N0aW5nJTIwc2VydmljZSUyMHdlJTIwdGFrZSUyMHdvcmRzJTIwbG9vayUyMHRoZSUyMGJlbGlldmFibGUuJTBBJTNDJTJGZW0lM0U=\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"4\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2hhdCUyMG1ha2VzJTIwb3VyJTIwV29yZHByZXNzJTIwaG9zdGluZyUyMGlzJTIwQmVzdCUzRiUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQXV0b3VwZGF0ZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VXZSUyMHVwZGF0ZSUyMFdvcmRQcmVzcyUyMGNvcmUlMjBhbmQlMjBwbHVnaW5zJTIwdG8lMjBrZWVwJTIweW91ciUyMHNpdGUlMjBwcm90ZWN0ZWQuJTNDJTJGcCUzRQ==\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQWNjb3VudCUyMElzb2xhdGlvbiUzQyUyRmg0JTNFJTBBJTNDcCUzRVlvdXIlMjB3ZWJzaXRlJTIwd2lsbCUyMGJlJTIwc2FmZSUyMGV2ZW4lMjBpZiUyMHRoZXJlJTIwYXJlJTIwdnVsbmVyYWJsZSUyMGFjY291bnRzLiUzQyUyRnAlM0U=\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFT3B0aW1pemVkJTIwU29mdHdhcmUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VBbGwlMjBzb2Z0d2FyZSUyMHdlJTIwaW5zdGFsbCUyMG9uJTIwb3VyJTIwbWFjaGluZXMlMjBpcyUyMG9wdGltaXplZCUyMGZvciUyMHNwZWVkLiUzQyUyRnAlM0U=\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRGFpbHklMjBCYWNrdXBzJTNDJTJGaDQlM0UlMEElM0NwJTNFV2UlMjBrZWVwJTIwdXAlMjB0byUyMDMwJTIwZGFpbHklMjBiYWNrdXAlMjBjb3BpZXMlMjBvZiUyMHlvdXIlMjBXb3JkUHJlc3MlMjBzaXRlLiUzQyUyRnAlM0U=\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFVW5saW1pdGVkJTIwRW1haWwlMjBBZGRyZXNzZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VDcmVhdGUlMjBhcyUyMG1hbnklMjBlbWFpbCUyMGFkZHJlc3NlcyUyQyUyMGFuZCUyMGVtYWlsJTIwZm9yd2FyZHMlMjBhcyUyMHlvdSUyMG5lZWQlMjElM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRGbGFyZSUyMEludGVncmF0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFQ2FjaGUlMjBjb250ZW50JTIwYW5kJTIwZmlsdGVyJTIwbWFsaWNpb3VzJTIwdHJhZmZpYyUyMGJlZm9yZSUyMGl0JTIwaGl0cyUyMHlvdXIlMjBzZXJ2ZXIuJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU2VydmVyJTIwTGV2ZWwlMjBQcm90ZWN0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjBhJTIwbWFqb3IlMjB2dWxuZXJhYmlsaXR5JTIwYXBwZWFycyUyQyUyMHdlJTIwZGV2ZWxvcCUyMCUyNiUyMGFwcGx5JTIwc2VydmVyLWxldmVsJTIwZml4ZXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRnJlZSUyMDI0JUMzJTk3NyUyRjM2NSUyMFN1cHBvcnQlM0MlMkZoNCUzRSUwQSUzQ3AlM0VZb3UlMjBjYW4lMjByZWFjaCUyMG91ciUyMHRlYW0lMjBhdCUyMGFueSUyMHRpbWUlMkMlMjBkYXklMjBvciUyMG5pZ2h0LiUzQyUyRnAlM0U=\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFMzAlMjBEYXklMjBNb25leS1iYWNrJTIwR3VhcmFudGVlJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjB5b3UlMjdyZSUyMG5vdCUyMGNvbXBsZXRlbHklMjBzYXRpc2ZpZWQlMkMlMjBzaW1wbHklMjBjYW5jZWwlMjB3aXRoaW4lMjAzMCUyMGRheXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_row_type=\"container_full\" king_class=\"feature_section2\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFaG93JTIwdG8lMjBidWlsZCUyMHlvdXIlMjB3ZWJzaXRlJTIwT25saW5lJTIwVG9kYXklM0YlM0MlMkZzdHJvbmclM0U=\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps sitecolor\" wrpclass=\"title\"][vc_row_inner king_class=\"twoboxes\" king_class_container=\"container\"][vc_column_inner el_class=\"left\" el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_delay=\"200\"][elements des=\"JTNDc3Ryb25nJTNFJTBBJTA5JTNDZW0lM0VDcmVhdGUlMjB5b3VyJTIwb3duJTIwd2Vic2l0ZSUyMHdpdGglMjBvdXIlM0MlMkZlbSUzRSUwQSUwOVdlYiUyMHNpdGUlMjBidWlsZGVyJTBBJTNDJTJGc3Ryb25nJTNFJTBBJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJjbGVhcmZpeCUyMiUzRSUzQyUyRmRpdiUzRSUwQSUwQSUzQ3VsJTNFJTBBJTA5JTNDbGklM0UlMEElMDklM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWxvbmctYXJyb3ctcmlnaHQlMjIlM0UlM0MlMkZpJTNFJTIwRUFTWSUyMFRPJTIwVVNFJTIwLSUyMGJ1aWxkJTIweW91ciUyMHByb2Zlc3Npb25hbCUyMHNpdGUlMjBzaW1wbHkuJTBBJTA5JTNDJTJGbGklM0UlMEElMDklM0NsaSUzRSUwQSUwOSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtbG9uZy1hcnJvdy1yaWdodCUyMiUzRSUzQyUyRmklM0UlMjBIVU5EUkVEUyUyMSUyMG9mJTIwY3VzdG9taXphYmxlJTIwZGVzaWducyUyQyUyMG1lZGlhJTIwY29udGVudHMuJTBBJTA5JTNDJTJGbGklM0UlMEElMDklM0NsaSUzRSUwQSUwOSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtbG9uZy1hcnJvdy1yaWdodCUyMiUzRSUzQyUyRmklM0UlMjAlMjBGUkVFJTIwZG9tYWluJTJDJTIwaG9zdGluZyUyQyUyMGRhdGFiYXNlJTJDJTIwRlRQJTIwYWNjb3VudCUyMGFuZCUyMGJ1c2luZXNzJTIwZW1haWwuJTBBJTA5JTNDZGl2JTIwY2xhc3MlM0QlMjJzaXRlY29sb3IlMjIlM0VTdGFydGluZyUyMGF0JTIwSnVzdCUyMCUyNDIuOTklMjBvbmx5LiUzQyUyRmRpdiUzRSUwQSUwOSUzQyUyRmxpJTNFJTBBJTA5JTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUyMGNsYXNzJTNEJTIyYnV0dG9uJTIwb25lJTIyJTNFUmVhZCUyME1vcmUlM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElM0MlMkZ1bCUzRQ==\" icon_awesome=\"desktop\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"right\" el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_delay=\"200\"][elements des=\"JTNDc3Ryb25nJTNFJTBBJTA5JTNDZW0lM0VFYXN5JTIwQ3JlYXRlJTJDJTIwTWFuYWdlJTIwJTI2JTIwU2VsbC4lM0MlMkZlbSUzRSUwQSUwOU9ubGluZSUyMFN0b3JlJTBBJTNDJTJGc3Ryb25nJTNFJTBBJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJjbGVhcmZpeCUyMiUzRSUzQyUyRmRpdiUzRSUwQSUwQSUzQ3VsJTNFJTBBJTA5JTNDbGklM0UlMEElMDklM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWxvbmctYXJyb3ctcmlnaHQlMjIlM0UlM0MlMkZpJTNFJTIwR0VUJTIwTU9SRSUyMENVU1RPTUVSUyUyMHdpdGglMjBidWlsdC1pbiUyMFNFTyUyMHRvb2xzLiUwQSUwOSUzQyUyRmxpJTNFJTBBJTA5JTNDbGklM0UlMEElMDklM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWxvbmctYXJyb3ctcmlnaHQlMjIlM0UlM0MlMkZpJTNFJTIwU0hJUCUyMEFOWVdIRVJFJTIwd2l0aCUyMGZsZXhpYmxlJTIwcmF0ZXMuJTBBJTA5JTNDJTJGbGklM0UlMEElMDklM0NsaSUzRSUwQSUwOSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtbG9uZy1hcnJvdy1yaWdodCUyMiUzRSUzQyUyRmklM0UlMjBTQVZFJTIwTU9ORVklMjB3aXRoJTIwZnJlZSUyMGhvc3RpbmclMjBhbmQlMjB1bmxpbWl0ZWQlMjBiYW5kd2lkdGguJTBBJTA5JTNDZGl2JTIwY2xhc3MlM0QlMjJzaXRlY29sb3IlMjIlM0VTdGFydGluZyUyMGF0JTIwSnVzdCUyMCUyNDE5Ljk5JTIwb25seS4lM0MlMkZkaXYlM0UlMEElMDklM0MlMkZsaSUzRSUwQSUwOSUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMjMlMjIlMjBjbGFzcyUzRCUyMmJ1dHRvbiUyMG9uZSUyMiUzRVJlYWQlMjBNb3JlJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTNDJTJGdWwlM0U=\" icon_awesome=\"opencart\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_bg_repeat=\"center\" king_row_type=\"container_full\" bg_image=\"1287\" bg_color=\"#f3f3f3\"][vc_column el_animate=\"animated eff-zoomIn\" el_delay=\"300\"][videoplay left=\"JTNDaDMlMjBjbGFzcyUzRCUyMnRleHQzJTIwdHdvJTIwY2FwcyUyMiUyMHN0eWxlJTNEJTIyZm9udC1zaXplJTNBJTIwMThweCUzQmxpbmUtaGVpZ2h0JTNBJTIwMzBweCUzQiUyMiUzRSUwQSUzQ3N0cm9uZyUzRUZpcnN0JTIwVGltZSUyMEJ1aWxkaW5nJTNGJTNDYnIlM0UlMEFXZWJzaXRlJTJDJTIwRG9tYWluJTIwb3IlMjBIb3N0aW5nJTIwV2UlMjBDYW4lMjBIZWxwLiUzQyUyRnN0cm9uZyUzRSUwQSUzQyUyRmgzJTNF\" right=\"JTNDaDElMjBjbGFzcyUzRCUyMnRleHQ0JTIwY2FwcyUyMiUyMHN0eWxlJTNEJTIyZm9udC1zaXplJTNBJTIwNDVweCUzQmxpbmUtaGVpZ2h0JTNBJTIwNTBweCUzQiUyMiUzRSUwQSUzQ3N0cm9uZyUzRVdhdGNoJTIwdmlkZW9zJTIwdG8lM0NiciUzRSUwQWtub3clMjBtb3JlJTNDJTJGc3Ryb25nJTNFJTBBJTNDJTJGaDElM0U=\" id=\"\" height=\"580\" url=\"https://www.youtube.com/watch?v=FcCSN859xR8\"][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"TGF0ZXN0JTIwTmV3cyUyMCUyRiUyMEJsb2dz\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"SGF2ZSUyMFF1ZXN0aW9ucyUzRg==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"parallax_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2hhdCUyMG1vcmUlMjB3ZSUyMG9mZmVyJTNDJTJGc3Ryb25nJTNF\" type=\"h1\" class=\"caps\" effect=\" animated eff-fadeInUp delay-200ms\"][margin margin_top=\"10px\"][vc_tabs interval=\"0\" type=\"ipad-sliders\" el_class=\"detached animated eff-fadeInUp delay-250ms\"][vc_tab title=\"Hosting\" tab_id=\"def1436093735-1-65\"][vc_row_inner][vc_column_inner width=\"4/12\"][vc_single_image image=\"1316\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"8/12\"][vc_column_text]\r\n<h2>Web hosting packages provide quality web hosting with unlimited resources.</h2>\r\n<p class=\"bigtfont dark\">All of our web hosting plans are carefully tailored. On top of the standard features like free domain names, 24/7 technical support, 99.9% uptime, etc., we add our own custom-made solutions to make your website faster, safer, and better supported than anywhere else.</p>\r\n\r\n&nbsp;\r\n\r\n<a class=\"button two\" href=\"#\">Learn More</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tab][vc_tab title=\"Websites\" tab_id=\"1438590307034-1-2\"][vc_row_inner][vc_column_inner width=\"4/12\"][vc_single_image image=\"1323\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"8/12\"][vc_column_text]\r\n<h2>Website Builder packages provide quality web hosting with unlimited resources.</h2>\r\n<p class=\"bigtfont dark\">With ArkaHost’s website builder, it’s easy to create a sleek and professional website for your business. Choose from 40 fully customizable, mobile-friendly templates, and then drag and drop your content wherever you please.</p>\r\n\r\n&nbsp;\r\n\r\n<a class=\"button two\" href=\"#\">Learn More</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tab][vc_tab title=\"Domains\" tab_id=\"1438590370593-2-2\"][vc_row_inner][vc_column_inner width=\"4/12\"][vc_single_image image=\"1324\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"8/12\"][vc_column_text]\r\n<h2>Domain packages provide quality web hosting with unlimited resources.</h2>\r\n<p class=\"bigtfont dark\">ArkaHost is an ICANN-accredited domain name registrar. In addition to great pricing and a commitment to world-class customer service, we offer web hosting, email, website builder, premium and expired domain names, and SSL certificates.</p>\r\n\r\n&nbsp;\r\n\r\n<a class=\"button two\" href=\"#\">Learn More</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tab][vc_tab title=\"Ecommerce\" tab_id=\"1438590411922-3-8\"][vc_row_inner][vc_column_inner width=\"4/12\"][vc_single_image image=\"1325\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"8/12\"][vc_column_text]\r\n<h2>eCommerce packages provide quality web hosting with unlimited resources.</h2>\r\n<p class=\"bigtfont dark\">Customize your store’s look and feel. Choose from 100s of designer made templates, and change anything you want to create your professional eCommerce website. Just drag n’ drop. No tech skills needed.</p>\r\n\r\n&nbsp;\r\n\r\n<a class=\"button two\" href=\"#\">Learn More</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tab][vc_tab title=\"Mobile\" tab_id=\"1438590447242-4-6\"][vc_row_inner][vc_column_inner width=\"4/12\"][vc_single_image image=\"1326\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"8/12\"][vc_column_text]\r\n<h2>Mobile website packages provide quality web hosting with unlimited resources.</h2>\r\n<p class=\"bigtfont dark\">Create a mobile website in just a few easy steps. Simply enter your desktop site’s URL and we’ll automatically create its mobile version, completely filled with all of your content.</p>\r\n\r\n&nbsp;\r\n\r\n<a class=\"button two\" href=\"#\">Learn More</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tab][/vc_tabs][/vc_column][/vc_row][vc_row king_class=\"feature_section4\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/3\" el_class=\"left\" el_delay=\"200\"][titles text=\"JTNDZW0lM0VTZWN1cmUtRmFzdC1SZWxpYWJsZSUzQyUyRmVtJTNFJTBBU2hhcmVkJTIwSG9zdGluZw==\" type=\"strong\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMndoaXRlJTIwbGlnaHQlMjIlM0VBbGwlMjBob3N0aW5nJTIwZmVhdHVyZXMlMjB1c2VkJTIwdGVtcGFsdGUlM0MlMkZoNCUzRSUwQSUzQ2JyJTIwJTJGJTNFJTBB\" image=\"1331\" link=\"#\" linkclass=\"button three\" retina=\"yes\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/3\" el_class=\"center\" el_delay=\"200\"][titles text=\"JTNDZW0lM0VUcnVzdCUyMFBhcnRuZXIlMjB5b3VyJTIwQ2hvaWNlJTNDJTJGZW0lM0UlMEFSZXNlbGxlciUyMEhvc3Rpbmc=\" type=\"strong\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMndoaXRlJTIwbGlnaHQlMjIlM0VBbGwlMjBob3N0aW5nJTIwZmVhdHVyZXMlMjB1c2VkJTIwdGVtcGFsdGUlM0MlMkZoNCUzRSUwQSUzQ2JyJTIwJTJGJTNFJTBB\" image=\"1330\" link=\"#\" linkclass=\"button three\" retina=\"yes\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/3\" el_class=\"right\" el_delay=\"200\"][titles text=\"JTNDZW0lM0VTdG9yaW5nJTIwUmVzb3VyY2VzJTNDJTJGZW0lM0UlMEFDbG91ZCUyMENvbXB1dGluZw==\" type=\"strong\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQWxsJTIwaG9zdGluZyUyMGZlYXR1cmVzJTIwdXNlZCUyMHRlbXBhbHRlJTNDJTJGaDQlM0UlMEElM0NiciUyMCUyRiUzRSUwQQ==\" image=\"1332\" link=\"#\" linkclass=\"button three\" retina=\"yes\"][/vc_column][/vc_row][vc_row king_class=\"parallax_section2\"][vc_column][titles text=\"TW9yZSUyMHRoYW4lMjAyMDAlMkMwMDAlMjB3ZWJzaXRlcyUyMGhvc3RlZA==\" type=\"h4\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps gray\"][titles text=\"JTNDc3Ryb25nJTNFZ2V0JTIweW91ciUyMHdlYnNpdGUlMjBvbmxpbmUlMjB0b2RheSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-300ms\" class=\"caps\"][vc_row_inner][vc_column_inner el_class=\"counters12\" el_animate=\"animated eff-fadeInUp\" el_delay=\"350\"][elements des=\"JTNDaDUlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJvamVjdHMlM0MlMkZoNSUzRSUyMCUwQSUzQ2gxJTIwY2xhc3MlM0QlMjJjb3VudGVyJTIyJTNFNzI1ODY1JTNDJTJGaDElM0U=\" class=\"one_fifth_less\"][elements des=\"JTNDaDUlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xpZW50cyUzQyUyRmg1JTNFJTIwJTBBJTNDaDElMjBjbGFzcyUzRCUyMmNvdW50ZXIlMjIlM0UyNzAwMCUzQyUyRmgxJTNF\" class=\"one_fifth_less\"][elements des=\"JTNDaDUlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQXdhcmRzJTNDJTJGaDUlM0UlMjAlMEElM0NoMSUyMGNsYXNzJTNEJTIyY291bnRlciUyMiUzRTkwJTNDJTJGaDElM0U=\" class=\"one_fifth_less\"][elements des=\"JTNDaDUlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRG9tYWlucyUzQyUyRmg1JTNFJTIwJTBBJTNDaDElMjBjbGFzcyUzRCUyMmNvdW50ZXIlMjIlM0U0NTAwMCUzQyUyRmgxJTNF\" class=\"one_fifth_less\"][elements des=\"JTNDaDUlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRGF5cyUzQyUyRmg1JTNFJTIwJTBBJTNDaDElMjBjbGFzcyUzRCUyMmNvdW50ZXIlMjIlM0UzNjAlM0MlMkZoMSUzRQ==\" class=\"one_fifth_less last\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_row_type=\"container_full\"][vc_column][margin margin_top=\"90px\"][vc_row_inner][vc_column_inner el_class=\"alicent\"][titles text=\"TW9yZSUyMHRoYW4lMjAyMDAlMkMwMDAlMjB3ZWJzaXRlcyUyMGhvc3RlZA==\" type=\"h4\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][titles text=\"JTNDc3Ryb25nJTNFZ2V0JTIweW91ciUyMHdlYnNpdGUlMjBvbmxpbmUlMjB0b2RheSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-300ms\" class=\"caps\"][/vc_column_inner][/vc_row_inner][margin margin_top=\"50px\"][vc_tabs interval=\"0\" type=\"outline\" el_class=\"animated eff-fadeInUp delay-400ms\"][vc_tab title=\"Tab 1\" tab_id=\"def1438592515-1-42\"][vc_single_image image=\"1342\" img_size=\"full\" alignment=\"center\" onclick=\"custom_link\" link=\"#\"][/vc_tab][vc_tab title=\"Tab 2\" tab_id=\"def1438592515-2-76\"][vc_single_image image=\"1343\" img_size=\"full\" alignment=\"center\"][/vc_tab][vc_tab title=\"Tab 2\" tab_id=\"1438595405472-2-2\"][vc_single_image image=\"1344\" img_size=\"full\" alignment=\"center\"][/vc_tab][/vc_tabs][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\r\n<ul>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\r\n	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\r\n\r\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-01 23:41:23", "2017-04-01 23:41:23", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("2198", "1", "2017-04-02 01:08:23", "2017-04-02 01:08:23", "", "logo MLK_final-09", "", "inherit", "open", "closed", "", "logo-mlk_final-09-3", "", "", "2017-04-02 01:08:23", "2017-04-02 01:08:23", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/logo-MLK_final-09-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2199", "1", "2017-04-02 01:10:45", "2017-04-02 01:10:45", "", "cutmypic", "", "inherit", "open", "closed", "", "cutmypic", "", "", "2017-04-02 01:10:45", "2017-04-02 01:10:45", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/cutmypic.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2202", "1", "2017-04-03 11:37:22", "2017-04-03 11:37:22", "", "MLK CARE-01", "", "inherit", "open", "closed", "", "mlk-care-01", "", "", "2017-04-03 11:37:22", "2017-04-03 11:37:22", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-01.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2203", "1", "2017-04-03 11:37:25", "2017-04-03 11:37:25", "", "MLK CARE-02", "", "inherit", "open", "closed", "", "mlk-care-02", "", "", "2017-04-04 15:53:46", "2017-04-04 15:53:46", "", "1571", "https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("2204", "1", "2017-04-03 11:37:28", "2017-04-03 11:37:28", "", "MLK CARE-03", "", "inherit", "open", "closed", "", "mlk-care-03", "", "", "2017-04-03 11:37:28", "2017-04-03 11:37:28", "", "0", "https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-03.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("6458", "1", "2016-02-02 07:49:34", "2016-02-02 07:49:34", "[vc_row][vc_column width=\"1/4\"][distance type=\"2\"][iconbox type=\"10\" icon_title=\"Linux Hosting\" iconbox_content=\"A partir de 2.5€ mês\" icon_link_text=\"Saber Mais\" icon_link_url=\"?page_id=9289\" icon_name=\"sl-layers\"][distance][/vc_column][vc_column width=\"1/4\"][distance type=\"2\"][iconbox type=\"10\" icon_title=\"Low Cost Hosting\" iconbox_content=\"A partir de 1€ mês\" icon_link_text=\"Saber mais\" icon_link_url=\"?page_id=6405\" icon_name=\"sl-rocket\"][distance][/vc_column][vc_column width=\"1/4\"][distance type=\"2\"][iconbox type=\"10\" icon_title=\"MLK Care\" iconbox_content=\"Hosting para Associações de Solidariedade Social\" icon_link_text=\"Saber Mais\" icon_link_url=\"?page_id=9296\" icon_name=\"icon-heart\"][distance][/vc_column][/vc_row]", "mega_menu_content (hosting menu)", "", "publish", "closed", "closed", "", "mega_menu_content-hosting-menu", "", "", "2016-02-02 07:49:34", "2016-02-02 07:49:34", "", "0", "http://webnus.biz/themes/easyweb/host/?page_id=6458", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("6478", "1", "2016-02-02 08:22:36", "2016-02-02 08:22:36", "[vc_row][vc_column width=\"1/3\"][distance type=\"2\"][vc_column_text]\n<h3 style=\"color: #4fc1e9; font-size: 33px; margin-top: -2px; line-light: 1;\">CONTACTE</h3>\n<span style=\"color: #32b566;\">MLK Solutions</span><span style=\"color: #000000;\"> sempre pronto e disponível para o ajudar.</span>[/vc_column_text][distance][/vc_column][vc_column width=\"1/3\"][distance type=\"2\"][vc_column_text]\n<h5 style=\"color: #ffffff;\"><span style=\"color: #000000;\"><strong>Contactos rápidos</strong></span></h5>\n<span style=\"color: #32b566;\">Morada:</span> Avenida Afonso Costa nº 47, 4º Drt - 2745-232 Queluz[/vc_column_text][vc_separator][distance][vc_column_text]<span style=\"color: #32b566;\">Telefone:</span> + 351 96 603 6440\n<span style=\"color: #32b566;\">Email:</span> support@mlk.pt\nar@mlk.pt[/vc_column_text][/vc_column][vc_column width=\"1/3\"][distance type=\"2\"][contact-form-7 id=\"6481\"][distance][/vc_column][/vc_row]", "mega_menu_contact", "", "publish", "closed", "closed", "", "mega_menu_contact", "", "", "2016-02-02 08:22:36", "2016-02-02 08:22:36", "", "0", "http://webnus.biz/themes/easyweb/host/?page_id=6478", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("6508", "1", "2016-02-02 10:19:15", "2016-02-02 10:19:15", "[vc_row][vc_column width=\"1/4\"][distance type=\"2\"][vc_column_text]\n<h3 style=\"color: #4fc1e9; font-size: 33px; margin-top: 0; line-light: 1;\">ABOUT US</h3>\nEasyhost offers superior, reliable and affordable Web Hosting to individuals and small businesses. Founded in 2001, Easyhost has quickly grown to become a leader in Performance Web Hosting.[/vc_column_text][distance][button btn_content=\"MORE ABOUT US\" url=\"?page_id=6522\" icon=\"none\"][distance type=\"2\"][/vc_column][vc_column width=\"2/12\"][distance type=\"2\"][vc_column_text]\n<h5 style=\"color: #222; font-size: 15px; margin-bottom: 16px;\"><strong>PORTFOLIO</strong></h5>\n[/vc_column_text][vc_wp_custommenu nav_menu=\"63\"][distance type=\"2\"][/vc_column][vc_column width=\"2/12\" css=\".vc_custom_1462618775841{border-radius: 1px !important;}\"][distance type=\"2\"][vc_column_text]\n<h5 style=\"color: #222; font-size: 15px; margin-bottom: 16px;\"><strong>FEATURES</strong></h5>\n[/vc_column_text][vc_wp_custommenu nav_menu=\"60\"][distance type=\"2\"][/vc_column][vc_column width=\"2/12\"][distance type=\"2\"][vc_column_text]\n<h5 style=\"color: #222; font-size: 15px; margin-bottom: 16px;\"><strong>SHORTCODES</strong></h5>\n[/vc_column_text][vc_wp_custommenu nav_menu=\"64\"][distance type=\"2\"][/vc_column][vc_column width=\"1/4\"][distance][teaserbox type=\"6\" img=\"8884\" title=\"<strong>SEO</strong> Services\" subtitle=\"EasySEO Demo\" link_url=\"http://webnus.biz/themes/easyweb/seo/\" img_alt=\"SEO Services\"][distance][teaserbox type=\"6\" img=\"8885\" title=\"<strong>WebDesign</strong> Services\" subtitle=\"EasyDesign Demo\" link_url=\"http://webnus.biz/themes/easyweb/design/\" img_alt=\"WebDesign Services\"][distance][/vc_column][/vc_row]", "mega_menu_features", "", "publish", "closed", "closed", "", "mega_menu_features", "", "", "2016-02-02 10:19:15", "2016-02-02 10:19:15", "", "0", "http://webnus.biz/themes/easyweb/host/?page_id=6508", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("8833", "1", "2016-02-10 08:59:21", "2016-02-10 08:59:21", "[vc_row row_type=\"2\" blox_image=\"9187\" align_center=\"aligncenter\" page_title=\"page-title-x\" blox_dark=\"true\"][vc_column][distance type=\"5\"][distance type=\"3\"][maxtitle maxtitle_content=\"Latest <strong>from Blog</strong>\"][distance type=\"2\"][distance type=\"3\"][/vc_column][/vc_row][vc_row row_type=\"2\" blox_bgcolor=\"#ffffff\"][vc_column][distance type=\"5\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 1</strong>\"][latestfromblog][distance type=\"5\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 2</strong>\"][latestfromblog type=\"two\"][distance type=\"3\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 3</strong>\"][latestfromblog type=\"three\"][distance type=\"5\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 4</strong>\"][latestfromblog type=\"four\"][distance type=\"4\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 5</strong>\"][latestfromblog type=\"five\"][distance type=\"3\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 6</strong>\"][latestfromblog type=\"six\"][distance type=\"3\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 7</strong>\"][latestfromblog type=\"seven\"][distance type=\"5\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 8</strong>\"][latestfromblog type=\"eight\"][distance type=\"5\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 9</strong>\"][latestfromblog type=\"nine\"][distance type=\"5\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 10</strong>\"][latestfromblog type=\"ten\"][distance type=\"2\"][subtitle subtitle_content=\"Latest from Blog <strong>Type 11</strong>\"][latestfromblog type=\"eleven\"][distance type=\"3\"][/vc_column][/vc_row]", "Latest From Blog", "", "publish", "closed", "closed", "", "latest-from-blog", "", "", "2016-02-10 08:59:21", "2016-02-10 08:59:21", "", "0", "http://webnus.biz/themes/easyweb/host/?page_id=8833", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("8856", "1", "2016-02-10 11:30:24", "2016-02-10 11:30:24", "[vc_row row_type=\"3\" blox_image=\"9252\" align_center=\"aligncenter\" page_title=\"page-title-x\" blox_dark=\"true\" parallax_speed=\"7\"][vc_column][distance type=\"5\"][distance type=\"2\"][maxtitle maxtitle_content=\"Pricing <strong>Tables</strong>\"][distance type=\"2\"][/vc_column][/vc_row][vc_row][vc_column][distance type=\"5\"][subtitle subtitle_content=\"<strong>Pricing Table </strong> type 1\"][vc_row_inner][vc_column_inner width=\"1/3\"][pricing-tables price=\"$31.23\" button_text=\"get started\" button_url=\"#\" title=\"BASIC\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20Consultation%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20SEO%20Tools%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Sitemap%20Creator%20%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Reports%20stored%20forever%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Search%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables price=\"$48.12\" button_text=\"get started\" button_url=\"#\" title=\"ADVANCED\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20Consultation%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20SEO%20Tools%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Sitemap%20Creator%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Reports%20stored%20forever%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Search%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables price=\"$64.56\" button_text=\"get started\" button_url=\"#\" featured=\" w-featured\" title=\"PROFESSIONAL\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20Consultation%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20SEO%20Tools%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Sitemap%20Creator%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Reports%20stored%20forever%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Search%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%5D\"][distance][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][distance type=\"3\"][subtitle subtitle_content=\"<strong>Pricing Table </strong> type 2\"][distance type=\"2\"][vc_row_inner][vc_column_inner width=\"1/4\"][pricing-tables type=\"2\" price=\"$568\" on_sale_price=\"$332\" period=\"yr\" button_text=\"View Details\" button_url=\"#\" icon=\"fa-hdd-o\" icon_fontawesome=\"fa fa-download\" title=\"Basic Plan\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221%20Website%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Single%20Domain%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22100%20GB%20Storage%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22limited%20Bandwidth%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/4\"][pricing-tables type=\"2\" price=\"$635\" on_sale_price=\"$468\" period=\"yr\" button_text=\" View Details\" button_url=\"#\" icon=\"fa-cloud\" icon_fontawesome=\"fa fa-cloud\" title=\"Hatchling Plan\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%222%20Website%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%20%201%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%2250%20GB%20Storage%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22limited%20Bandwidth%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/4\"][pricing-tables type=\"2\" price=\"$878\" on_sale_price=\"$635\" period=\"yr\" button_text=\"View Details\" button_url=\"#\" featured=\" w-featured\" icon=\"fa-tasks\" icon_fontawesome=\"fa fa-hdd-o\" title=\"Advanced Plan\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%226%20Website%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22%20Unlimited%20Domains%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22350%20GB%20Storage%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/4\"][pricing-tables type=\"2\" price=\"$536\" on_sale_price=\"$758\" period=\"yr\" button_text=\"View Details\" button_url=\"#\" icon=\"fa-sitemap\" icon_fontawesome=\"fa fa-database\" title=\"Business Hosting\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%224%20Website%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22250%20GB%20Storage%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%5D\"][distance][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][distance type=\"2\"][subtitle subtitle_content=\"<strong>Pricing Table </strong> type 3\"][distance type=\"2\"][vc_row_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"3\" price=\"$31.32\" plan_label=\"25%\n<strong>off</strong>\" period=\"mo\" footer_text=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\" button_text=\"get started\" button_url=\"#\" title=\"BASIC\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20Consultation%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20SEO%20Tools%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Sitemap%20Creator%20%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Reports%20stored%20forever%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Search%20Engine%20Optimization%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"3\" price=\"$64.43\" plan_label=\" best\n<strong> price</strong>\" period=\"mo\" footer_text=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\" button_text=\"get started\" button_url=\"#\" title=\"PROFESSIONAL\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20Consultation%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20SEO%20Tools%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Sitemap%20Creator%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Reports%20stored%20forever%22%7D%2C%7B%22feature_icon%22%3A%22not-available-icon%22%2C%22feature_item%22%3A%22Search%20Engine%20Optimization%22%7D%5D\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"3\" price=\"$64.43\" plan_label=\" special\n<strong>offer</strong>\" period=\"mo\" footer_text=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\" button_text=\"get started\" button_url=\"#\" featured=\" w-featured\" title=\"PROFESSIONAL\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20Consultation%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20SEO%20Tools%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Google%20Local%20Map%20Generator%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Maps%20Optimization%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Sitemap%20Creator%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Reports%20stored%20forever%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Search%20Engine%20Optimization%22%7D%5D\"][distance][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1454937572705{padding-top: 13px !important;}\"][distance type=\"3\"][subtitle subtitle_content=\"<strong>Pricing Table </strong> type 4\"][vc_row_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"4\" price=\"$45.00\" period=\"mo.\" button_text=\"READ MORE\" button_url=\"#\" title=\"Standard\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%225%20Analytics%20Campaigns%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22300%20Keywords%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22250%2C000%20Crawled%20Pages%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Social%20Accounts%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%222%20Seats%22%7D%5D\" description=\"Instant access, all resources.\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"4\" price=\"$57.00\" period=\"Mo.\" button_text=\"READ MORE\" button_url=\"#\" title=\"Medium\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%2210%20Analytics%20Campaigns%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22480%20Keywords%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22350%2C000%20Crawled%20Pages%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%2219%20Social%20Accounts%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%225%20Seats%22%7D%5D\" description=\"Instant access, all resources.\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"4\" price=\"$98.00\" period=\"mo.\" button_text=\"READ MORE\" button_url=\"#\" featured=\" w-featured\" title=\"Premium\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%2225%20Analytics%20Campaigns%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%221000%20Keywords%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22450%2C000%20Crawled%20Pages%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%2229%20Social%20Accounts%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%228%20Seats%22%7D%5D\" description=\"Instant access, all resources.\"][distance][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][distance type=\"3\"][subtitle subtitle_content=\"<strong>Pricing Table </strong> type 5\"][distance][vc_row_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"5\" price=\"Or $354 Yearly!\" on_sale_price=\"$43,15\" plan_label=\"BRONZE \" period=\"MO\" button_text=\"READ MORE\" button_url=\"#\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221%20Website%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22100%20GB%20Storage%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221000%20Email%20Addresses%22%7D%5D\" title=\"ADVANCED PLAN\" label_bg_color=\"#d87a41\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"5\" price=\"Or $354 Yearly!\" on_sale_price=\"$43,15\" plan_label=\"silver\" period=\"MO\" button_text=\"READ MORE\" button_url=\"#\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221%20Website%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22100%20GB%20Storage%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221000%20Email%20Addresses%22%7D%5D\" title=\"ADVANCED PLAN\" label_bg_color=\"#b8c5ca\"][distance][/vc_column_inner][vc_column_inner width=\"1/3\"][pricing-tables type=\"5\" price=\"Or $354 Yearly!\" on_sale_price=\"$43,15\" plan_label=\"GOLD\" period=\"MO\" button_text=\"READ MORE\" button_url=\"#\" features=\"%5B%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221%20Website%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%20%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22100%20GB%20Storage%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22empty-icon%22%2C%22feature_item%22%3A%221000%20Email%20Addresses%22%7D%5D\" title=\"ADVANCED PLAN\" label_bg_color=\"#f2c340\"][distance][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1451809419824{margin-bottom: 4px !important;}\"][distance type=\"3\"][subtitle subtitle_content=\"<strong>Pricing Table </strong> type 6\"][distance][vc_row_inner][vc_column_inner][pricing-tables type=\"6\" price=\"$532\" period=\"yr\" footer_text=\"45 DAYS FREE TRIAL\" button_text=\"sign up now\" button_url=\"#\" title=\"BUSINESS PLAN\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%221%20Website%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22100%20GB%20Storage%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22100%20Email%20Addresses%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%22%7D%5D\" heading_bg_color=\"#e0e6e7\" heading_text_color=\"#018baf\"][distance][pricing-tables type=\"6\" price=\"$732\" period=\"yr\" footer_text=\"30 DAYS FREE TRIAL\" button_text=\"sign up now\" button_url=\"#\" title=\"BUSINESS PLAN\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Websites%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Storage%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22500%20Email%20Addresses%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%22%7D%5D\" heading_bg_color=\"#a8d9e7\" heading_text_color=\"#018baf\"][distance][pricing-tables type=\"6\" price=\"$932\" period=\"yr\" footer_text=\"20 DAYS FREE TRIAL\" button_text=\"sign up now\" button_url=\"#\" title=\"ADVANCED PLAN\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Websites%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Storage%20%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%221000%20Email%20Addresses%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%222X%20Processing%20Power%20%26%20Memory%22%7D%5D\" heading_bg_color=\"#59c5e5\" heading_text_color=\"#ffffff\"][distance][pricing-tables type=\"6\" price=\"$1032\" period=\"yr\" footer_text=\"15 DAYS FREE TRIAL\" button_text=\"sign up now\" button_url=\"#\" title=\"high tech plan\" features=\"%5B%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Websites%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Storage%20%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Unlimited%20Bandwidth%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%221000%20Email%20Addresses%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Free%20domain%20with%20annual%20plan%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%22Premium%20DNS%20%22%7D%2C%7B%22feature_icon%22%3A%22available-icon%22%2C%22feature_item%22%3A%221-year%20SSL%20certificate%22%7D%5D\" heading_bg_color=\"#0db5e4\" heading_text_color=\"#ffffff\"][/vc_column_inner][/vc_row_inner][distance type=\"4\"][/vc_column][/vc_row]", "Pricing Table", "", "publish", "closed", "closed", "", "pricing-table", "", "", "2016-02-10 11:30:24", "2016-02-10 11:30:24", "", "0", "http://webnus.biz/themes/easyweb/host/?page_id=8856", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("9069", "1", "2016-02-17 13:35:26", "2016-02-17 13:35:26", "[vc_row row_type=\"3\" blox_image=\"9090\" align_center=\"aligncenter\" page_title=\"page-title-x\" blox_dark=\"true\" row_color=\"rgba(0,0,0,0.62)\"][vc_column css=\".vc_custom_1455714564386{margin-top: -21px !important;margin-bottom: -13px !important;}\"][distance type=\"5\"][distance type=\"5\"][vc_column_text css_animation=\"top-to-bottom\"]\n<h2 style=\"text-align: center; margin-bottom: 15px;\"><strong>GET A DOMAIN NAME</strong></h2>\n<h4 style=\"text-align: center;\">With FREE Email, DNS, Theft Protection and lots more</h4>\n[/vc_column_text][whmpress_domain_search_ajax action=\"\" text_class=\"\" button_class=\"\" button_text=\"Search Domain\"][/whmpress_domain_search_ajax][distance type=\"5\"][/vc_column][/vc_row][vc_row row_type=\"2\" blox_bgcolor=\"#f7f8fa\"][vc_column][distance type=\"5\"][maxtitle type=\"5\" maxtitle_content=\"Pricing <strong> Packages</strong>\"][/vc_column][vc_column width=\"1/3\"][whmpress_pricing_table html_template=\"whmpress-01.html\" id=\"4\" show_combo=\"no\"][/whmpress_pricing_table][/vc_column][vc_column width=\"1/3\"][whmpress_pricing_table html_template=\"whmpress-01.html\" id=\"21\" featured=\"featured\"][/whmpress_pricing_table][/vc_column][vc_column width=\"1/3\"][whmpress_pricing_table html_template=\"whmpress-01.html\" id=\"5\"][/whmpress_pricing_table][/vc_column][vc_column][distance type=\"4\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1454940323575{padding-top: 13px !important;padding-bottom: 11px !important;}\"][distance type=\"5\"][distance][subtitle type=\"3\" subtitle_content=\"seo <strong>Features</strong>\" border_color=\"#f4f3f3\"][vc_column_text css=\".vc_custom_1454940209600{margin-top: -9px !important;padding-bottom: 1px !important;}\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.[/vc_column_text][whmpress_price_matrix_domain show_tlds_wildcard=\"\" table_id=\"\" titles=\"\"][/whmpress_price_matrix_domain][distance type=\"3\"][/vc_column][/vc_row][vc_row row_type=\"2\" blox_dark=\"true\" blox_bgcolor=\"#00c2e5\"][vc_column][distance type=\"5\"][vc_column_text css_animation=\"top-to-bottom\"]\n<h2 style=\"text-align: center; margin-bottom: 15px;\"><strong>DOMAIN SEARCH BULK</strong></h2>\n[/vc_column_text][distance][whmpress_domain_search_bulk text_class=\"\" button_class=\"\"][/whmpress_domain_search_bulk][distance type=\"3\"][/vc_column][/vc_row][vc_row][vc_column][distance type=\"5\"][subtitle type=\"3\" subtitle_content=\"<strong>Announcements</strong>\" border_color=\"#f4f3f3\"][whmpress_announcements word=\"60\"][/whmpress_announcements][distance type=\"3\"][/vc_column][/vc_row]", "Home whmpress", "", "publish", "closed", "closed", "", "home-whmpress", "", "", "2016-02-17 13:35:26", "2016-02-17 13:35:26", "", "0", "http://webnus.biz/themes/easyweb/host/?page_id=9069", "0", "page", "", "0");
INSERT INTO `wpos_posts` VALUES("9820", "1", "2016-09-26 11:29:46", "2016-09-26 11:29:46", "<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nEasyhost \"[your-subject]\"\n[your-name] <wordpress@webnus.biz>\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 Easyhost (http://webnus.biz/dummy/easyweb/host)\nwebnus.net@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nEasyhost \"[your-subject]\"\nEasyhost <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\n[your-email]\nReply-To: webnus.net@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1-3", "", "", "2016-09-26 11:29:46", "2016-09-26 11:29:46", "", "0", "http://webnus.biz/dummy/easyweb/host/?post_type=wpcf7_contact_form&amp;p=4", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9821", "1", "2015-12-08 11:28:36", "2015-12-08 11:28:36", "<!-- name -->\n<div id=\"talk-business\">\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Your Name</p>\n      [text Name class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- mail & subject -->\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Your Email</p>\n      [email Email class:style_contact_information]\n    </div>\n\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Subject</p>\n      [text Subject class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- text area -->\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Your Message</p>\n      [textarea Textarea class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- btns -->\n  <div class=\"row contact_information_btns\">\n\n    <div class=\"col-sm-3\">\n      [submit \"Send\"]\n    </div>\n    \n    <div class=\"col-sm-3\">\n      [submit \"Cancel\"]\n    </div>\n\n    <div class=\"col-sm-6\">\n      \n    </div>\n    \n\n  </div>\n</div>\nEasyweb [Subject]\n[Name] <wordpress@webnus.biz>\nFrom: [Name] <[Email]>\nSubject: [Subject]\n\nMessage Body:\n[Textarea]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\nwebnus.tf@gmail.com\nReply-To: wordpress@webnus.biz\n\n\n\n\n[your-subject]\nEasy SEO <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\n[your-email]\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "Easy Design Contact Page", "", "publish", "closed", "closed", "", "seo-home1", "", "", "2015-12-08 11:28:36", "2015-12-08 11:28:36", "", "0", "http://webnus.biz/themes/easyweb/seo/?post_type=wpcf7_contact_form&amp;p=30", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9822", "1", "2015-12-08 11:29:37", "2015-12-08 11:29:37", "<div id=\"seo_consolation_form\">\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">Your Name*</p>\n      [text* Name class:seostyle]\n    </div>\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">What is your Website?</p>\n      [text What is your Website? class:seostyle]\n    </div>\n  </div>\n  \n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">Your Email*</p>\n      [email* Email class:seostyle]\n    </div>\n    <div class=\"col-sm-6\">\n      <p class=\"seotitle\">Your Phone*</p>\n      [tel* Phone class:seostyle]\n    </div>\n  </div>\n\n  <div class=\"row\">\n      <div class=\"col-sm-12\">\n            <p class=\"seotitle\">How can we help you?</p>\n            [textarea textarea class:seostyle]\n      </div>\n  </div>\n  \n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"checkboxtitle\">What is your goal?</p>\n    </div>\n    <div class=\"col-sm-6\">\n      \n    </div>\n  </div>\n\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"checkbox_seo_title\">[checkbox checkbox class:seo_from_checkbox use_label_element \"SEO\" \"Email Marketing Service\" \"Content Marketing\" \"Digital Consultancy\"]</p>\n    </div>\n    <div class=\"col-sm-6\">\n      <p class=\"checkbox_seo_title\">[checkbox checkbox-745 class:seo_from_checkbox use_label_element \"Online Strategy\" \"Pay Per Click\" \"Conversion Rate Optimization\" \"Public Relation\"]</p>\n\n    </div>\n  </div>\n\n  <div class=\"row\">\n    <div class=\"col-sm-5 seo_contact_btn\">\n      [submit class:seo_form_btn_sent class:seo_form_btn_style \"SEND\"]\n    </div>\n\n  </div>\n</div>\nPlease Check [What]\n[Name] <wordpress@webnus.biz>\nFrom: [Name] <[Email]>\nSubject: Please Check [What]\n\nPhone : [Phone]\nMessage Body:\n[textarea]\n\nWebsite : [What]\n\nItems : \n\n[checkbox]\n\n[checkbox-745]\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\nwebnus.tf@gmail.com\nReply-To: wordpress@webnus.biz\n\n\n\n\n[your-subject]\nEasy SEO <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\n[your-email]\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "SEO CONSOLATION", "", "publish", "closed", "closed", "", "seo-home", "", "", "2015-12-08 11:29:37", "2015-12-08 11:29:37", "", "0", "http://webnus.biz/themes/easyweb/seo/?post_type=wpcf7_contact_form&amp;p=31", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("105", "1", "2017-03-12 23:04:12", "2017-03-12 23:04:12", "<label> O seu nome (obrigatório)\n    [text* your-name] </label>\n\n<label> O seu email (obrigatório)\n    [email* your-email] </label>\n\n<label> Assunto\n    [text your-subject] </label>\n\n<label> A sua mensagem\n    [textarea your-message] </label>\n\n[submit \"Enviar\"]\nMLK Solutions \"[your-subject]\"\n[your-name] <ar@mlk.pt>\nDe: [your-name] <[your-email]>\nAssunto: [your-subject]\n\nCorpo da mensagem:\n[your-message]\n\n-- \nEste email foi enviado por um formulário de contacto em MLK Solutions https://mlk.pt\nar@mlk.pt\nReply-To: [your-email]\n\n0\n0\n\nMLK Solutions \"[your-subject]\"\nMLK Solutions <ar@mlk.pt>\nCorpo da mensagem:\n[your-message]\n\n-- \nEste email foi enviado por um formulário de contacto em MLK Solutions https://mlk.pt\n[your-email]\nReply-To: ar@mlk.pt\n\n0\n0\nObrigado pela sua mensagem.\nOcorreu um erro ao tentar enviar a sua mensagem. Por favor tente de novo mais tarde.\nUm ou mais campos com erros. Por favor verifique e tente de novo.\nOcorreu um erro ao tentar enviar a sua mensagem. Por favor tente de novo mais tarde.\nTem que aceitar os termos e condições antes de enviar a sua mensagem.\nO campo é obrigatório.\nO campo é demasiado grande.\nO campo é demasiado pequeno.", "Formulário de contacto 1", "", "publish", "closed", "closed", "", "formulario-de-contacto-1", "", "", "2017-03-12 23:04:12", "2017-03-12 23:04:12", "", "0", "https://mlk.pt/?post_type=wpcf7_contact_form&amp;p=105", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("5689", "1", "2015-12-15 11:56:44", "2015-12-15 11:56:44", "<!-- name -->\n<div id=\"talk-business\">\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Nome</p>\n      [text Name class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- mail & subject -->\n  <div class=\"row\">\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Email</p>\n      [email Email class:style_contact_information]\n    </div>\n\n    <div class=\"col-sm-6\">\n      <p class=\"talk-business-title\">Assunto</p>\n      [text Subject class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- text area -->\n  <div class=\"row\">\n    <div class=\"col-sm-12\">\n      <p class=\"talk-business-title\">Mensagem</p>\n      [textarea Textarea class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- btns -->\n  <div class=\"row contact_information_btns\">\n<div class=\"col-sm-3\">\n</div>\n<div class=\"col-sm-6\">\n      [submit class:host-btn-form \"Enviar\"]\n </div> \n<div class=\"col-sm-3\">\n  </div>  \n\n  </div>\n</div>\n1\nMLK SITE [Subject]\n[Name] <support@mlk.pt>\nar@mlk.pt\nFrom: [Name] <[Email]>\nSubject: [Subject]\n\nMessage Body:\n[Textarea]\n\n--\nEste email foi enviado a partir do Site MLK Solutions\nReply-To: ar@mlk.pt\n\n\n\n\n[your-subject]\nEasy SEO <wordpress@webnus.biz>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "Easy Host &Seo Contact Page", "", "publish", "closed", "closed", "", "easy-host-contact-page", "", "", "2015-12-15 11:56:44", "2015-12-15 11:56:44", "", "0", "http://webnus.biz/themes/easyweb/seo/?post_type=wpcf7_contact_form&amp;p=5689", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("5703", "1", "2015-12-15 13:26:19", "2015-12-15 13:26:19", "<!-- name -->\n<div id=\"talk-business\" class=seo-cf-page>\n  <div class=\"row\">\n    <div class=\"col-sm-12 es-cp\">\n      <p class=\"talk-business-title\">Your Name</p>\n      [text Name class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- mail & subject -->\n  <div class=\"row\">\n    <div class=\"col-sm-6 es-cp\">\n      <p class=\"talk-business-title\">Your Email</p>\n      [email Email class:style_contact_information]\n    </div>\n\n    <div class=\"col-sm-6 es-cp\">\n      <p class=\"talk-business-title\">Subject</p>\n      [text Subject class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- text area -->\n  <div class=\"row\">\n    <div class=\"col-sm-12 es-cp\">\n      <p class=\"talk-business-title\">Your Message</p>\n      [textarea Textarea class:style_contact_information]\n    </div>\n  </div>\n\n  <!-- btns -->\n  <div class=\"row contact_information_btns\">\n\n    <div class=\"col-sm-3\">\n      \n    </div>\n\n    <div class=\"col-sm-3\">\n      [submit \"send\"]\n    </div>\n    \n    <div class=\"col-sm-3\">\n      [submit \"Cancel\"]\n    </div>\n\n    <div class=\"col-sm-3\">\n      \n    </div>\n    \n\n  </div>\n</div>\nEasyweb [Subject]\n[Name] <wordpress@webnus.biz>\nFrom: [Name] <[Email]>\nSubject: [Subject]\n\nMessage Body:\n[Textarea]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\nwebnus.tf@gmail.com\nReply-To: wordpress@webnus.biz\n\n\n\n\n[your-subject]\nEasy SEO <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\n[your-email]\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "EasySeo-CONTACT PAGE-v 4", "", "publish", "closed", "closed", "", "easyseo-contact-page-v-4", "", "", "2015-12-15 13:26:19", "2015-12-15 13:26:19", "", "0", "http://webnus.biz/themes/easyweb/seo/?post_type=wpcf7_contact_form&amp;p=5703", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("6050", "1", "2016-01-21 07:25:35", "2016-01-21 07:25:35", "<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>\n[your-subject]\n[your-name] <wordpress@webnus.biz>\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 Easy Host (http://webnus.biz/themes/easyweb/host)\nwebnus.tf@gmail.com\nReply-To: [your-email]\n\n0\n0\n\n[your-subject]\nEasy Host <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy Host (http://webnus.biz/themes/easyweb/host)\n[your-email]\nReply-To: webnus.tf@gmail.com\n\n0\n0\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.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1-2-2", "", "", "2016-01-21 07:25:35", "2016-01-21 07:25:35", "", "0", "http://webnus.biz/themes/easyweb/host/?post_type=wpcf7_contact_form&amp;p=6050", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("6250", "1", "2016-01-17 13:06:27", "2016-01-17 13:06:27", "<div class=\"checkseo\">[text* text placeholder \"Type in your Website URL\"][submit \"CHECKUP!\"]</div>\nPlease Check [text]\nSeo Check <wordpress@webnus.biz>\nSubject: Please Check [text]\n\nMessage Body:\n[text]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\nwebnus.tf@gmail.com\nReply-To: wordpress@webnus.biz\n\n\n\n\n[your-subject]\nEasy SEO <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\n[your-email]\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "Check your website’s seo", "", "publish", "closed", "closed", "", "check-your-websites-seo", "", "", "2016-01-17 13:06:27", "2016-01-17 13:06:27", "", "0", "http://webnus.biz/themes/easyweb/seo/?post_type=wpcf7_contact_form&amp;p=6074", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("6481", "1", "2016-02-02 08:26:41", "2016-02-02 08:26:41", "<div class=\"w-contact-p\">\n	<div class=\"row\">\n		<div class=\"col-md-12\">[text* your-name placeholder \"Nome (obrigatório)\"] </div>\n		<div class=\"col-md-6\">[email* your-email placeholder \"Email (obrigatório)\"] </div>\n		<div class=\"col-md-6\">[text your-subject placeholder \"Assunto\"] </div>\n		<div class=\"col-md-12\">[textarea your-message x7 placeholder \"Sua mensagem...\"] </div>\n		<div class=\"col-md-12\">[submit \"Enviar\"]</div>\n	</div>\n</div>\n1\n[your-subject] MLK Site\n[your-name] <support@mlk.pt>\nar@mlk.pt\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from MLK Site\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nEasy SEO <wordpress@webnus.biz>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy SEO (http://webnus.biz/themes/easyweb/seo)\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "Contact Mega Menu", "", "publish", "closed", "closed", "", "easy-host-seo-contact-page_copy", "", "", "2016-02-02 08:26:41", "2016-02-02 08:26:41", "", "0", "http://webnus.biz/themes/easyweb/host/?post_type=wpcf7_contact_form&amp;p=6481", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9173", "1", "2016-02-29 09:41:03", "2016-02-29 09:41:03", "<div class=\"comingsoon-form row\">\n	<div class=\"col-md-6\">\n		[text name class:cs-name placeholder \"Name\"]\n		[email email class:csmail placeholder \"E-mail\"]\n		[text subject class:cs-subject placeholder \"Subject\"]\n	</div>\n	<div class=\"col-md-6\">\n		[textarea* textarea class:cs-message placeholder \"Message\"]\n		[submit class:cs-message \"SEND MESSAGE\"]\n	</div>\n</div>\nEasyweb [your-subject]\n[name] <wordpress@webnus.biz>\nFrom: [name] <[email]>\nSubject: [subject]\n\nMessage Body:\n[textarea]\n\n--\nThis e-mail was sent from a contact form on Easy Host (http://webnus.biz/themes/easyweb/host)\nwebnus.tf@gmail.com\nReply-To: wordpress@webnus.biz>\n\n\n\n\n[your-subject]\nEasy Host <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easy Host (http://webnus.biz/themes/easyweb/host)\n[your-email]\nReply-To: webnus.tf@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.\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.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "Coming Soon Form", "", "publish", "closed", "closed", "", "untitled", "", "", "2016-02-29 09:41:03", "2016-02-29 09:41:03", "", "0", "http://webnus.biz/themes/easyweb/host/?post_type=wpcf7_contact_form&amp;p=9173", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9674", "1", "2016-04-13 06:07:20", "2016-04-13 06:07:20", "<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>\nEasyhost \"[your-subject]\"\n[your-name] <wordpress@webnus.biz>\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 Easyhost (http://webnus.biz/dummy/easyweb/host)\ns.hitched@yahoo.com\nReply-To: [your-email]\n\n0\n0\n\nEasyhost \"[your-subject]\"\nEasyhost <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\n[your-email]\nReply-To: s.hitched@yahoo.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1-2-3", "", "", "2016-04-13 06:07:20", "2016-04-13 06:07:20", "", "0", "http://webnus.biz/dummy/easyweb/host/?post_type=wpcf7_contact_form&amp;p=4", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9823", "1", "2016-05-07 09:20:32", "2016-05-07 09:20:32", "<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>\nEasyhost \"[your-subject]\"\n[your-name] <wordpress@webnus.biz>\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 Easyhost (http://webnus.biz/dummy/easyweb/host)\ns.hitched@yahoo.com\nReply-To: [your-email]\n\n0\n0\n\nEasyhost \"[your-subject]\"\nEasyhost <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\n[your-email]\nReply-To: s.hitched@yahoo.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1-2-4", "", "", "2016-05-07 09:20:32", "2016-05-07 09:20:32", "", "0", "http://webnus.biz/dummy/easyweb/host/?post_type=wpcf7_contact_form&amp;p=4", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9824", "1", "2016-11-06 08:49:02", "2016-11-06 08:49:02", "<div class=\"foot-contct-form\">\n	<div class=\"fcf-name col-sm-12\">[text* your-name placeholder \"Your Name :\"]</div>\n	<div class=\"fcf-email col-sm-6\">[email* your-email placeholder \"E mail :\"]</div>\n	<div class=\"fcf-subject col-sm-6\">[text your-subject placeholder \"Subject :\"]</div>\n	<div class=\"fcf-massage col-sm-12\">[textarea your-message placeholder \"Message :\"]</div>\n	<div class=\"fcf-submit col-sm-6\">[submit \"Send Message\"]</div>\n</div>\nEasyhost \"[your-subject]\"\n[your-name] <wordpress@webnus.biz>\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 Easyhost (http://webnus.biz/dummy/easyweb/host)\nwebnus.net@gmail.com\nReply-To: [your-email]\n\n\n\n\nEasyhost \"[your-subject]\"\nEasyhost <wordpress@webnus.biz>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Easyhost (http://webnus.biz/dummy/easyweb/host)\n[your-email]\nReply-To: webnus.net@gmail.com\n\n\n\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.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.", "Footer Contact Form", "", "publish", "closed", "closed", "", "footer-contact-form", "", "", "2016-11-06 08:49:02", "2016-11-06 08:49:02", "", "0", "http://webnus.biz/dummy/easyweb/host/?post_type=wpcf7_contact_form&amp;p=9815", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpos_posts` VALUES("9888", "1", "2017-04-04 15:13:24", "2017-04-04 15:13:24", "<strong><u>Condições de Serviço</u></strong>\n\n&nbsp;\n\n<em>A MLK Solutions encontra-se representada nas finanças pelo contribuinte António Paulo Cunha Costa Raimundo – NIF230675999 e registado com o </em><em><strong>CAE</strong></em><em>:</em> <em><strong>63110</strong></em> <em>- ACTIVIDADES DE PROCESSAMENTO DE DADOS, DOMICILIAÇÃO DE INFORMAÇÃO E ACTIVIDADES RELACIONADAS</em><em>.</em>\n\n&nbsp;\n<ul>\n 	<li>“A MLK Solutions proíbe alguns ficheiros nos alojamentos partilhados (alojamento web, revenda e webdrive), entre os quais destacamos: MP3, Imagens e Vídeos protegidos por copyright, Exploits, Torrents, Trackers, Cracks, Warez, Nukes, Flooders e qualquer outro tipo de ficheiro que não esteja em conformidade com a lei ou possa prejudicar o bom funcionamento dos servidores.</li>\n</ul>\n<ul>\n 	<li>A MLK Solutions proíbe alguns programas nos servidores, entre os quais destacamos: Port Scanners, Exploits Scanners, Nukes, Flooders, Servidores de Jogos (excluindo em servidor dedicado), Servidores de Socks, ficheiros pesados para download e qualquer outro tipo de programa que possa prejudicar o bom funcionamento dos servidores.</li>\n 	<li>A existência de links para os programas/ficheiros acima descritos, ou que possam ser enquadrados na generalidade da descrição, também serão considerados ilegais perante as condições de serviço aqui mencionadas.</li>\n 	<li>Exceto quando devidamente indicado, os serviços de alojamento prestados pela MLK Solutions servem para a publicação de páginas, recurso a bases de dados e sistemas de email. Não se encontra contemplado nos nossos serviços a utilização de contas de alojamento para streaming de áudio, vídeo ou repositório de ficheiros (vulgo backup).</li>\n 	<li>É proibida a utilização massiva de recursos no servidor. Caso se verifique que um cliente se encontra a absorver todos os recursos A MLK Solutions poderá tomar medidas para que tal não aconteça.</li>\n 	<li>Não é permitido o alojamento de conteúdo adulto, seja ela sob a forma de fotografias ou vídeos. A determinação final do que constitui “conteúdo adulto” fica a cargo da MLK Solutions.</li>\n 	<li>Não é permitido colocar no servidor ficheiros que contenham conteúdos punidos pelas leis do país onde os servidores se encontram (EUA e/ou Portugal).</li>\n 	<li>Realizar ataques (nomeadamente de DDoS) ou scans a partir da MLK Solutions é proibido. Caso aconteça, a conta será terminada sem aviso prévio.</li>\n 	<li>A utilização de forma abusiva e/ou com diferentes propósitos dos explícitos/óbvios referentes ao tipo de conta adquirida não é aceitável.</li>\n 	<li>As contas de alojamento são destinadas ao cliente que a subscreveu. Nenhum cliente pode subalugar ou subalugar, ou seja, não pode alugar, alojar ou revender serviços a terceiros, excluindo contas existentes para esse efeito.</li>\n 	<li>A MLK Solutions apenas presta serviço de suporte ao cliente que comprou o serviço e nunca a terceiros.</li>\n 	<li>Utilizar as contas de e-mail ou o alojamento para o envio de Spam é proibido. Caso a sua conta esteja envolvida em atividades de spam a MLK Solutions reserva-se no direito de cancelar a mesma, sem qualquer reembolso.</li>\n 	<li>O cliente que adquiriu a conta à MLK Solutions é responsável pelo que acontece dentro da mesma, mesmo que problemas relativos à mesma tenham sido obra de terceiros.</li>\n 	<li>O cliente é responsável pelos conteúdos da sua conta e deverá efectuar cópias de segurança. A MLK Solutions não se responsabiliza caso ocorram problemas com os mesmos.</li>\n 	<li>Às regras da MLK Solutions acrescem as regras dos serviços de terceiros que interajam com as contas dos utilizadores da MLK Solutions, tais como os Servidores de IRC, Motores de busca, etc. Caso essas regras não sejam cumpridas a MLK Solutions reserva-se ao direito de tomar as medidas necessárias para que tal aconteça.</li>\n 	<li>A MLK Solutions reserva-se no direito de recusar a abertura de contas sem que para tal necessite de justificá-lo.</li>\n 	<li>A MLK Solutions reserva-se no direito de alterar estas condições sempre que achar necessário sem qualquer aviso prévio.\nSe for detetada qualquer uma destas situações, a MLK Solutions reserva-se no direito de suspender/cancelar a conta sem aviso prévio.”</li>\n 	<li>A MLK Solutions não presta apoio informático na configuração dos clientes de emails e na restante configuração do serviço e utilização dos programas contidos no mesmo, sendo esta utilização e configuração da responsabilidade do cliente.</li>\n</ul>\n&nbsp;\n\n<strong>Contas MLK CARE</strong>\n\n&nbsp;\n<ul>\n 	<li>Estas contas são para uso exclusivo de entidades, associações ou instituições de cariz solidário e de interesse público sem qualquer interesse ou vantagem financeira em geral.</li>\n 	<li>A criação destas contas exige a um escrutínio por parte da MLK Solutions, de forma a averiguar os requisitos para a atribuição do serviço.</li>\n 	<li>Todas as entidades ao abrigo deste protocolo solidário, têm de obrigatoriamente colocar uma imagem de destaque da MLK Care na página inicial do seu site, com link para <a href=\"http://www.mlk.pt\">http://www.mlk.pt</a> e de tamanho nunca inferior a 50px/70px |___| .</li>\n 	<li>O pedido destas contas de web hosting tem de ser obrigatoriamente feito via email , através do endereço <a href=\"mailto:mlkcare@mlk.pt\">mlkcare@mlk.pt</a>.</li>\n 	<li>O suporte técnico destas contas, limita-se na sua essência ao bom funcionamento do serviço e nunca à configuração do mesmo, nem a outros programas contidos no serviço.</li>\n 	<li>A MLK Solutions não se responsabiliza por qualquer falha no serviço, sendo que o serviço deve estar preparado para eventuais falhas de acesso e mesmo de remoção de ficheiros, pelo que aconselhamos a que seja feito um backup diário.</li>\n 	<li>Por ser um serviço oferecido, a MLK Solutions não tem de indemnizar por quais quer danos que o serviço possa causar ao funcionamento da entidade .</li>\n</ul>\n&nbsp;\n\n&nbsp;\n\n<strong>Suspensões e Cancelamentos</strong>\n\n<strong> </strong>\n\n<strong> </strong>\n<ul>\n 	<li>Os pagamentos devem ser efetuados até ao próprio dia que a conta expira. Após 15 dias sem pagamento, a conta de alojamento será suspensa. 30 dias após a data de pagamento, a conta será apagada.</li>\n</ul>\n<ul>\n 	<li>A MLK Solutions não se responsabiliza pela não entrega de e-mails a notificar a data de pagamento. Tal facto não serve como argumento válido para o não pagamento na data devida. O cliente deverá manter-se informado sobre a data de pagamento na sua zona de cliente.</li>\n 	<li>Expirada a data de renovação, a responsabilidade sobre a salvaguarda dos conteúdos recai sobre o cliente, não podendo ser imputada à MLK Solutions.</li>\n 	<li>Os comprovativos de pagamento são remetidos em formato digital (PDF) , emitidos os recibos no portal das finanças.</li>\n 	<li>A MLK Solutions reserva-se no direito de alterar os preços de qualquer um dos seus serviços a qualquer altura, tendo em conta que deverá também notificar todos os seus clientes das alterações do(s) preço(s) com quinze (15) dias de antecedência.</li>\n 	<li>A MLK Solutions reserva-se ao direito de fazer os upgrades e downgrades que ache necessário para adaptar os serviços obtidos dos clientes aos pacotes existentes em venda.</li>\n</ul>\n<ul>\n 	<li>A MLK Solutions reserva-se no direito de suspender e/ou cancelar o serviço a clientes em qualquer altura, com base nas condições acima descritas.</li>\n 	<li>Se tal cancelamento for devido a violação por parte do cliente de alguma das condições descritas neste documento, não será devido qualquer reembolso.</li>\n 	<li>Os clientes podem cancelar o serviço em qualquer altura. Tal não obriga a MLK Solutions a qualquer reembolso.</li>\n</ul>\n&nbsp;\n\n&nbsp;\n\n<strong>Acordo de Nível de Serviço</strong>\n\n&nbsp;\n\nEste Contrato de Nível de Serviço MLK Solutions (\"SLA\") se aplica a todos os clientes compartilhados e dedicados. O Cliente concorda que as medições por meio de terceiros estabelecem a elegibilidade para qualquer Crédito de Desempenho aplicável. Caso o Cliente determine que existe uma discrepância nessa mensuração, o Cliente deverá notificar prontamente MLK Solutions e MLK Solutions e o Cliente concordará mutuamente sobre a validade e exatidão da medição e sobre a elegibilidade do Cliente para quaisquer Créditos de Desempenho aplicáveis\n\n&nbsp;\n\nEste SLA pode ser alterado a qualquer momento por MLK Solutions.\n\n&nbsp;\n\nA Rede MLK Solutions é definida como o equipamento, software e instalações dentro do segmento de rede MLK Solutions, incluindo os serviços ISP contratados da MLK Solutions aos quais o segmento de rede MLK Solutions está conectado e utilizado coletivamente pela MLK Solutions para fornecer serviços dedicados e Serviços de co-localização\n\n&nbsp;\n\nDisponibilidade de serviço é o tempo total em um mês de calendário que o MLK Solutions está disponível através da Internet, desde que o cliente tenha estabelecido conectividade. A MLK Solutions assume a responsabilidade pela Disponibilidade do Serviço no seu segmento de rede imediato e não pode ser responsabilizada por problemas diretamente relacionados com um fornecedor de largura de banda a montante. A rede MLK Solutions estará disponível para clientes livres de interrupções de rede por 99% do tempo\n\n&nbsp;\n\nO Tempo de Inatividade do Serviço é qualquer interrupção não planejada na Disponibilidade do Serviço durante a qual o Cliente é incapaz de aceder os serviços como descrito na seção anterior, desde que a interrupção seja determinada por ter sido causada por um problema no segmento de rede MLK Solutions imediato como confirmado pela MLK Solutions. Com o tempo de inatividade do serviço é medido como o tempo total de interrupção não planejada na disponibilidade do serviço durante um mês de calendário. MLK Solutions não é responsável por quaisquer interrupções não planejadas devido a falhas de software de terceiros são de responsabilidade direta do editor do software e não de MLK Solutions\n\n&nbsp;\n\nO tempo de inatividade de serviço programado é qualquer interrupção de MLK Solutions de serviços de hospedagem. O tempo de inatividade de serviço programado ocorre durante uma janela de manutenção do servidor MLK Solutions, que ocorre em conjunto com uma notificação de 12 horas ao cliente por meio de comunicação eletrônica.\n\n&nbsp;\n\n&nbsp;\n\nExclusões de serviços\n\n&nbsp;\n\nEste SLA não cobre o tempo de inatividade do serviço causado por problemas no seguinte:\n\n&nbsp;\n\n* Rede de área local do cliente\n\n* Conectividade à Internet ou software de utilizador final fornecido pelo cliente\n\n* Entidades dentro da rede interna do cliente, incluindo, mas não se limitando a, configuração de firewall e modelagem de largura de banda, estações de trabalho de área local ou outros servidores, equipamentos e software que tenham um potencial impacto no ambiente de rede local\n\n&nbsp;\n\nExclusões de tempo de serviço\n\n&nbsp;\n\nSão excluídos do cálculo mensal de Disponibilidade do Serviço:\n\n&nbsp;\n\n* Qualquer tempo de serviço programado utilizado\n\n* Qualquer problema além do segmento de rede MLK Solutions imediato\n\n* Quaisquer interrupções, atrasos ou falhas causados ​​por funcionários, agentes ou subcontratados do Cliente ou Cliente, tais como, mas não se limitando a:\n\nConfiguração imprecisa\n\nO Uso não compatível de qualquer software instalado no servidor\n\nO Cliente iniciou a sobre utilização do servidor\n\nO Quaisquer problemas relacionados a ataques à máquina como hacking, ataques baseados em largura de banda de qualquer natureza e explorações de serviços ou sistemas operacionais\n\n&nbsp;\n\n&nbsp;\n\n<strong>Política de Privacidade</strong>\n\n&nbsp;\n\nColeta de Informações Pessoais ::\n\n&nbsp;\n\nTodos os dados cedidos à MLK Solutions pelos clientes serão mantidos em sigilo. Em momento algum será partilhada a informação do cliente com outras empresas do mesmo grupo ou empresas terceiras.\n\nPara uma maior segurança, todas as áreas do nosso website que tenham o intuito de recolher informação cedida pelo cliente encontram-se protegidas por certificados SSL.\n\nOs dados que nos sejam cedidos por clientes são utilizados única e exclusivamente para contactos realizados pela MLK Solutions, não sendo cedidos a qualquer entidade terceira.\n\n&nbsp;\n\nPara aceder nossos serviços MLK Solutions, você será solicitado a fazer login com um endereço de e-mail e uma senha, que chamamos de credenciais. Na maioria dos casos, essas credenciais farão parte do MLK Solutions, o que significa que você pode usar as mesmas credenciais para fazer login em diversos sites e serviços. Ao fazer login no site ou no serviço MLK Solutions, você pode entrar automaticamente em outros sites e serviços.\n\n&nbsp;\n\nVocê também pode ser solicitado a fornecer respostas, que usamos para ajudar a confirmar sua identidade e ajudar na redefinição de sua senha, bem como um endereço de e-mail alternativo. Um número de ID exclusivo será atribuído às suas credenciais que serão usadas para identificar suas credenciais e informações associadas.\n\n&nbsp;\n\nSolicitamos que você forneça informações pessoais, como seu endereço de e-mail, nome, endereço residencial ou profissional ou número de telefone. Podemos também coletar informações demográficas, como seu NIF/NI, idade, sexo, preferências, interesses e favoritos. Se você optar por fazer uma compra ou se inscrever para um serviço de assinatura paga, solicitaremos informações adicionais, como seu número de cartão de crédito e endereço de faturação, usados ​​para criar uma conta de cliente.\n\n&nbsp;\n\nPodemos coletar informações sobre sua visita, incluindo as páginas que você vê, os links que você clica e outras ações tomadas em conexão com o site MLK Solutions e serviços. Também coletamos algumas informações padrão que seu navegador envia para todos os sites que você visita, como seu endereço IP, tipo de navegador e idioma, tempos de acesso e endereços de sites de referência.\n\n&nbsp;\n\nUso de suas informações pessoais ::\n\n&nbsp;\n\nMLK Solutions coleta e usa suas informações pessoais para operar e melhorar seus sites e entregar os serviços ou realizar as transações que você solicitou. Esses usos podem incluir o fornecimento de um serviço ao cliente mais eficaz; Tornando os sites ou serviços mais fáceis de usar, eliminando a necessidade de você digitar repetidamente as mesmas informações.\n\n&nbsp;\n\nTambém usamos suas informações pessoais para nos comunicar com você. Podemos enviar certas comunicações de serviço obrigatórias, como e-mails de boas-vindas, lembretes de faturação, informações sobre problemas de serviços técnicos e anúncios de segurança.\n\n&nbsp;\n\nPartilha das suas informações pessoais ::\n\n&nbsp;\n\nNós não divulgaremos suas informações pessoais fora de MLK Solutions. Permitimos que você escolha compartilhar suas informações pessoais para que elas possam contatá-lo sobre nossos produtos, serviços ou ofertas. Suas informações serão mantidas confidenciais e estão proibidas de usá-las para qualquer outra finalidade. Podemos aceder e / ou divulgar suas informações pessoais se acreditarmos que tal ação é necessária em circunstâncias urgentes para proteger a segurança pessoal dos usuários.\n\n&nbsp;\n\nAceder às suas informações pessoais ::\n\n&nbsp;\n\nVocê pode ter a capacidade de visualizar ou editar suas informações pessoais on-line. Para ajudar a impedir que suas informações pessoais sejam vistas por outros, você será solicitado a fazer login com suas credenciais (endereço de e-mail e senha). Você pode escrever / e-mails e nós entraremos em contato com você sobre o seu pedido.\n\n&nbsp;\n\nSegurança das suas informações pessoais ::\n\n&nbsp;\n\nMLK Solutions é cometido a proteger a segurança de suas informações pessoais. Utilizamos uma variedade de procedimentos de segurança e implementamos procedimentos físicos, eletrônicos e gerenciais adequados para ajudar a proteger suas informações pessoais de acesso e uso não autorizados. Quando transmitimos informações altamente confidenciais (como uma senha) pela Internet, protegemo-lo através do uso de criptografia, como o protocolo Secure Socket Layer (SSL). Além disso, é sua responsabilidade manter sua senha confidencial. Não compartilhe esta informação com ninguém. Se você estiver compartilhando um computador com alguém, você deve sempre optar por efetuar logoff antes de deixar um site ou serviço para proteger o acesso às suas informações de usuários subsequentes.\n\n&nbsp;\n\nAlterações a esta declaração de privacidade ::\n\n&nbsp;\n\nOcasionalmente, atualizaremos esta declaração de privacidade para refletir as alterações nos nossos serviços e os comentários dos clientes. Encorajamos você a revisar periodicamente esta declaração para ser informado de como MLK Solutions está protegendo suas informações e gerenciando as coisas.\n\n&nbsp;\n\n&nbsp;\n\n<strong>Política de Uso Aceitável</strong>\n\n&nbsp;\n\nEsta política está sujeita a alterações, sem aviso prévio, portanto verifique regularmente as atualizações. Esta política é adicionalmente, e considerada parte dos Termos e Condições da MLK Solutions. MLK Solutions será o único árbitro sobre o que constitui uma violação desta disposição. Se você achar que descobriu uma violação de qualquer área de nossa AUP (exceto avisos de suposta violação de nossos clientes ou quaisquer ordens judiciais, intimações, mandados de busca ou outros processos legais, o endereço de e-mail para todos os quais é \"legal @ MLK Solutions \")\n\n&nbsp;\n\n1) Web Hosting\n\n&nbsp;\n\n1.1) MLK Solutions reserva-se o direito de suspender ou cancelar o acesso de um cliente a qualquer ou todos os serviços prestados por MLK Solutions, onde MLK Solutions decide que a conta foi usada de forma inadequada. MLK Solutions se reserva o direito de recusar o serviço e / ou o acesso a seus servidores a qualquer um.\n\n&nbsp;\n\n1.2) MLK Solutions oferece vários níveis de espaço web e largura de banda de subsídio com os diferentes tipos de conta. Por isso, queremos dizer espaço para o conteúdo do site legítimo e largura de banda para os visitantes para vê-lo. Todos os arquivos em um domínio devem fazer parte do site ativo e estar vinculados ao site. MP3 e outros grandes arquivos multimídia não são conteúdo baseado na web. MLK Solutions oferece um serviço de streaming de mídia para este tipo de conteúdo. Todos os arquivos, informações e e-mails sob a conta serão preservados por 30 dias a partir da data do pagamento. Se o pagamento não for recebido após 30 dias, todos os arquivos, informações e e-mails sob a conta poderão ser excluídos. Se o assinante desejar reutilizar / reativar o serviço, o assinante poderá precisar se candidatar novamente como novo assinante, e uma taxa de ativação poderá ser necessária.\n\n&nbsp;\n\n1.2.1) Utilização da largura de banda e do disco: A empresa fornecerá ao Cliente um volume ilimitado de largura de banda, espaço em disco e outros recursos, como contas de correio eletrónico e / ou de transferência de ficheiros (FTP). Os Serviços são destinados apenas para uso normal. Qualquer atividade que resulte em uso excessivo inconsistente com padrões normais de uso é estritamente proibida. O Cliente concorda que tal largura de banda e uso de disco não devem exceder os valores estabelecidos pela Empresa para os Serviços (o \"Uso Aprovado\"). Essas alocações são otimizadas e dedicadas a servir o Conteúdo e os serviços de e-mail do Cliente relacionados apenas com as contas de hospedagem na Web do Cliente com a Empresa. O Cliente não deve usar qualquer largura de banda e / ou uso de disco para materiais que não sejam o site do Cliente, o Conteúdo do Cliente e / ou os serviços de correio eletrônico do Cliente. Por exemplo, o Cliente não pode usar a largura de banda ou o uso do disco como área de armazenamento offsite para arquivos eletrônicos ou como um serviço de provisionamento para terceiros de correio eletrônico ou hosts FTP. A empresa monitorará a largura de banda e o uso de disco do Cliente. A Empresa, a seu exclusivo critério, terá o direito de tomar qualquer ação corretiva se a largura de banda do Cliente ou o uso do disco exceder o Uso Aprovado ou outro armazenamento ou uso inadequado. Tal ação corretiva pode incluir a avaliação de tarifas adicionais, desconexão ou descontinuidade de qualquer e todos os Serviços, remoção ou exclusão do site do Cliente, Conteúdo do Cliente, serviços de correio eletrônico do Cliente e / ou outros materiais ou rescisão deste Contrato, Tomada à discrição exclusiva e absoluta da Companhia. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso ou crédito de quaisquer taxas pagas antes dessa ação. O Cliente cumprirá todas as leis, regras e regulamentos aplicáveis ​​no que se refere ao site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrônico do Cliente e cada um, incluindo largura de banda, espaço em disco e outros recursos apenas para fins legais. O Cliente não pode utilizar: os Serviços para copiar material de terceiros (incluindo texto, gráficos, música, vídeos ou outro material protegido por direitos autorais) sem a devida autorização; Os Serviços a se apropriar indevidamente ou infringir as patentes, direitos autorais, marcas registradas ou outros direitos de propriedade intelectual de terceiros; Os Serviços ao tráfico de drogas ilegais, jogos de azar ilegais, materiais obscenos ou outros produtos ou serviços proibidos pela lei aplicável; Os Serviços de exportação de software de criptografia para pontos fora dos Estados Unidos, em violação das leis de controle de exportação aplicáveis; Os Serviços para forjar ou deturpar cabeçalhos de mensagem, seja em todo ou em parte, para mascarar o originador da mensagem. Se a Empresa descobrir ou descobrir que o Cliente está a violar qualquer lei relacionada com o Web site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrónico do Cliente, utilização de largura de banda, utilização do disco ou Utilização Acordada, a Empresa poderá ser obrigada a informar os responsáveis ​​pela aplicação da lei. (S) relacionada (s) com o Cliente, o site do Cliente, o Conteúdo do Cliente e / ou o correio eletrônico do Cliente.\n\nCron Jobs: Enquanto os clientes são capazes de configurar jobs cron através de seu painel de control (linux apenas), Cron Job timing não pode ser mais rápido do que a cada 5 minutos. Cada servidor irá reverter \'cada minuto\' Cron Job a cada 5 minutos em uma base noturna.\n\n&nbsp;\n\n1.2.2) Utilização da CPU. O Cliente concorda que o Cliente não deve usar quantidades excessivas de processamento da CPU em nenhum dos servidores da Empresa. Qualquer violação desta política pode resultar em ações corretivas da Empresa, incluindo a avaliação de encargos adicionais, desconexão ou descontinuidade de todos e quaisquer Serviços, ou rescisão deste Contrato, cujas ações podem ser tomadas a critério exclusivo e absoluto da Empresa. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso de quaisquer taxas pagas antecipadamente antes de tal ação.\n\n&nbsp;\n\n1.3) Os scripts no site devem ser projetados para produzir conteúdo baseado na web e não usar o servidor como um servidor de aplicativos. Usar o servidor para gerar grandes volumes de e-mail a partir de um banco de dados é um exemplo de atividade que não é permitida. Scripts não devem tentar manipular os tempos limite em servidores. Estes são definidos nos valores presentes para garantir a confiabilidade do servidor. Os sites que redefinem esses recursos fazem isso porque são muito intensivos em recursos e afetam negativamente o desempenho do servidor e, portanto, não são permitidos.\n\n&nbsp;\n\n1.4) O MLK Solutions desabilitará qualquer domínio que não cumpra os seguintes critérios assim que tivermos conhecimento, de acordo com as práticas de trabalho atuais:\n\n&nbsp;\n\n1.4.1) O objetivo principal de qualquer site deve ser fornecer conteúdo baseado na web para os espectadores. Os arquivos no site devem estar vinculados ao site.\n\n&nbsp;\n\n1.4.2) O objetivo principal de qualquer script deve ser produzir uma página da web. Os scripts que enviam um único e-mail com base em informações inseridas pelo usuário ou atualizam um banco de dados são aceitáveis. Os scripts que enviam e-mails em massa ou executam processos de banco de dados intensivos de processador não são permitidos. Todo o correio enviado é monitorado e filtrado.\n\n&nbsp;\n\n1.4.3) Os sites não devem conter material Warez, ilegal, imoral ou protegido por direitos autorais. O ônus é sobre você o cliente para provar que você possui os direitos de publicar material, não para MLK Solutions para provar que você não.\n\n&nbsp;\n\n1.4.4) Os sites não devem conter arquivos MP3, pois não representam conteúdo da Web ativo. Outros ficheiros multimédia são aceitáveis ​​se estiverem configurados para transmitir ao cliente em vez de descarregar (consulte a secção 1.2 desta política).\n\n&nbsp;\n\n1.4.5) Os sites não devem conter arquivos protegidos por senha (por exemplo, zip ou rar) ou backups de dados.\n\n&nbsp;\n\n1.4.6) Os sites não devem conter material pornográfico ou outro material lascivo. O material adulto inclui toda a pornografia, imagens eróticas ou conteúdo obsceno ou obsceno. A designação de \"material adulto\" é deixada inteiramente à discrição de MLK Solutions.\n\n&nbsp;\n\n1.4.7) Os sites não devem usar quantidades excessivas de recursos do servidor. Estes incluem largura de banda, utilização do processador e / ou espaço em disco. Quando um site é encontrado para monopolizar os recursos disponíveis MLK Solutions se reserva o direito de suspender esse site imediatamente. Esta política só é implementada em circunstâncias extremas e destina-se a impedir o mau uso dos nossos servidores. Os clientes podem ser oferecidos uma opção em que uma opção de atualização ou adição de hospedagem é necessária.\n\n&nbsp;\n\n1.4.8) Os sites não devem conter scripts que tentem aceder a recursos de servidor privilegiados ou outros sites no mesmo servidor.\n\n&nbsp;\n\n1.4.9) Qualquer cliente MLK Solutions que pretenda utilizar a nossa infraestrutura no que diz respeito à prestação de serviços de jogos é obrigado a fornecer-nos uma cópia válida da sua licença de jogo de sua jurisdição de licenciamento. Isso deve ser fornecido a MLK Solutions antes da ativação de qualquer serviço de jogos.\n\n&nbsp;\n\n2) E-mail\n\n&nbsp;\n\n2.1) Se MLK Solutions identifica uma caixa de correio ou domínio que está causando problemas; Removeremos as caixas de correio ofensivas ou alteraremos suas configurações para resolver o problema. Em casos extremos, desativaremos o e-mail ou suspenderemos todos os serviços para o domínio, conforme apropriado.\n\n&nbsp;\n\n2.2) Problemas comuns que causam problemas são:\n\n&nbsp;\n\n2.2.1) Quando uma caixa de correio recebe grandes volumes de e-mails não entregues.\n\n&nbsp;\n\n2.2.2) Onde as caixas de correio têm encaminhadores definidos para outras caixas de correio onde o correio não pode ser entregue.\n\n&nbsp;\n\n2.2.3) Onde as caixas de correio têm encaminhadores e / ou auto-responders que geram loops de e-mail circulares.\n\n&nbsp;\n\n2.3) Você não pode usar os serviços de e-mail do MLK Solutions para qualquer um dos seguintes:\n\n&nbsp;\n\n2.3.4) Enviar mensagens ou comunicações que não sejam solicitadas, ofensivas, abusivas, indecentes ou obscenas.\n\n&nbsp;\n\n2.3.5) Enviar mensagens causando incómodo, inconveniência ou ansiedade a outro usuário da Internet.\n\n&nbsp;\n\n2.3.6) Enviar mensagens para efeitos de Fraude e / ou com a intenção de cometer uma infração penal.\n\n&nbsp;\n\n2.4) Para evitar o envio de correio não solicitado em massa, o tráfego SMTP para e de um servidor será bloqueado nos seguintes cenários:\n\n&nbsp;\n\n2.4.1) Onde identificamos um servidor que possui um relé de correio aberto.\n\n&nbsp;\n\n2.4.2) Quando um volume significativo de correio é enviado a partir de um domínio num período de 10 minutos.\n\n&nbsp;\n\n2.4.3) Onde temos recebido volumes significativos de reclamações relativas a correio não solicitado originado de um servidor hospedado MLK Solutions.\n\n&nbsp;\n\n2.5) Para evitar que os Endereços IP do MLK Solutions sejam bloqueados pelo bloqueio do Endereço IP, um domínio mantido nos servidores do MLK Solutions pode ser desativado:\n\n&nbsp;\n\n2.5.1) Onde temos recebido volumes significativos de reclamações relativas ao correio não solicitado originado ou a um email não solicitado enviado para promover sites hospedados em um servidor MLK Solutions.\n\n&nbsp;\n\nSPAM e e-mail comercial não solicitado (UCE): MLK Solutions tem uma abordagem de tolerância zero para o envio de correio eletrónico comercial não solicitado (UCE) ou SPAM através da nossa rede. Muito simplesmente, isso significa que os clientes da MLK Solutions não podem usar ou permitir que outros usem nossa rede para fazer transações na UCE. Os clientes de MLK Solutions não podem hospedar ou permitir hospedagem de sites ou informações que sejam anunciados pela UCE de outras redes. Violações desta política levam a penas severas, incluindo a cessação de serviço.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong><em>Nota</em></strong><em>: Todas as questões não contidas neste documento, encontram-se à apreciação de António Paulo Cunha Costa Raimundo, sendo a decisão do mesmo tomada como final e a cumprir-se nos termos legais da lei em vigor na República Portuguesa. Qualquer dúvida não hesite em contactar support@mlk.pt.</em>", "TOS", "", "inherit", "closed", "closed", "", "2103-autosave-v1", "", "", "2017-04-04 15:13:24", "2017-04-04 15:13:24", "", "2103", "https://mlksolutions.org/2103-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9850", "1", "2017-04-04 10:41:28", "2017-04-04 10:41:28", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFV2hhdCUyMG1ha2VzJTIwb3VyJTIwV29yZHByZXNzJTIwaG9zdGluZyUyMGlzJTIwQmVzdCUzRiUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQXV0b3VwZGF0ZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VXZSUyMHVwZGF0ZSUyMFdvcmRQcmVzcyUyMGNvcmUlMjBhbmQlMjBwbHVnaW5zJTIwdG8lMjBrZWVwJTIweW91ciUyMHNpdGUlMjBwcm90ZWN0ZWQuJTNDJTJGcCUzRQ==\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQWNjb3VudCUyMElzb2xhdGlvbiUzQyUyRmg0JTNFJTBBJTNDcCUzRVlvdXIlMjB3ZWJzaXRlJTIwd2lsbCUyMGJlJTIwc2FmZSUyMGV2ZW4lMjBpZiUyMHRoZXJlJTIwYXJlJTIwdnVsbmVyYWJsZSUyMGFjY291bnRzLiUzQyUyRnAlM0U=\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFT3B0aW1pemVkJTIwU29mdHdhcmUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VBbGwlMjBzb2Z0d2FyZSUyMHdlJTIwaW5zdGFsbCUyMG9uJTIwb3VyJTIwbWFjaGluZXMlMjBpcyUyMG9wdGltaXplZCUyMGZvciUyMHNwZWVkLiUzQyUyRnAlM0U=\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRGFpbHklMjBCYWNrdXBzJTNDJTJGaDQlM0UlMEElM0NwJTNFV2UlMjBrZWVwJTIwdXAlMjB0byUyMDMwJTIwZGFpbHklMjBiYWNrdXAlMjBjb3BpZXMlMjBvZiUyMHlvdXIlMjBXb3JkUHJlc3MlMjBzaXRlLiUzQyUyRnAlM0U=\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFVW5saW1pdGVkJTIwRW1haWwlMjBBZGRyZXNzZXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VDcmVhdGUlMjBhcyUyMG1hbnklMjBlbWFpbCUyMGFkZHJlc3NlcyUyQyUyMGFuZCUyMGVtYWlsJTIwZm9yd2FyZHMlMjBhcyUyMHlvdSUyMG5lZWQlMjElM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRGbGFyZSUyMEludGVncmF0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFQ2FjaGUlMjBjb250ZW50JTIwYW5kJTIwZmlsdGVyJTIwbWFsaWNpb3VzJTIwdHJhZmZpYyUyMGJlZm9yZSUyMGl0JTIwaGl0cyUyMHlvdXIlMjBzZXJ2ZXIuJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU2VydmVyJTIwTGV2ZWwlMjBQcm90ZWN0aW9uJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjBhJTIwbWFqb3IlMjB2dWxuZXJhYmlsaXR5JTIwYXBwZWFycyUyQyUyMHdlJTIwZGV2ZWxvcCUyMCUyNiUyMGFwcGx5JTIwc2VydmVyLWxldmVsJTIwZml4ZXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFRnJlZSUyMDI0JUMzJTk3NyUyRjM2NSUyMFN1cHBvcnQlM0MlMkZoNCUzRSUwQSUzQ3AlM0VZb3UlMjBjYW4lMjByZWFjaCUyMG91ciUyMHRlYW0lMjBhdCUyMGFueSUyMHRpbWUlMkMlMjBkYXklMjBvciUyMG5pZ2h0LiUzQyUyRnAlM0U=\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFMzAlMjBEYXklMjBNb25leS1iYWNrJTIwR3VhcmFudGVlJTNDJTJGaDQlM0UlMEElM0NwJTNFSWYlMjB5b3UlMjdyZSUyMG5vdCUyMGNvbXBsZXRlbHklMjBzYXRpc2ZpZWQlMkMlMjBzaW1wbHklMjBjYW5jZWwlMjB3aXRoaW4lMjAzMCUyMGRheXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"TGF0ZXN0JTIwTmV3cyUyMCUyRiUyMEJsb2dz\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"SGF2ZSUyMFF1ZXN0aW9ucyUzRg==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 10:41:28", "2017-04-04 10:41:28", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9851", "1", "2017-04-04 10:50:19", "2017-04-04 10:50:19", "", "SILVER", "", "inherit", "closed", "closed", "", "130-autosave-v1", "", "", "2017-04-04 10:50:19", "2017-04-04 10:50:19", "", "130", "https://mlksolutions.org/130-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9852", "1", "2017-04-04 10:53:13", "2017-04-04 10:53:13", "", "GOLD", "", "inherit", "closed", "closed", "", "129-autosave-v1", "", "", "2017-04-04 10:53:13", "2017-04-04 10:53:13", "", "129", "https://mlksolutions.org/129-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9854", "1", "2017-04-04 11:16:09", "2017-04-04 11:16:09", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"How do I cancel and delete my account?\"][vc_column_text]You can cancel or close your website and account at any time. To do so, login to ArkaHost with your email/password combination. Your sites will be listed on your dashboard. Click the \"delete site\" link to delete a website. If you are logging in with a username/password combination, then login, and click on the \"Site Settings\" link. You will find a delete account link at the bottom right of the Site Settings page.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I get my website listed in Google?\"][vc_column_text]Certainly, once you create your site, simply post your URL to Google\'s free site submission page. Note: It may take a few days to a few weeks to get listed.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 11:16:09", "2017-04-04 11:16:09", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9868", "1", "2017-04-04 13:51:06", "2017-04-04 13:51:06", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Como posso configurar os meus emails?\"][vc_column_text]Pode aceder ao seu email via webmail http://dominio/webmail , ou se preferir configurar o seu cliente de emails favorito onde todos os dados de configuração dos clientes de email, encontram-se na página inicial do webmail ou nas opções do mesmo.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQWxndW5zJTIwY2xpZW50ZXMlMjBkYSUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtaGVhcnQlMjBzaXRlY29sb3IlMjIlM0UlM0MlMkZpJTNFJTIwTUxLJTIwU29sdXRpb25zJTIxJTNDJTJGc3Ryb25nJTNF\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row][vc_column][flip_clients img=\"9866\" title=\"São só Utilidades\" link=\"http://www.saosoutilidades.com\" des=\"Blog Pessoal\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 13:51:06", "2017-04-04 13:51:06", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9856", "1", "2017-04-04 11:28:31", "2017-04-04 11:28:31", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Can I run a business?\"][vc_column_text]Absolutely! Hundreds of thousands of small businesses use Webs for their websites. Whether it\'s a simple business site or a full fledged online store, you can do it here. We also offer Premium Services like the ability to register a custom domain name (like yourname.com) to put a truly professional finish on your site.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 11:28:31", "2017-04-04 11:28:31", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9857", "1", "2017-04-04 13:38:34", "2017-04-04 13:38:34", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Does ArkaHost offer phone support?\"][vc_column_text]Yes! Phone support comes standard with our Pro Package. We offer email and live chat support options with our other packages, and we have a robust community forum where you can get help from the Webs community as well as ArkaHost staff members.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 13:38:34", "2017-04-04 13:38:34", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9858", "1", "2017-04-04 13:42:08", "2017-04-04 13:42:08", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Como posso configurar os meus emails?\"][vc_column_text]Pode aceder ao seu email via webmail http://dominio/webmail , ou se preferir configurar o seu cliente de emails favorito onde todos os dados de configuração dos clientes de email, encontram-se na página inicial do webmail ou nas opções do mesmo.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section5\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_third\" el_delay=\"200\"][vc_single_image image=\"1354\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column el_animate=\"animated eff-fadeInUp\" width=\"1/2\" el_class=\"two_third last\" el_delay=\"200\"][titles text=\"JTNDc3Ryb25nJTNFT3ZlciUyMDEwMCUyQiUyMEZyZWUlMjAxLUNsaWNrJTIwQXBwJTIwSW5zdGFsbHMlM0MlMkZzdHJvbmclM0U=\" type=\"h3\" class=\"caps\"][vc_column_text]\n<ul>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo1.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo2.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo3.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo4.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo5.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo6.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo7.jpg\" alt=\"\" /></li>\n 	<li><img src=\"https://mlksolutions.org/wp-content/uploads/2015/07/scripts-logo8.jpg\" alt=\"\" /></li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFd2h5JTIwY3VzdG9tZXJzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1oZWFydCUyMHNpdGVjb2xvciUyMiUzRSUzQyUyRmklM0UlMjB1cyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][testimonials words=\"50\" category=\"clients\" template=\"testimonial/layout-1.php\" order=\"desc\"][/vc_column][/vc_row][vc_row king_class=\"client_logos\"][vc_column][vc_column_text]\n\n<a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\"><img class=\"alignnone size-medium wp-image-229\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo12-gray.png\" alt=\"clientlogo12-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\"><img class=\"alignnone size-medium wp-image-226\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo18-gray.png\" alt=\"clientlogo18-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\"><img class=\"alignnone size-medium wp-image-232\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo13-gray.png\" alt=\"clientlogo13-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\"><img class=\"alignnone size-medium wp-image-233\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo14-gray.png\" alt=\"clientlogo14-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\"><img class=\"alignnone size-medium wp-image-227\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo19-gray.png\" alt=\"clientlogo19-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\"><img class=\"alignnone size-medium wp-image-228\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo11-gray.png\" alt=\"clientlogo11-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\"><img class=\"alignnone size-full wp-image-225\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo16-gray.png\" alt=\"clientlogo16-gray\" width=\"197\" height=\"100\" /></a><a href=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\"><img class=\"alignnone size-full wp-image-234\" src=\"https://mlksolutions.org/wp-content/uploads/2015/07/clientlogo20-gray.png\" alt=\"clientlogo20-gray\" width=\"197\" height=\"100\" /></a>\n\n[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 13:42:08", "2017-04-04 13:42:08", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9859", "1", "2017-04-04 13:48:19", "2017-04-04 13:48:19", "", "1914651_1291817737502252_7638834662661526346_n", "", "inherit", "open", "closed", "", "1914651_1291817737502252_7638834662661526346_n", "", "", "2017-04-04 13:48:19", "2017-04-04 13:48:19", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/1914651_1291817737502252_7638834662661526346_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9860", "1", "2017-04-04 13:48:23", "2017-04-04 13:48:23", "", "apateiraeventsv_1482846854_280", "", "inherit", "open", "closed", "", "apateiraeventsv_1482846854_280", "", "", "2017-04-04 13:48:23", "2017-04-04 13:48:23", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/apateiraeventsv_1482846854_280.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9861", "1", "2017-04-04 13:48:24", "2017-04-04 13:48:24", "", "11951932_897977606949154_5310957690001016210_n", "", "inherit", "open", "closed", "", "11951932_897977606949154_5310957690001016210_n", "", "", "2017-04-04 13:48:24", "2017-04-04 13:48:24", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/11951932_897977606949154_5310957690001016210_n.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("9862", "1", "2017-04-04 13:48:27", "2017-04-04 13:48:27", "", "15590197_1820150014890376_406898579234556122_n (1)", "", "inherit", "open", "closed", "", "15590197_1820150014890376_406898579234556122_n-1", "", "", "2017-04-04 13:48:27", "2017-04-04 13:48:27", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/15590197_1820150014890376_406898579234556122_n-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9863", "1", "2017-04-04 13:48:35", "2017-04-04 13:48:35", "", "16406641_706965232814136_157636203858084222_n", "", "inherit", "open", "closed", "", "16406641_706965232814136_157636203858084222_n", "", "", "2017-04-04 13:48:35", "2017-04-04 13:48:35", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/16406641_706965232814136_157636203858084222_n.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("9864", "1", "2017-04-04 13:48:47", "2017-04-04 13:48:47", "", "10392595_976067072407308_6186526313517852947_n", "", "inherit", "open", "closed", "", "10392595_976067072407308_6186526313517852947_n", "", "", "2017-04-04 13:48:47", "2017-04-04 13:48:47", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/10392595_976067072407308_6186526313517852947_n.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpos_posts` VALUES("9865", "1", "2017-04-04 13:48:57", "2017-04-04 13:48:57", "", "image", "", "inherit", "open", "closed", "", "image", "", "", "2017-04-04 13:48:57", "2017-04-04 13:48:57", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/image.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9866", "1", "2017-04-04 13:49:13", "2017-04-04 13:49:13", "", "saosoutil", "", "inherit", "open", "closed", "", "saosoutil", "", "", "2017-04-04 13:49:13", "2017-04-04 13:49:13", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/saosoutil.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9867", "1", "2017-04-04 13:49:38", "2017-04-04 13:49:38", "", "starsta_logo", "", "inherit", "open", "closed", "", "starsta_logo", "", "", "2017-04-04 13:49:38", "2017-04-04 13:49:38", "", "1189", "https://mlksolutions.org/wp-content/uploads/2015/07/starsta_logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9870", "1", "2017-04-04 13:56:41", "2017-04-04 13:56:41", "\"Funciona bem, isso para mim é o mais importante, no entanto sempre que necessário estão sempre presentes\".", "PrivateDrivers", "", "publish", "closed", "closed", "", "privatedrivers", "", "", "2017-04-04 14:17:09", "2017-04-04 14:17:09", "", "0", "https://mlksolutions.org/?post_type=testimonials&#038;p=9870", "0", "testimonials", "", "0");
INSERT INTO `wpos_posts` VALUES("9871", "1", "2017-04-04 13:57:18", "2017-04-04 13:57:18", "\"Serviços fantásticos, funciona tudo como prometem.\"", "CoresQB", "", "publish", "closed", "closed", "", "coresqb", "", "", "2017-04-04 14:17:01", "2017-04-04 14:17:01", "", "0", "https://mlksolutions.org/?post_type=testimonials&#038;p=9871", "0", "testimonials", "", "0");
INSERT INTO `wpos_posts` VALUES("9872", "1", "2017-04-04 14:00:23", "2017-04-04 14:00:23", "\"Assistência perfeita, extrema flexibilidade a preço low-cost.\"", "Luís Faustino", "", "publish", "closed", "closed", "", "luis-faustino", "", "", "2017-04-04 14:16:51", "2017-04-04 14:16:51", "", "0", "https://mlksolutions.org/?post_type=testimonials&#038;p=9872", "0", "testimonials", "", "0");
INSERT INTO `wpos_posts` VALUES("9873", "1", "2017-04-04 14:00:13", "2017-04-04 14:00:13", "", "17311781_1655660054740407_532168808_o", "", "inherit", "open", "closed", "", "17311781_1655660054740407_532168808_o", "", "", "2017-04-04 14:00:13", "2017-04-04 14:00:13", "", "9872", "https://mlksolutions.org/wp-content/uploads/2017/04/17311781_1655660054740407_532168808_o.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9874", "1", "2017-04-04 14:01:27", "2017-04-04 14:01:27", "\"Serviço prático e staff prestável\"", "A Pateira", "", "publish", "closed", "closed", "", "a-pateira", "", "", "2017-04-04 14:16:40", "2017-04-04 14:16:40", "", "0", "https://mlksolutions.org/?post_type=testimonials&#038;p=9874", "0", "testimonials", "", "0");
INSERT INTO `wpos_posts` VALUES("9875", "1", "2017-04-04 14:03:30", "2017-04-04 14:03:30", "\"A MLK tem um serviço de excelência 365/7/24, alojamento rápido e seguro, excelentes preços e assistência 5 estrelas. recomenda-se!\"", "Dupladesign", "", "publish", "closed", "closed", "", "dupladesign", "", "", "2017-04-04 14:16:23", "2017-04-04 14:16:23", "", "0", "https://mlksolutions.org/?post_type=testimonials&#038;p=9875", "0", "testimonials", "", "0");
INSERT INTO `wpos_posts` VALUES("9876", "1", "2017-04-04 14:04:53", "2017-04-04 14:04:53", "\"For anyone needing hosting services, I highly recommend <span class=\"highlightNode\">MLK</span> solutions.\"", "Starska Translations", "", "publish", "closed", "closed", "", "starska-translations", "", "", "2017-04-04 14:16:03", "2017-04-04 14:16:03", "", "0", "https://mlksolutions.org/?post_type=testimonials&#038;p=9876", "0", "testimonials", "", "0");
INSERT INTO `wpos_posts` VALUES("9881", "1", "2017-04-04 14:29:31", "2017-04-04 14:29:31", "[vc_row king_row_type=\"container_full\"][vc_column][rev_slider_vc alias=\"home-page-3\"][/vc_column][/vc_row][vc_row king_class=\"host_plans\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQSUyMG1lbGhvciUyMGVzY29saGElMjBkZSUyMHBsYW5vcyUyMHBhcmElMjBzaSUyMSUzQyUyRnN0cm9uZyUzRSUwQSUzQ2VtJTNFJTBBT3MlMjBtZWxob3JlcyUyMHNlcnZpJUMzJUE3b3MlMjAlMkMlMjBtJUMzJUExeGltYSUyMGxpYmVyZGFkZSUyMGUlMjBzZW0lMjBkJUMzJUJBdmlkYSUyMG9zJTIwbWVsaG9yZXMlMjBwcmUlQzMlQTdvcy4lMEElM0MlMkZlbSUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][pricing amount=\"3\" active=\"3\" category=\"hosting-group-1\" template=\"pricing/layout-1.php\" currency=\"€\"][/vc_column][/vc_row][vc_row king_class=\"feature_section1\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFUG9ycXVlJTIwbm9zJTIwY29uc2lkZXJhbW9zJTIwb3MlMjBtZWxob3JlcyUyMSUzQyUyRnN0cm9uZyUzRQ==\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"30px\"][vc_row_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"250\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ2xvdWRmbGFyZSUzQyUyRmg0JTNFJTBBJTNDcCUzRUludGVncmElQzMlQTclQzMlQTNvJTIwZGUlMjBDbG91ZGZsYXJlJTIwY29tJTIwbyUyMHNldSUyMHNlcnZpJUMzJUE3byUzQyUyRnAlM0U=\" icon_awesome=\"rocket\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJpdmFjaWRhZGUlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUb2RvcyUyMG9zJTIwc2V1cyUyMGRhZG9zJTIwcyVDMyVBM28lMjBwcml2YWRvcyUyMGUlMjBhcGVuYXMlMjB1bWElMjBwZXNzb2ElMjB0ZW0lMjBhY2Vzc28lMjBzZSUyMG5lY2VzcyVDMyVBMXJpby4lM0MlMkZwJTNF\" icon_awesome=\"lock\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUmFwaWRleiUyMGUlMjBGaWFiaWxpZGFkZSUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlcnZpZG9yZXMlMjBlcXVpcGFkb3MlMjBjb20lMjBYRU9OJTIwUXVhZC1jb3JlJTIwJTI4SHlwZXItVGhyZWFkaW5nJTI5JTIwZSUyMDI0R0IlMjBSQU0uJTNDJTJGcCUzRQ==\" icon_awesome=\"tachometer\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"350\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFja3VwcyUyMERpJUMzJUExcmlvcyUzQyUyRmg0JTNFJTBBJTNDcCUzRU1hbnRlbW9zJTIwbyUyMHNldSUyMGJhY2t1cCUyMGR1cmFudGUlMjAxJTIwbSVDMyVBQXMuJTNDJTJGcCUzRQ==\" icon_awesome=\"download\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQ29udGFzJTIwZGUlMjBFbWFpbCUyMElsaW1pdGFkYXMlM0MlMkZoNCUzRSUwQSUzQ3AlM0VUZW5oYSUyMGFzJTIwY29udGFzJTIwcXVlJTIwcHJlY2lzYXIlMjBjb20lMjBvJTIwZXNwYSVDMyVBN28lMjBxdWUlMjBuZWNlc3NpdGFyJTIwJTI4Y29udGElMjklM0MlMkZwJTNF\" icon_awesome=\"sitemap\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFY1BhbmVsJTNDJTJGaDQlM0UlMEElM0NwJTNFTyUyMHBhaW5lbCUyMGRlJTIwY29udHJvbG8lMjBtYWlzJTIwZiVDMyVBMWNpbCUyMGUlMjB1dGlsaXphZG8lMjBkbyUyME11bmRvJTNDJTJGcCUzRQ==\" icon_awesome=\"cog\" retina=\"no\"][/vc_column_inner][vc_column_inner el_class=\"one_third last\" el_animate=\"animated eff-fadeIn\" width=\"1/3\" el_delay=\"450\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFQmFzZXMlMjBkZSUyMERhZG9zJTIwTXlTcWwlM0MlMkZoNCUzRSUwQSUzQ3AlM0VJbGltaXRhZGFzJTIwZSUyMHNlbSUyMGxpbWl0ZSUyMGRlJTIwdGFtYW5obyUyMCUyOGNvbnRhJTI5LiUzQyUyRnAlM0U=\" icon_awesome=\"database\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFU3Vwb3J0ZSUyMHNvYnJlJTIwbyUyMFNlcnZpJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVNlbXByZSUyMHF1ZSUyMGhvdXZlciUyMHVtJTIwcHJvYmxlbWElMjB0JUMzJUE5Y25pY28lMjBjb20lMjBvJTIwc2VydmklQzMlQTdvJTIwY29udHJhdGFkby4lM0MlMkZwJTNF\" icon_awesome=\"clock-o\" retina=\"no\"][margin margin_top=\"50px\"][elements des=\"JTNDaDQlMjBjbGFzcyUzRCUyMmxpZ2h0JTIyJTNFUHJlJUMzJUE3byUzQyUyRmg0JTNFJTBBJTNDcCUzRVJlbGElQzMlQTclQzMlQTNvJTIwUXVhbGlkYWRlJTJGUHJlJUMzJUE3byUyMEZhbnQlQzMlQTFzdGljYSUyMSUyMSUyMSUzQyUyRnAlM0U=\" icon_awesome=\"usd\" retina=\"no\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row king_class=\"feature_section3\"][vc_column el_animate=\"animated eff-fadeInLeft\" width=\"1/2\" el_class=\"one_half\" el_delay=\"200\"][titles text=\"VWx0aW1hcyUyME5vdmlkYWRlcw==\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][posts items=\"5\" words=\"16\" template=\"post/slider-single-item.php\"][/vc_column][vc_column el_animate=\"animated eff-fadeInRight\" width=\"1/2\" el_class=\"one_half last\" el_delay=\"200\"][titles text=\"VGVtJTIwRCVDMyVCQXZpZGFzJTNG\" type=\"h2\" class=\"caps\"][margin margin_top=\"10px\"][vc_accordion style=\"3\" icon=\"icon-plus-square-2\" el_class=\"st-accordion\"][vc_accordion_tab title=\"Onde posso comprar um domínio?\"][vc_column_text]A MLK Solutions não é \"registrar\", permitindo-lhe a liberdade de escolha do domínio, assim como procurar o mais barato. No entanto aconselhamos os serviços da <a href=\"http://www.webhs.pt\">WebHs.pt </a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Comprei o domínio e agora?\"][vc_column_text]1º indicar durante o processo de compra o domínio obtido e finalizar.\n\n2º ir onde comprou o domínio e alterar os <em>\"nameservers\" , nas definições de DNS para:</em>\n\nns1.mlk.pt\n\nns2.mlk.pt\n\n3º se tem uma conta MLK Care os nameservers são outros , pff contacte support@mlk.pt[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Posso ter uma loja de e-commerce?\"][vc_column_text]Com certeza!!! E sem pagar mais por isso! O nosso instalador automático <em>\"Softaculous\"</em> , entre outros programas, inclui : Wordpress (Woocommerce) , Magento , OpenCart, Joomla , ZenCart e muitos mais. Com os nossos subdominios ilimitados e o \"Softaculous\" a sua imaginação é que manda.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Como posso configurar os meus emails?\"][vc_column_text]Pode aceder ao seu email via webmail http://dominio/webmail , ou se preferir configurar o seu cliente de emails favorito onde todos os dados de configuração dos clientes de email, encontram-se na página inicial do webmail ou nas opções do mesmo.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row king_class=\"feature_section6\"][vc_column][titles text=\"JTNDc3Ryb25nJTNFQWxndW5zJTIwY2xpZW50ZXMlMjBkYSUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtaGVhcnQlMjBzaXRlY29sb3IlMjIlM0UlM0MlMkZpJTNFJTIwTUxLJTIwU29sdXRpb25zJTIxJTNDJTJGc3Ryb25nJTNF\" type=\"h1\" effect=\" animated eff-fadeInUp delay-200ms\" class=\"caps\"][margin margin_top=\"10px\"][/vc_column][/vc_row][vc_row][vc_column][vc_gallery type=\"image_grid\" images=\"9873,9867,9866,9865,9864,9863,9862,9861,9860,9859\" onclick=\"custom_link\" custom_links_target=\"_blank\" custom_links=\"#E-8_aHR0cCUzQSUyRiUyRnd3dy5sdWlzZmF1c3Rpbm8uZXUlMkNodHRwJTNBJTJGJTJGd3d3LnN0YXJza2F0cmFuc2xhdGlvbnMuY29tJTJDaHR0cCUzQSUyRiUyRnd3dy5zYW9zb3V0aWxpZGFkZXMuY29tJTJDaHR0cCUzQSUyRiUyRnd3dy5hcGN1cC5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cuc29nZXJhc3VjZXNzby5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cuY29yZXNxYi5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cucHJpdmF0ZWRyaXZlcnMucHQlMkNodHRwJTNBJTJGJTJGd3d3LmR1cGxhZGVzaWduLnB0JTJDaHR0cCUzQSUyRiUyRnd3dy5hcGF0ZWlyYS5wdCUyQ2h0dHAlM0ElMkYlMkZ3d3cuc2t5Zml0bmVzcy5wdA==\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "1189-revision-v1", "", "", "2017-04-04 14:29:31", "2017-04-04 14:29:31", "", "1189", "https://mlksolutions.org/1189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9882", "1", "2017-04-04 15:03:08", "2017-04-04 15:03:08", "<header class=\"entry-header\">Dois anos depois, Lisboa volta a ser a casa da Comunidade Portuguesa de WordPress, acolhendo o sexto WordCamp nacional.Este é um evento do qual vais querer fazer parte. Afinal não é todos os dias que podes obter e consolidar conhecimentos sobre WordPress, aprender mais, ouvir bons oradores, inspirar-te e inspirar outros e contactar com pessoas fantásticas.\r\n\r\nPrometemos muito WordPress, oradores e apresentações à altura da ocasião, magníficos espaços, alimentação e, acima de tudo, boa disposição.\r\n\r\nO WordCamp é, acima de tudo, uma oportunidade para dar e receber, uma grande festa de uma comunidade da qual tu fazes parte.\r\n\r\nTemos a certeza que será mais um grande momento do desenvolvimento do WordPress em Portugal e contamos com a tua ajuda para o concretizar.\r\n\r\nSe gostas do WordPress, se o utilizas em sites pessoais, comunitários ou de âmbito profissional, se estás a dar os primeiros passos e a aprender alguns truques, se não utilizas mas estás curioso, o WordCamp é para ti.\r\n\r\nO WordCamp Lisboa 2017 será nos dias 20 e 21 de Maio, no <a href=\"http://www.iscte-iul.pt/home.aspx\">ISCTE</a>.\r\n<h1 class=\"entry-title\"></h1>\r\n<h1 class=\"entry-title\">8 excelentes razões porque deves ir ao WordCamp Lisboa 2017</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nJá viste que cada vez que fazes uma instalação do WordPress é instalado um plugin chamado “Hello Dolly”? Sabes quantos site têm, efectivamente, esse plugin a funcionar?\r\n\r\nSe fores ao WordCamp Lisboa 2017 talvez encontres alguém que te responda a estas questões. Afinal um WordCamp é sobre WordPress e é sempre possível esperar o inesperado.\r\n\r\nUm WordCamp é diferente de outros eventos do género. Há uma atmosfera excepcional que faz deles momentos especiais. Os franceses diriam que têm “je ne sais quoi…”.\r\n\r\nNós temos vários motivos para estar no WordCamp Lisboa 2017 mas revelamos apenas 8.\r\n<h2>1. WordCamp é sobre WordPress e a sua comunidade</h2>\r\nO WordCamp não é só uma conferência sobre WordPress. É bem mais que isso. É juntar e alargar a comunidade de utilizadores. Sejam profissionais, avançados, médios e mesmo a pessoa que só há duas semanas ouviu falar do WordPress.\r\n\r\nO WordCamp é para todos os interessados em WordPress.\r\n\r\nÉ um momento para trocar ideias e informações, equacionar novas abordagens e saber como é que a coisa funciona.\r\n<h2>2. WordCamp é para aprender e partilhar</h2>\r\nDo mais requintado profissional, com anos de experiência, até ao novato, que chegou há duas semanas, o WordCamp é um local para obter novos conhecimentos. Seja sobre questões técnicas, a vertente de negócios ou outra. Podes aprender nas conferências, nos intervalos, na teoria e na prática, no Dia do Contribuidor e nalgumas sessões especiais. Certo é que vais aprender. Muito.\r\n<h2>3. WordCamp é para fazer novos amigos ou rever os velhos</h2>\r\nHá algo mais importante para quem usa WordPress que conhecer outras pessoas que usam WordPress? Bom, talvez haja. Mas não estraguemos o efeito pretendido. O WordCamp é o local ideal para conhecer ou retomar o contacto com muitas pessoas que usam o software. Tens a oportunidade de fazer novos amigos e trocar contactos. Provavelmente haverá um ou dois estudos validados por entidades de prestígio internacional que atestam que “conhecer novas pessoas num WordCamp” foi das melhores coisas que já fizeram.\r\nQuem sabe não encontras alguém que te ajuda a resolver aquele problema que te preocupa há meses.\r\n<h2>4. WordCamp é para contactar com os patrocinadores</h2>\r\nO WordCamp tem patrocinadores que ajudam a minimizar o custo do bilhete (já lá vamos). Estão lá porque se sentem empenhados em apoiar uma comunidade na qual também estão envolvidos. Estão lá também em busca de novas oportunidades de negócios, com intenções de fazer novos amigos e contactos e de aprender e trocar experiências. Enfim, têm os mesmo objectivos que todos os outros participantes no evento. Contacta com eles, partilha algo, aprende um pouco.\r\n<h2>5. WordCamp é para ganhar inspiração</h2>\r\nSeja da atmosfera, seja dos novos amigos, seja do que aprendemos, no final de um WordCamp saíamos recarregados de energia e inspirados a fazer mais e melhor.\r\nAlém daquele que aprenderes sobre WordPress vais ouvir falar de novas tendências, de outras tecnologias que te vão inspirar a saber mais. E a cresceres enquanto profissional, utilizar e, porque não, enquanto pessoa.\r\n<h2>6. WordCamp é restaurante de luxo a preço de tasca</h2>\r\nHá mais alguma conferência de grande nível, com oradores de mérito, temas relevantes, almoço, café e bolinhos incluído, onde podes fazer novos amigos e aprender muito, ao preço de um bilhete para o WordCamp? Sem esquecer a habitual t-shirt e mais umas quantas prendas.\r\n<h2>7. WordCamp é descomplexado</h2>\r\nEsperamos que não tenhas ficado assustado com a expressão “restaurante de luxo”. O WordCamp é um evento informal e descontraído. Deixa o fato em casa, leva a t-shirt ou camisa preferida e vai de calções se o tempo ajudar.\r\n<h2>8. O WordCamp és tu</h2>\r\nO WordCamp Lisboa 2017 será, a exemplo de todos os outros, um evento especial. Mas só será absolutamente fantástico se estiveres lá. Contamos contigo.\r\n\r\n</div>\r\n(textos retirados do site institucional do evento <a href=\"https://2017.lisboa.wordcamp.org\">WordCamp Lisboa 2017</a> )", "WordCamp Lisboa Maio 2017", "", "publish", "open", "open", "", "wordcamp-lisboa-maio-2017", "", "", "2017-04-04 15:04:48", "2017-04-04 15:04:48", "", "0", "https://mlksolutions.org/?p=9882", "0", "post", "", "0");
INSERT INTO `wpos_posts` VALUES("9883", "1", "2017-04-04 15:00:59", "2017-04-04 15:00:59", "", "transferir", "", "inherit", "open", "closed", "", "transferir", "", "", "2017-04-04 15:00:59", "2017-04-04 15:00:59", "", "9882", "https://mlksolutions.org/wp-content/uploads/2017/04/transferir.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9884", "1", "2017-04-04 15:03:08", "2017-04-04 15:03:08", "<header class=\"entry-header\">Dois anos depois, Lisboa volta a ser a casa da Comunidade Portuguesa de WordPress, acolhendo o sexto WordCamp nacional.\r\n\r\nEste é um evento do qual vais querer fazer parte. Afinal não é todos os dias que podes obter e consolidar conhecimentos sobre WordPress, aprender mais, ouvir bons oradores, inspirar-te e inspirar outros e contactar com pessoas fantásticas.\r\n\r\nPrometemos muito WordPress, oradores e apresentações à altura da ocasião, magníficos espaços, alimentação e, acima de tudo, boa disposição.\r\n\r\nO WordCamp é, acima de tudo, uma oportunidade para dar e receber, uma grande festa de uma comunidade da qual tu fazes parte.\r\n\r\nTemos a certeza que será mais um grande momento do desenvolvimento do WordPress em Portugal e contamos com a tua ajuda para o concretizar.\r\n\r\nSe gostas do WordPress, se o utilizas em sites pessoais, comunitários ou de âmbito profissional, se estás a dar os primeiros passos e a aprender alguns truques, se não utilizas mas estás curioso, o WordCamp é para ti.\r\n\r\nO WordCamp Lisboa 2017 será nos dias 20 e 21 de Maio, no <a href=\"http://www.iscte-iul.pt/home.aspx\">ISCTE</a>.\r\n<h1 class=\"entry-title\"></h1>\r\n<h1 class=\"entry-title\">8 excelentes razões porque deves ir ao WordCamp Lisboa 2017</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nJá viste que cada vez que fazes uma instalação do WordPress é instalado um plugin chamado “Hello Dolly”? Sabes quantos site têm, efectivamente, esse plugin a funcionar?\r\n\r\nSe fores ao WordCamp Lisboa 2017 talvez encontres alguém que te responda a estas questões. Afinal um WordCamp é sobre WordPress e é sempre possível esperar o inesperado.\r\n\r\nUm WordCamp é diferente de outros eventos do género. Há uma atmosfera excepcional que faz deles momentos especiais. Os franceses diriam que têm “je ne sais quoi…”.\r\n\r\nNós temos vários motivos para estar no WordCamp Lisboa 2017 mas revelamos apenas 8.\r\n<h2>1. WordCamp é sobre WordPress e a sua comunidade</h2>\r\nO WordCamp não é só uma conferência sobre WordPress. É bem mais que isso. É juntar e alargar a comunidade de utilizadores. Sejam profissionais, avançados, médios e mesmo a pessoa que só há duas semanas ouviu falar do WordPress.\r\n\r\nO WordCamp é para todos os interessados em WordPress.\r\n\r\nÉ um momento para trocar ideias e informações, equacionar novas abordagens e saber como é que a coisa funciona.\r\n<h2>2. WordCamp é para aprender e partilhar</h2>\r\nDo mais requintado profissional, com anos de experiência, até ao novato, que chegou há duas semanas, o WordCamp é um local para obter novos conhecimentos. Seja sobre questões técnicas, a vertente de negócios ou outra. Podes aprender nas conferências, nos intervalos, na teoria e na prática, no Dia do Contribuidor e nalgumas sessões especiais. Certo é que vais aprender. Muito.\r\n<h2>3. WordCamp é para fazer novos amigos ou rever os velhos</h2>\r\nHá algo mais importante para quem usa WordPress que conhecer outras pessoas que usam WordPress? Bom, talvez haja. Mas não estraguemos o efeito pretendido. O WordCamp é o local ideal para conhecer ou retomar o contacto com muitas pessoas que usam o software. Tens a oportunidade de fazer novos amigos e trocar contactos. Provavelmente haverá um ou dois estudos validados por entidades de prestígio internacional que atestam que “conhecer novas pessoas num WordCamp” foi das melhores coisas que já fizeram.\r\nQuem sabe não encontras alguém que te ajuda a resolver aquele problema que te preocupa há meses.\r\n<h2>4. WordCamp é para contactar com os patrocinadores</h2>\r\nO WordCamp tem patrocinadores que ajudam a minimizar o custo do bilhete (já lá vamos). Estão lá porque se sentem empenhados em apoiar uma comunidade na qual também estão envolvidos. Estão lá também em busca de novas oportunidades de negócios, com intenções de fazer novos amigos e contactos e de aprender e trocar experiências. Enfim, têm os mesmo objectivos que todos os outros participantes no evento. Contacta com eles, partilha algo, aprende um pouco.\r\n<h2>5. WordCamp é para ganhar inspiração</h2>\r\nSeja da atmosfera, seja dos novos amigos, seja do que aprendemos, no final de um WordCamp saíamos recarregados de energia e inspirados a fazer mais e melhor.\r\nAlém daquele que aprenderes sobre WordPress vais ouvir falar de novas tendências, de outras tecnologias que te vão inspirar a saber mais. E a cresceres enquanto profissional, utilizar e, porque não, enquanto pessoa.\r\n<h2>6. WordCamp é restaurante de luxo a preço de tasca</h2>\r\nHá mais alguma conferência de grande nível, com oradores de mérito, temas relevantes, almoço, café e bolinhos incluído, onde podes fazer novos amigos e aprender muito, ao preço de um bilhete para o WordCamp? Sem esquecer a habitual t-shirt e mais umas quantas prendas.\r\n<h2>7. WordCamp é descomplexado</h2>\r\nEsperamos que não tenhas ficado assustado com a expressão “restaurante de luxo”. O WordCamp é um evento informal e descontraído. Deixa o fato em casa, leva a t-shirt ou camisa preferida e vai de calções se o tempo ajudar.\r\n<h2>8. O WordCamp és tu</h2>\r\nO WordCamp Lisboa 2017 será, a exemplo de todos os outros, um evento especial. Mas só será absolutamente fantástico se estiveres lá. Contamos contigo.\r\n\r\n</div>\r\n(textos retirados do site institucional do evento <a href=\"https://2017.lisboa.wordcamp.org\">WordCamp Lisboa 2017</a> )", "WordCamp Lisboa Maio 2017", "", "inherit", "closed", "closed", "", "9882-revision-v1", "", "", "2017-04-04 15:03:08", "2017-04-04 15:03:08", "", "9882", "https://mlksolutions.org/9882-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9885", "1", "2017-04-04 15:04:40", "2017-04-04 15:04:40", "", "wordcamplisboa", "", "inherit", "open", "closed", "", "wordcamplisboa", "", "", "2017-04-04 15:04:40", "2017-04-04 15:04:40", "", "9882", "https://mlksolutions.org/wp-content/uploads/2017/04/wordcamplisboa.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpos_posts` VALUES("9886", "1", "2017-04-04 15:04:48", "2017-04-04 15:04:48", "<header class=\"entry-header\">Dois anos depois, Lisboa volta a ser a casa da Comunidade Portuguesa de WordPress, acolhendo o sexto WordCamp nacional.Este é um evento do qual vais querer fazer parte. Afinal não é todos os dias que podes obter e consolidar conhecimentos sobre WordPress, aprender mais, ouvir bons oradores, inspirar-te e inspirar outros e contactar com pessoas fantásticas.\r\n\r\nPrometemos muito WordPress, oradores e apresentações à altura da ocasião, magníficos espaços, alimentação e, acima de tudo, boa disposição.\r\n\r\nO WordCamp é, acima de tudo, uma oportunidade para dar e receber, uma grande festa de uma comunidade da qual tu fazes parte.\r\n\r\nTemos a certeza que será mais um grande momento do desenvolvimento do WordPress em Portugal e contamos com a tua ajuda para o concretizar.\r\n\r\nSe gostas do WordPress, se o utilizas em sites pessoais, comunitários ou de âmbito profissional, se estás a dar os primeiros passos e a aprender alguns truques, se não utilizas mas estás curioso, o WordCamp é para ti.\r\n\r\nO WordCamp Lisboa 2017 será nos dias 20 e 21 de Maio, no <a href=\"http://www.iscte-iul.pt/home.aspx\">ISCTE</a>.\r\n<h1 class=\"entry-title\"></h1>\r\n<h1 class=\"entry-title\">8 excelentes razões porque deves ir ao WordCamp Lisboa 2017</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nJá viste que cada vez que fazes uma instalação do WordPress é instalado um plugin chamado “Hello Dolly”? Sabes quantos site têm, efectivamente, esse plugin a funcionar?\r\n\r\nSe fores ao WordCamp Lisboa 2017 talvez encontres alguém que te responda a estas questões. Afinal um WordCamp é sobre WordPress e é sempre possível esperar o inesperado.\r\n\r\nUm WordCamp é diferente de outros eventos do género. Há uma atmosfera excepcional que faz deles momentos especiais. Os franceses diriam que têm “je ne sais quoi…”.\r\n\r\nNós temos vários motivos para estar no WordCamp Lisboa 2017 mas revelamos apenas 8.\r\n<h2>1. WordCamp é sobre WordPress e a sua comunidade</h2>\r\nO WordCamp não é só uma conferência sobre WordPress. É bem mais que isso. É juntar e alargar a comunidade de utilizadores. Sejam profissionais, avançados, médios e mesmo a pessoa que só há duas semanas ouviu falar do WordPress.\r\n\r\nO WordCamp é para todos os interessados em WordPress.\r\n\r\nÉ um momento para trocar ideias e informações, equacionar novas abordagens e saber como é que a coisa funciona.\r\n<h2>2. WordCamp é para aprender e partilhar</h2>\r\nDo mais requintado profissional, com anos de experiência, até ao novato, que chegou há duas semanas, o WordCamp é um local para obter novos conhecimentos. Seja sobre questões técnicas, a vertente de negócios ou outra. Podes aprender nas conferências, nos intervalos, na teoria e na prática, no Dia do Contribuidor e nalgumas sessões especiais. Certo é que vais aprender. Muito.\r\n<h2>3. WordCamp é para fazer novos amigos ou rever os velhos</h2>\r\nHá algo mais importante para quem usa WordPress que conhecer outras pessoas que usam WordPress? Bom, talvez haja. Mas não estraguemos o efeito pretendido. O WordCamp é o local ideal para conhecer ou retomar o contacto com muitas pessoas que usam o software. Tens a oportunidade de fazer novos amigos e trocar contactos. Provavelmente haverá um ou dois estudos validados por entidades de prestígio internacional que atestam que “conhecer novas pessoas num WordCamp” foi das melhores coisas que já fizeram.\r\nQuem sabe não encontras alguém que te ajuda a resolver aquele problema que te preocupa há meses.\r\n<h2>4. WordCamp é para contactar com os patrocinadores</h2>\r\nO WordCamp tem patrocinadores que ajudam a minimizar o custo do bilhete (já lá vamos). Estão lá porque se sentem empenhados em apoiar uma comunidade na qual também estão envolvidos. Estão lá também em busca de novas oportunidades de negócios, com intenções de fazer novos amigos e contactos e de aprender e trocar experiências. Enfim, têm os mesmo objectivos que todos os outros participantes no evento. Contacta com eles, partilha algo, aprende um pouco.\r\n<h2>5. WordCamp é para ganhar inspiração</h2>\r\nSeja da atmosfera, seja dos novos amigos, seja do que aprendemos, no final de um WordCamp saíamos recarregados de energia e inspirados a fazer mais e melhor.\r\nAlém daquele que aprenderes sobre WordPress vais ouvir falar de novas tendências, de outras tecnologias que te vão inspirar a saber mais. E a cresceres enquanto profissional, utilizar e, porque não, enquanto pessoa.\r\n<h2>6. WordCamp é restaurante de luxo a preço de tasca</h2>\r\nHá mais alguma conferência de grande nível, com oradores de mérito, temas relevantes, almoço, café e bolinhos incluído, onde podes fazer novos amigos e aprender muito, ao preço de um bilhete para o WordCamp? Sem esquecer a habitual t-shirt e mais umas quantas prendas.\r\n<h2>7. WordCamp é descomplexado</h2>\r\nEsperamos que não tenhas ficado assustado com a expressão “restaurante de luxo”. O WordCamp é um evento informal e descontraído. Deixa o fato em casa, leva a t-shirt ou camisa preferida e vai de calções se o tempo ajudar.\r\n<h2>8. O WordCamp és tu</h2>\r\nO WordCamp Lisboa 2017 será, a exemplo de todos os outros, um evento especial. Mas só será absolutamente fantástico se estiveres lá. Contamos contigo.\r\n\r\n</div>\r\n(textos retirados do site institucional do evento <a href=\"https://2017.lisboa.wordcamp.org\">WordCamp Lisboa 2017</a> )", "WordCamp Lisboa Maio 2017", "", "inherit", "closed", "closed", "", "9882-revision-v1", "", "", "2017-04-04 15:04:48", "2017-04-04 15:04:48", "", "9882", "https://mlksolutions.org/9882-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9887", "1", "2017-04-04 15:11:57", "2017-04-04 15:11:57", " ", "", "", "publish", "closed", "closed", "", "9887", "", "", "2017-04-04 15:11:57", "2017-04-04 15:11:57", "", "0", "https://mlksolutions.org/?p=9887", "4", "nav_menu_item", "", "0");
INSERT INTO `wpos_posts` VALUES("9889", "1", "2017-04-04 15:14:27", "2017-04-04 15:14:27", "<strong><u>Condições de Serviço</u></strong>\r\n\r\n&nbsp;\r\n\r\n<em>A MLK Solutions encontra-se representada nas finanças pelo contribuinte António Paulo Cunha Costa Raimundo – NIF230675999 e registado com o </em><em><strong>CAE</strong></em><em>:</em> <em><strong>63110</strong></em> <em>- ACTIVIDADES DE PROCESSAMENTO DE DADOS, DOMICILIAÇÃO DE INFORMAÇÃO E ACTIVIDADES RELACIONADAS</em><em>.</em>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“A MLK Solutions proíbe alguns ficheiros nos alojamentos partilhados (alojamento web, revenda e webdrive), entre os quais destacamos: MP3, Imagens e Vídeos protegidos por copyright, Exploits, Torrents, Trackers, Cracks, Warez, Nukes, Flooders e qualquer outro tipo de ficheiro que não esteja em conformidade com a lei ou possa prejudicar o bom funcionamento dos servidores.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions proíbe alguns programas nos servidores, entre os quais destacamos: Port Scanners, Exploits Scanners, Nukes, Flooders, Servidores de Jogos (excluindo em servidor dedicado), Servidores de Socks, ficheiros pesados para download e qualquer outro tipo de programa que possa prejudicar o bom funcionamento dos servidores.</li>\r\n 	<li>A existência de links para os programas/ficheiros acima descritos, ou que possam ser enquadrados na generalidade da descrição, também serão considerados ilegais perante as condições de serviço aqui mencionadas.</li>\r\n 	<li>Exceto quando devidamente indicado, os serviços de alojamento prestados pela MLK Solutions servem para a publicação de páginas, recurso a bases de dados e sistemas de email. Não se encontra contemplado nos nossos serviços a utilização de contas de alojamento para streaming de áudio, vídeo ou repositório de ficheiros (vulgo backup).</li>\r\n 	<li>É proibida a utilização massiva de recursos no servidor. Caso se verifique que um cliente se encontra a absorver todos os recursos A MLK Solutions poderá tomar medidas para que tal não aconteça.</li>\r\n 	<li>Não é permitido o alojamento de conteúdo adulto, seja ela sob a forma de fotografias ou vídeos. A determinação final do que constitui “conteúdo adulto” fica a cargo da MLK Solutions.</li>\r\n 	<li>Não é permitido colocar no servidor ficheiros que contenham conteúdos punidos pelas leis do país onde os servidores se encontram (EUA e/ou Portugal).</li>\r\n 	<li>Realizar ataques (nomeadamente de DDoS) ou scans a partir da MLK Solutions é proibido. Caso aconteça, a conta será terminada sem aviso prévio.</li>\r\n 	<li>A utilização de forma abusiva e/ou com diferentes propósitos dos explícitos/óbvios referentes ao tipo de conta adquirida não é aceitável.</li>\r\n 	<li>As contas de alojamento são destinadas ao cliente que a subscreveu. Nenhum cliente pode subalugar ou subalugar, ou seja, não pode alugar, alojar ou revender serviços a terceiros, excluindo contas existentes para esse efeito.</li>\r\n 	<li>A MLK Solutions apenas presta serviço de suporte ao cliente que comprou o serviço e nunca a terceiros.</li>\r\n 	<li>Utilizar as contas de e-mail ou o alojamento para o envio de Spam é proibido. Caso a sua conta esteja envolvida em atividades de spam a MLK Solutions reserva-se no direito de cancelar a mesma, sem qualquer reembolso.</li>\r\n 	<li>O cliente que adquiriu a conta à MLK Solutions é responsável pelo que acontece dentro da mesma, mesmo que problemas relativos à mesma tenham sido obra de terceiros.</li>\r\n 	<li>O cliente é responsável pelos conteúdos da sua conta e deverá efectuar cópias de segurança. A MLK Solutions não se responsabiliza caso ocorram problemas com os mesmos.</li>\r\n 	<li>Às regras da MLK Solutions acrescem as regras dos serviços de terceiros que interajam com as contas dos utilizadores da MLK Solutions, tais como os Servidores de IRC, Motores de busca, etc. Caso essas regras não sejam cumpridas a MLK Solutions reserva-se ao direito de tomar as medidas necessárias para que tal aconteça.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de recusar a abertura de contas sem que para tal necessite de justificá-lo.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de alterar estas condições sempre que achar necessário sem qualquer aviso prévio.\r\nSe for detetada qualquer uma destas situações, a MLK Solutions reserva-se no direito de suspender/cancelar a conta sem aviso prévio.”</li>\r\n 	<li>A MLK Solutions não presta apoio informático na configuração dos clientes de emails e na restante configuração do serviço e utilização dos programas contidos no mesmo, sendo esta utilização e configuração da responsabilidade do cliente.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Contas MLK CARE</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Estas contas são para uso exclusivo de entidades, associações ou instituições de cariz solidário e de interesse público sem qualquer interesse ou vantagem financeira em geral.</li>\r\n 	<li>A criação destas contas exige a um escrutínio por parte da MLK Solutions, de forma a averiguar os requisitos para a atribuição do serviço.</li>\r\n 	<li>Todas as entidades ao abrigo deste protocolo solidário, têm de obrigatoriamente colocar uma imagem de destaque da MLK Care na página inicial do seu site, com link para <a href=\"http://www.mlk.pt\">http://www.mlk.pt</a> e de tamanho nunca inferior a 50px/70px |___| .</li>\r\n 	<li>O pedido destas contas de web hosting tem de ser obrigatoriamente feito via email , através do endereço <a href=\"mailto:mlkcare@mlk.pt\">mlkcare@mlk.pt</a>.</li>\r\n 	<li>O suporte técnico destas contas, limita-se na sua essência ao bom funcionamento do serviço e nunca à configuração do mesmo, nem a outros programas contidos no serviço.</li>\r\n 	<li>A MLK Solutions não se responsabiliza por qualquer falha no serviço, sendo que o serviço deve estar preparado para eventuais falhas de acesso e mesmo de remoção de ficheiros, pelo que aconselhamos a que seja feito um backup diário.</li>\r\n 	<li>Por ser um serviço oferecido, a MLK Solutions não tem de indemnizar por quais quer danos que o serviço possa causar ao funcionamento da entidade .</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Suspensões e Cancelamentos</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n<ul>\r\n 	<li>Os pagamentos devem ser efetuados até ao próprio dia que a conta expira. Após 15 dias sem pagamento, a conta de alojamento será suspensa. 30 dias após a data de pagamento, a conta será apagada.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions não se responsabiliza pela não entrega de e-mails a notificar a data de pagamento. Tal facto não serve como argumento válido para o não pagamento na data devida. O cliente deverá manter-se informado sobre a data de pagamento na sua zona de cliente.</li>\r\n 	<li>Expirada a data de renovação, a responsabilidade sobre a salvaguarda dos conteúdos recai sobre o cliente, não podendo ser imputada à MLK Solutions.</li>\r\n 	<li>Os comprovativos de pagamento são remetidos em formato digital (PDF) , emitidos os recibos no portal das finanças.</li>\r\n 	<li>A MLK Solutions reserva-se no direito de alterar os preços de qualquer um dos seus serviços a qualquer altura, tendo em conta que deverá também notificar todos os seus clientes das alterações do(s) preço(s) com quinze (15) dias de antecedência.</li>\r\n 	<li>A MLK Solutions reserva-se ao direito de fazer os upgrades e downgrades que ache necessário para adaptar os serviços obtidos dos clientes aos pacotes existentes em venda.</li>\r\n</ul>\r\n<ul>\r\n 	<li>A MLK Solutions reserva-se no direito de suspender e/ou cancelar o serviço a clientes em qualquer altura, com base nas condições acima descritas.</li>\r\n 	<li>Se tal cancelamento for devido a violação por parte do cliente de alguma das condições descritas neste documento, não será devido qualquer reembolso.</li>\r\n 	<li>Os clientes podem cancelar o serviço em qualquer altura. Tal não obriga a MLK Solutions a qualquer reembolso.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Acordo de Nível de Serviço</strong>\r\n\r\n&nbsp;\r\n\r\nEste Contrato de Nível de Serviço MLK Solutions (\"SLA\") se aplica a todos os clientes compartilhados e dedicados. O Cliente concorda que as medições por meio de terceiros estabelecem a elegibilidade para qualquer Crédito de Desempenho aplicável. Caso o Cliente determine que existe uma discrepância nessa mensuração, o Cliente deverá notificar prontamente MLK Solutions e MLK Solutions e o Cliente concordará mutuamente sobre a validade e exatidão da medição e sobre a elegibilidade do Cliente para quaisquer Créditos de Desempenho aplicáveis\r\n\r\n&nbsp;\r\n\r\nEste SLA pode ser alterado a qualquer momento por MLK Solutions.\r\n\r\n&nbsp;\r\n\r\nA Rede MLK Solutions é definida como o equipamento, software e instalações dentro do segmento de rede MLK Solutions, incluindo os serviços ISP contratados da MLK Solutions aos quais o segmento de rede MLK Solutions está conectado e utilizado coletivamente pela MLK Solutions para fornecer serviços dedicados e Serviços de co-localização\r\n\r\n&nbsp;\r\n\r\nDisponibilidade de serviço é o tempo total em um mês de calendário que o MLK Solutions está disponível através da Internet, desde que o cliente tenha estabelecido conectividade. A MLK Solutions assume a responsabilidade pela Disponibilidade do Serviço no seu segmento de rede imediato e não pode ser responsabilizada por problemas diretamente relacionados com um fornecedor de largura de banda a montante. A rede MLK Solutions estará disponível para clientes livres de interrupções de rede por 99% do tempo\r\n\r\n&nbsp;\r\n\r\nO Tempo de Inatividade do Serviço é qualquer interrupção não planejada na Disponibilidade do Serviço durante a qual o Cliente é incapaz de aceder os serviços como descrito na seção anterior, desde que a interrupção seja determinada por ter sido causada por um problema no segmento de rede MLK Solutions imediato como confirmado pela MLK Solutions. Com o tempo de inatividade do serviço é medido como o tempo total de interrupção não planejada na disponibilidade do serviço durante um mês de calendário. MLK Solutions não é responsável por quaisquer interrupções não planejadas devido a falhas de software de terceiros são de responsabilidade direta do editor do software e não de MLK Solutions\r\n\r\n&nbsp;\r\n\r\nO tempo de inatividade de serviço programado é qualquer interrupção de MLK Solutions de serviços de hospedagem. O tempo de inatividade de serviço programado ocorre durante uma janela de manutenção do servidor MLK Solutions, que ocorre em conjunto com uma notificação de 12 horas ao cliente por meio de comunicação eletrônica.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nExclusões de serviços\r\n\r\n&nbsp;\r\n\r\nEste SLA não cobre o tempo de inatividade do serviço causado por problemas no seguinte:\r\n\r\n&nbsp;\r\n\r\n* Rede de área local do cliente\r\n\r\n* Conectividade à Internet ou software de utilizador final fornecido pelo cliente\r\n\r\n* Entidades dentro da rede interna do cliente, incluindo, mas não se limitando a, configuração de firewall e modelagem de largura de banda, estações de trabalho de área local ou outros servidores, equipamentos e software que tenham um potencial impacto no ambiente de rede local\r\n\r\n&nbsp;\r\n\r\nExclusões de tempo de serviço\r\n\r\n&nbsp;\r\n\r\nSão excluídos do cálculo mensal de Disponibilidade do Serviço:\r\n\r\n&nbsp;\r\n\r\n* Qualquer tempo de serviço programado utilizado\r\n\r\n* Qualquer problema além do segmento de rede MLK Solutions imediato\r\n\r\n* Quaisquer interrupções, atrasos ou falhas causados ​​por funcionários, agentes ou subcontratados do Cliente ou Cliente, tais como, mas não se limitando a:\r\n\r\nConfiguração imprecisa\r\n\r\nO Uso não compatível de qualquer software instalado no servidor\r\n\r\nO Cliente iniciou a sobre utilização do servidor\r\n\r\nO Quaisquer problemas relacionados a ataques à máquina como hacking, ataques baseados em largura de banda de qualquer natureza e explorações de serviços ou sistemas operacionais\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Política de Privacidade</strong>\r\n\r\n&nbsp;\r\n\r\nColeta de Informações Pessoais ::\r\n\r\n&nbsp;\r\n\r\nTodos os dados cedidos à MLK Solutions pelos clientes serão mantidos em sigilo. Em momento algum será partilhada a informação do cliente com outras empresas do mesmo grupo ou empresas terceiras.\r\n\r\nPara uma maior segurança, todas as áreas do nosso website que tenham o intuito de recolher informação cedida pelo cliente encontram-se protegidas por certificados SSL.\r\n\r\nOs dados que nos sejam cedidos por clientes são utilizados única e exclusivamente para contactos realizados pela MLK Solutions, não sendo cedidos a qualquer entidade terceira.\r\n\r\n&nbsp;\r\n\r\nPara aceder nossos serviços MLK Solutions, você será solicitado a fazer login com um endereço de e-mail e uma senha, que chamamos de credenciais. Na maioria dos casos, essas credenciais farão parte do MLK Solutions, o que significa que você pode usar as mesmas credenciais para fazer login em diversos sites e serviços. Ao fazer login no site ou no serviço MLK Solutions, você pode entrar automaticamente em outros sites e serviços.\r\n\r\n&nbsp;\r\n\r\nVocê também pode ser solicitado a fornecer respostas, que usamos para ajudar a confirmar sua identidade e ajudar na redefinição de sua senha, bem como um endereço de e-mail alternativo. Um número de ID exclusivo será atribuído às suas credenciais que serão usadas para identificar suas credenciais e informações associadas.\r\n\r\n&nbsp;\r\n\r\nSolicitamos que você forneça informações pessoais, como seu endereço de e-mail, nome, endereço residencial ou profissional ou número de telefone. Podemos também coletar informações demográficas, como seu NIF/NIPCS, idade, sexo, preferências, interesses e favoritos. Se você optar por fazer uma compra ou se inscrever para um serviço de assinatura paga, solicitaremos informações adicionais, como o endereço de faturação, usados ​​para criar uma conta de cliente.\r\n\r\n&nbsp;\r\n\r\nPodemos guardar informações sobre sua visita, incluindo as páginas que você vê, os links que você clica e outras ações tomadas em conexão com o site MLK Solutions e serviços. Também guardamos algumas informações padrão que seu navegador envia para todos os sites que você visita, como seu endereço IP, tipo de navegador e idioma, tempos de acesso e endereços de sites de referência.\r\n\r\n&nbsp;\r\n\r\nUso de suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nMLK Solutions guarda e usa suas informações pessoais para operar e melhorar seus sites e entregar os serviços ou realizar as transações que você solicitou. Esses usos podem incluir o fornecimento de um serviço ao cliente mais eficaz; Tornando os sites ou serviços mais fáceis de usar, eliminando a necessidade de você digitar repetidamente as mesmas informações.\r\n\r\n&nbsp;\r\n\r\nTambém usamos suas informações pessoais para nos comunicar com você. Podemos enviar certas comunicações de serviço obrigatórias, como e-mails de boas-vindas, lembretes de faturação, informações sobre problemas de serviços técnicos e anúncios de segurança.\r\n\r\n&nbsp;\r\n\r\nPartilha das suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nNós não divulgaremos suas informações pessoais fora de MLK Solutions. Permitimos que você escolha compartilhar suas informações pessoais para que elas possam contatá-lo sobre nossos produtos, serviços ou ofertas. Suas informações serão mantidas confidenciais e estão proibidas de usá-las para qualquer outra finalidade. Podemos aceder e / ou divulgar suas informações pessoais se acreditarmos que tal ação é necessária em circunstâncias urgentes para proteger a segurança pessoal dos usuários.\r\n\r\n&nbsp;\r\n\r\nAceder às suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nVocê pode ter a capacidade de visualizar ou editar suas informações pessoais on-line. Para ajudar a impedir que suas informações pessoais sejam vistas por outros, você será solicitado a fazer login com suas credenciais (endereço de e-mail e senha). Você pode escrever / e-mails e nós entraremos em contato com você sobre o seu pedido.\r\n\r\n&nbsp;\r\n\r\nSegurança das suas informações pessoais ::\r\n\r\n&nbsp;\r\n\r\nMLK Solutions é cometido a proteger a segurança de suas informações pessoais. Utilizamos uma variedade de procedimentos de segurança e implementamos procedimentos físicos, eletrónicos e gerenciais adequados para ajudar a proteger suas informações pessoais de acesso e uso não autorizados. Quando transmitimos informações altamente confidenciais (como uma senha) pela Internet, protegemo-lo através do uso de criptografia, como o protocolo Secure Socket Layer (SSL). Além disso, é sua responsabilidade manter sua senha confidencial. Não compartilhe esta informação com ninguém. Se você estiver compartilhando um computador com alguém, você deve sempre optar por efetuar logoff antes de deixar um site ou serviço para proteger o acesso às suas informações de usuários subsequentes.\r\n\r\n&nbsp;\r\n\r\nAlterações a esta declaração de privacidade ::\r\n\r\n&nbsp;\r\n\r\nOcasionalmente, atualizaremos esta declaração de privacidade para refletir as alterações nos nossos serviços e os comentários dos clientes. Encorajamos você a revisar periodicamente esta declaração para ser informado de como MLK Solutions está protegendo suas informações e gerenciando as coisas.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Política de Uso Aceitável</strong>\r\n\r\n&nbsp;\r\n\r\nEsta política está sujeita a alterações, sem aviso prévio, portanto verifique regularmente as atualizações. Esta política é adicionalmente, e considerada parte dos Termos e Condições da MLK Solutions. MLK Solutions será o único árbitro sobre o que constitui uma violação desta disposição. Se você achar que descobriu uma violação de qualquer área de nossa AUP (exceto avisos de suposta violação de nossos clientes ou quaisquer ordens judiciais, intimações, mandados de busca ou outros processos legais, o endereço de e-mail para todos os quais é \"legal @ MLK Solutions \")\r\n\r\n&nbsp;\r\n\r\n1) Web Hosting\r\n\r\n&nbsp;\r\n\r\n1.1) MLK Solutions reserva-se o direito de suspender ou cancelar o acesso de um cliente a qualquer ou todos os serviços prestados por MLK Solutions, onde MLK Solutions decide que a conta foi usada de forma inadequada. MLK Solutions se reserva o direito de recusar o serviço e / ou o acesso a seus servidores a qualquer um.\r\n\r\n&nbsp;\r\n\r\n1.2) MLK Solutions oferece vários níveis de espaço web e largura de banda de subsídio com os diferentes tipos de conta. Por isso, queremos dizer espaço para o conteúdo do site legítimo e largura de banda para os visitantes para vê-lo. Todos os arquivos em um domínio devem fazer parte do site ativo e estar vinculados ao site. MP3 e outros grandes arquivos multimídia não são conteúdo baseado na web. MLK Solutions oferece um serviço de streaming de mídia para este tipo de conteúdo. Todos os arquivos, informações e e-mails sob a conta serão preservados por 30 dias a partir da data do pagamento. Se o pagamento não for recebido após 30 dias, todos os arquivos, informações e e-mails sob a conta poderão ser excluídos. Se o assinante desejar reutilizar / reativar o serviço, o assinante poderá precisar se candidatar novamente como novo assinante, e uma taxa de ativação poderá ser necessária.\r\n\r\n&nbsp;\r\n\r\n1.2.1) Utilização da largura de banda e do disco: A empresa fornecerá ao Cliente um volume ilimitado de largura de banda, espaço em disco e outros recursos, como contas de correio eletrónico e / ou de transferência de ficheiros (FTP). Os Serviços são destinados apenas para uso normal. Qualquer atividade que resulte em uso excessivo inconsistente com padrões normais de uso é estritamente proibida. O Cliente concorda que tal largura de banda e uso de disco não devem exceder os valores estabelecidos pela Empresa para os Serviços (o \"Uso Aprovado\"). Essas alocações são otimizadas e dedicadas a servir o Conteúdo e os serviços de e-mail do Cliente relacionados apenas com as contas de hospedagem na Web do Cliente com a Empresa. O Cliente não deve usar qualquer largura de banda e / ou uso de disco para materiais que não sejam o site do Cliente, o Conteúdo do Cliente e / ou os serviços de correio eletrônico do Cliente. Por exemplo, o Cliente não pode usar a largura de banda ou o uso do disco como área de armazenamento offsite para arquivos eletrônicos ou como um serviço de provisionamento para terceiros de correio eletrônico ou hosts FTP. A empresa monitorará a largura de banda e o uso de disco do Cliente. A Empresa, a seu exclusivo critério, terá o direito de tomar qualquer ação corretiva se a largura de banda do Cliente ou o uso do disco exceder o Uso Aprovado ou outro armazenamento ou uso inadequado. Tal ação corretiva pode incluir a avaliação de tarifas adicionais, desconexão ou descontinuidade de qualquer e todos os Serviços, remoção ou exclusão do site do Cliente, Conteúdo do Cliente, serviços de correio eletrônico do Cliente e / ou outros materiais ou rescisão deste Contrato, Tomada à discrição exclusiva e absoluta da Companhia. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso ou crédito de quaisquer taxas pagas antes dessa ação. O Cliente cumprirá todas as leis, regras e regulamentos aplicáveis ​​no que se refere ao site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrônico do Cliente e cada um, incluindo largura de banda, espaço em disco e outros recursos apenas para fins legais. O Cliente não pode utilizar: os Serviços para copiar material de terceiros (incluindo texto, gráficos, música, vídeos ou outro material protegido por direitos autorais) sem a devida autorização; Os Serviços a se apropriar indevidamente ou infringir as patentes, direitos autorais, marcas registradas ou outros direitos de propriedade intelectual de terceiros; Os Serviços ao tráfico de drogas ilegais, jogos de azar ilegais, materiais obscenos ou outros produtos ou serviços proibidos pela lei aplicável; Os Serviços de exportação de software de criptografia para pontos fora dos Estados Unidos, em violação das leis de controle de exportação aplicáveis; Os Serviços para forjar ou deturpar cabeçalhos de mensagem, seja em todo ou em parte, para mascarar o originador da mensagem. Se a Empresa descobrir ou descobrir que o Cliente está a violar qualquer lei relacionada com o Web site do Cliente, Conteúdo do Cliente e / ou serviços de correio eletrónico do Cliente, utilização de largura de banda, utilização do disco ou Utilização Acordada, a Empresa poderá ser obrigada a informar os responsáveis ​​pela aplicação da lei. (S) relacionada (s) com o Cliente, o site do Cliente, o Conteúdo do Cliente e / ou o correio eletrônico do Cliente.\r\n\r\nCron Jobs: Enquanto os clientes são capazes de configurar jobs cron através de seu painel de control (linux apenas), Cron Job timing não pode ser mais rápido do que a cada 5 minutos. Cada servidor irá reverter \'cada minuto\' Cron Job a cada 5 minutos em uma base noturna.\r\n\r\n&nbsp;\r\n\r\n1.2.2) Utilização da CPU. O Cliente concorda que o Cliente não deve usar quantidades excessivas de processamento da CPU em nenhum dos servidores da Empresa. Qualquer violação desta política pode resultar em ações corretivas da Empresa, incluindo a avaliação de encargos adicionais, desconexão ou descontinuidade de todos e quaisquer Serviços, ou rescisão deste Contrato, cujas ações podem ser tomadas a critério exclusivo e absoluto da Empresa. Se a Empresa tomar qualquer ação corretiva sob esta seção, o Cliente não terá direito a um reembolso de quaisquer taxas pagas antecipadamente antes de tal ação.\r\n\r\n&nbsp;\r\n\r\n1.3) Os scripts no site devem ser projetados para produzir conteúdo baseado na web e não usar o servidor como um servidor de aplicativos. Usar o servidor para gerar grandes volumes de e-mail a partir de um banco de dados é um exemplo de atividade que não é permitida. Scripts não devem tentar manipular os tempos limite em servidores. Estes são definidos nos valores presentes para garantir a confiabilidade do servidor. Os sites que redefinem esses recursos fazem isso porque são muito intensivos em recursos e afetam negativamente o desempenho do servidor e, portanto, não são permitidos.\r\n\r\n&nbsp;\r\n\r\n1.4) O MLK Solutions desabilitará qualquer domínio que não cumpra os seguintes critérios assim que tivermos conhecimento, de acordo com as práticas de trabalho atuais:\r\n\r\n&nbsp;\r\n\r\n1.4.1) O objetivo principal de qualquer site deve ser fornecer conteúdo baseado na web para os espectadores. Os arquivos no site devem estar vinculados ao site.\r\n\r\n&nbsp;\r\n\r\n1.4.2) O objetivo principal de qualquer script deve ser produzir uma página da web. Os scripts que enviam um único e-mail com base em informações inseridas pelo usuário ou atualizam um banco de dados são aceitáveis. Os scripts que enviam e-mails em massa ou executam processos de banco de dados intensivos de processador não são permitidos. Todo o correio enviado é monitorado e filtrado.\r\n\r\n&nbsp;\r\n\r\n1.4.3) Os sites não devem conter material Warez, ilegal, imoral ou protegido por direitos autorais. O ônus é sobre você o cliente para provar que você possui os direitos de publicar material, não para MLK Solutions para provar que você não.\r\n\r\n&nbsp;\r\n\r\n1.4.4) Os sites não devem conter arquivos MP3, pois não representam conteúdo da Web ativo. Outros ficheiros multimédia são aceitáveis ​​se estiverem configurados para transmitir ao cliente em vez de descarregar (consulte a secção 1.2 desta política).\r\n\r\n&nbsp;\r\n\r\n1.4.5) Os sites não devem conter arquivos protegidos por senha (por exemplo, zip ou rar) ou backups de dados.\r\n\r\n&nbsp;\r\n\r\n1.4.6) Os sites não devem conter material pornográfico ou outro material lascivo. O material adulto inclui toda a pornografia, imagens eróticas ou conteúdo obsceno ou obsceno. A designação de \"material adulto\" é deixada inteiramente à discrição de MLK Solutions.\r\n\r\n&nbsp;\r\n\r\n1.4.7) Os sites não devem usar quantidades excessivas de recursos do servidor. Estes incluem largura de banda, utilização do processador e / ou espaço em disco. Quando um site é encontrado para monopolizar os recursos disponíveis MLK Solutions se reserva o direito de suspender esse site imediatamente. Esta política só é implementada em circunstâncias extremas e destina-se a impedir o mau uso dos nossos servidores. Os clientes podem ser oferecidos uma opção em que uma opção de atualização ou adição de hospedagem é necessária.\r\n\r\n&nbsp;\r\n\r\n1.4.8) Os sites não devem conter scripts que tentem aceder a recursos de servidor privilegiados ou outros sites no mesmo servidor.\r\n\r\n&nbsp;\r\n\r\n1.4.9) Qualquer cliente MLK Solutions que pretenda utilizar a nossa infraestrutura no que diz respeito à prestação de serviços de jogos é obrigado a fornecer-nos uma cópia válida da sua licença de jogo de sua jurisdição de licenciamento. Isso deve ser fornecido a MLK Solutions antes da ativação de qualquer serviço de jogos.\r\n\r\n&nbsp;\r\n\r\n2) E-mail\r\n\r\n&nbsp;\r\n\r\n2.1) Se MLK Solutions identifica uma caixa de correio ou domínio que está causando problemas; Removeremos as caixas de correio ofensivas ou alteraremos suas configurações para resolver o problema. Em casos extremos, desativaremos o e-mail ou suspenderemos todos os serviços para o domínio, conforme apropriado.\r\n\r\n&nbsp;\r\n\r\n2.2) Problemas comuns que causam problemas são:\r\n\r\n&nbsp;\r\n\r\n2.2.1) Quando uma caixa de correio recebe grandes volumes de e-mails não entregues.\r\n\r\n&nbsp;\r\n\r\n2.2.2) Onde as caixas de correio têm encaminhadores definidos para outras caixas de correio onde o correio não pode ser entregue.\r\n\r\n&nbsp;\r\n\r\n2.2.3) Onde as caixas de correio têm encaminhadores e / ou auto-responders que geram loops de e-mail circulares.\r\n\r\n&nbsp;\r\n\r\n2.3) Você não pode usar os serviços de e-mail do MLK Solutions para qualquer um dos seguintes:\r\n\r\n&nbsp;\r\n\r\n2.3.4) Enviar mensagens ou comunicações que não sejam solicitadas, ofensivas, abusivas, indecentes ou obscenas.\r\n\r\n&nbsp;\r\n\r\n2.3.5) Enviar mensagens causando incómodo, inconveniência ou ansiedade a outro usuário da Internet.\r\n\r\n&nbsp;\r\n\r\n2.3.6) Enviar mensagens para efeitos de Fraude e / ou com a intenção de cometer uma infração penal.\r\n\r\n&nbsp;\r\n\r\n2.4) Para evitar o envio de correio não solicitado em massa, o tráfego SMTP para e de um servidor será bloqueado nos seguintes cenários:\r\n\r\n&nbsp;\r\n\r\n2.4.1) Onde identificamos um servidor que possui um relé de correio aberto.\r\n\r\n&nbsp;\r\n\r\n2.4.2) Quando um volume significativo de correio é enviado a partir de um domínio num período de 10 minutos.\r\n\r\n&nbsp;\r\n\r\n2.4.3) Onde temos recebido volumes significativos de reclamações relativas a correio não solicitado originado de um servidor hospedado MLK Solutions.\r\n\r\n&nbsp;\r\n\r\n2.5) Para evitar que os Endereços IP do MLK Solutions sejam bloqueados pelo bloqueio do Endereço IP, um domínio mantido nos servidores do MLK Solutions pode ser desativado:\r\n\r\n&nbsp;\r\n\r\n2.5.1) Onde temos recebido volumes significativos de reclamações relativas ao correio não solicitado originado ou a um email não solicitado enviado para promover sites hospedados em um servidor MLK Solutions.\r\n\r\n&nbsp;\r\n\r\nSPAM e e-mail comercial não solicitado (UCE): MLK Solutions tem uma abordagem de tolerância zero para o envio de correio eletrónico comercial não solicitado (UCE) ou SPAM através da nossa rede. Muito simplesmente, isso significa que os clientes da MLK Solutions não podem usar ou permitir que outros usem nossa rede para fazer transações na UCE. Os clientes de MLK Solutions não podem hospedar ou permitir hospedagem de sites ou informações que sejam anunciados pela UCE de outras redes. Violações desta política levam a penas severas, incluindo a cessação de serviço.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><em>Nota</em></strong><em>: Todas as questões não contidas neste documento, encontram-se à apreciação de António Paulo Cunha Costa Raimundo, sendo a decisão do mesmo tomada como final e a cumprir-se nos termos legais da lei em vigor na República Portuguesa. Qualquer dúvida não hesite em contactar support@mlk.pt.</em>", "TOS", "", "inherit", "closed", "closed", "", "2103-revision-v1", "", "", "2017-04-04 15:14:27", "2017-04-04 15:14:27", "", "2103", "https://mlksolutions.org/2103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpos_posts` VALUES("9891", "1", "2017-04-04 15:54:04", "2017-04-04 15:54:04", "<img src=\"https://mlksolutions.org/wp-content/uploads/2017/04/MLK-CARE-02-300x134.png\" alt=\"\" width=\"300\" height=\"134\" class=\"alignnone size-medium wp-image-2203\" />\n[vc_row][vc_column css=\".vc_custom_1491319842592{margin-top: 0px !important;margin-right: 250px !important;margin-bottom: 0px !important;margin-left: 250px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_cta h2=\"Conta Grátis de Web Hosting para Associações/Instituições e Fundações de acção social.\" css_animation=\"fadeInUpBig\"]Na MLK Solutions da-mos importância ao que realmente importa, se é responsável por uma destas entidades , nós pedimos-lhe que gaste o dinheiro onde é realmente preciso: <strong>nas pessoas!</strong>\n\nSim!!! É grátis !!! Apenas tem de colocar o logótipo da MLK Care na página principal do seu site (onde quiser) com link para http://mlk.pt , enviar declaração da entidade a requerer o acesso ao serviço para o email <a href=\"mailto:ar@mlk.pt\">ar@mlk.pt</a>. Não tem contrapartidas financeiras, nada mais que isto!!!\n\nAguardo por um contacto seu.\n\nAntónio Raimundo - MLK Solutions Owner[/vc_cta][pricing amount=\"1\" category=\"hosting-group-2\" template=\"pricing/layout-3.php\" currency=\"€\"][/vc_column][/vc_row]", "MLK Care", "", "inherit", "closed", "closed", "", "1571-autosave-v1", "", "", "2017-04-04 15:54:04", "2017-04-04 15:54:04", "", "1571", "https://mlksolutions.org/1571-autosave-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wpos_revslider_css */
INSERT INTO `wpos_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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("9", ".tp-caption.modern_medium_fat_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("13", ".tp-caption.modern_small_text_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("15", ".tp-caption.black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#000\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("16", ".tp-caption.noshadow", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "[]", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("38", ".tp-caption.mediumlarge_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("48", ".tp-caption.text1strong", "{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "null", "{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(42, 54, 63)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"1px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("49", ".tp-caption.text2strong", "{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "null", "{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(42, 54, 63)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"2px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("50", ".tp-caption.text3", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#2a363f\",\"font-weight\":\"400\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"Roboto, sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(42, 54, 63)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("51", ".tp-caption.vline", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#2a363f\",\"font-weight\":\"400\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"Roboto, sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(42, 54, 63)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"1px\",\"height\":\"70px\",\"width\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("52", ".tp-caption.sbox1", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-size\":\"18px\",\"font-weight\":\"500\",\"line-height\":\"25px\",\"padding\":\"20px 16px 57px 20px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"background\":\"#86c724\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("53", ".tp-caption.sbut1text", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"500\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("55", ".tp-caption.cirbox1text", "{\"hover\":\"false\",\"translated\":\"5\",\"type\":\"text\",\"version\":\"custom\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"21px\",\"line-height\":\"\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"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\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"text-align\":\"center\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("56", ".tp-caption.h6", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"font-size\":\"14px\",\"line-height\":\"23px\",\"font-style\":\"normal\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}", "{\"idle\":{\"margin-bottom\":\"12px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("57", ".tp-caption.text11", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"200\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("58", ".tp-caption.text11-strong-caps", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"900\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("59", ".tp-caption.text12", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"200\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("60", ".tp-caption.text12-caps", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"200\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("61", ".tp-caption.text11-caps", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"200\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("62", ".tp-caption.text12-strong-caps", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"900\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("63", ".tp-caption.text13", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"16px\",\"line-height\":\"21px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"300\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"0.5px\",\"text-align\":\"right\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("64", ".tp-caption.text14", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"45px\",\"line-height\":\"50px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"normal\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("65", ".tp-caption.cirbox2text", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("66", ".tp-caption.sbut11text", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"500\",\"padding\":\"10px 25px\",\"border-radius\":\"3px 3px 3px 3px\",\"border-width\":\"2px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"solid\"}", "{\"idle\":{\"cursor\":\"pointer\",\"text-transform\":\"uppercase\",\"transition\":\"all 0.3s ease\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("67", ".tp-caption.text5-strong-caps", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"400\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\",\"text-align\":\"center\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("68", ".tp-caption.text2strong-white-caps", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#FFFFFF\",\"font-weight\":\"800\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(42, 54, 63)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"2px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("69", ".tp-caption.text5", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"400\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("70", ".tp-caption.text6", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"12px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"font-weight\":\"400\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("71", ".tp-caption.bgclor-text", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#fff\",\"font-size\":\"14px\",\"font-weight\":\"400\",\"padding\":\"2px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"background\":\"#2a3740\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("72", ".tp-caption.sbut10", "{\"hover\":\"false\",\"translated\":\"5\",\"type\":\"text\",\"version\":\"custom\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"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\":\"16px\",\"line-height\":\"\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"14px\",\"23px\",\"14px\",\"23px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"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\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"cursor\":\"pointer\",\"background\":\"#86c724\",\"text-transform\":\"uppercase\",\"transition\":\"all 0.3s ease\"},\"hover\":{\"background\":\"#2a363f\"}}");
INSERT INTO `wpos_revslider_css` VALUES("73", ".tp-caption.squarebox", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("74", ".tp-caption.text3-white", "{\"hover\":\"false\",\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}", "\"\"", "{\"color\":\"#FFF\",\"font-weight\":\"400\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"Roboto,sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(42, 54, 63)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("75", ".tp-caption.MarkerDisplay", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("76", ".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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("77", ".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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("78", ".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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("79", ".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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("80", ".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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("81", ".tp-caption.Restaurant-Menuitem", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("82", ".tp-caption.Furniture-LogoText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("83", ".tp-caption.Furniture-Plus", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("84", ".tp-caption.Furniture-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("85", ".tp-caption.Furniture-Subtitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("86", ".tp-caption.Gym-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("87", ".tp-caption.Gym-Subline", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("88", ".tp-caption.Gym-SmallText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("89", ".tp-caption.Fashion-SmallText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("90", ".tp-caption.Fashion-BigDisplay", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("91", ".tp-caption.Fashion-TextBlock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("92", ".tp-caption.Sports-Display", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("93", ".tp-caption.Sports-DisplayFat", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("94", ".tp-caption.Sports-Subline", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("95", ".tp-caption.Instagram-Caption", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("96", ".tp-caption.News-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("97", ".tp-caption.News-Subtitle", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("98", ".tp-caption.Photography-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("99", ".tp-caption.Photography-Subline", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("100", ".tp-caption.Photography-ImageHover", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("101", ".tp-caption.Photography-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"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\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("102", ".tp-caption.Photography-Textblock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("103", ".tp-caption.Photography-Subline-2", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("104", ".tp-caption.Photography-ImageHover2", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("105", ".tp-caption.WebProduct-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("106", ".tp-caption.WebProduct-SubTitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("107", ".tp-caption.WebProduct-Content", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("108", ".tp-caption.WebProduct-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"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\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("109", ".tp-caption.WebProduct-Title-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("110", ".tp-caption.WebProduct-SubTitle-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("111", ".tp-caption.WebProduct-Content-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("112", ".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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("113", ".tp-caption.NotGeneric-Title", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"[object Object]\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("114", ".tp-caption.NotGeneric-SubTitle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("115", ".tp-caption.NotGeneric-CallToAction", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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_rotation\":\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("116", ".tp-caption.NotGeneric-Icon", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"default\",\"speed\":\"300\",\"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_rotation\":\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("117", ".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_rotation\":\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("118", ".tp-caption.MarkerStyle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("119", ".tp-caption.Gym-Menuitem", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"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\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("120", ".tp-caption.Newspaper-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("121", ".tp-caption.Newspaper-Subtitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("122", ".tp-caption.Newspaper-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("123", ".tp-caption.Newspaper-Title-Centered", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("124", ".tp-caption.Hero-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("125", ".tp-caption.Video-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("126", ".tp-caption.Video-SubTitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("127", ".tp-caption.NotGeneric-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("128", ".tp-caption.NotGeneric-BigButton", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("129", ".tp-caption.WebProduct-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"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\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("130", ".tp-caption.Restaurant-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("131", ".tp-caption.Gym-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("132", ".tp-caption.Gym-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("133", ".tp-caption.Sports-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("134", ".tp-caption.Sports-Button-Red", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("135", ".tp-caption.Photography-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("136", ".tp-caption.Newspaper-Button-2", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"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\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("137", ".tp-caption.text1strong-white", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-transparency\":\"1\",\"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\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"1px\",\"text-transform\":\"uppercase\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("138", ".tp-caption.sbut10-white", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"rgb(255, 255, 255)\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"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\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#2a363f\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"cursor\":\"pointer\",\"text-transform\":\"uppercase\",\"transition\":\"all 0.3s ease\",\"padding\":\"0\"},\"hover\":{\"background\":\"#2a363f\"}}");
INSERT INTO `wpos_revslider_css` VALUES("139", ".tp-caption.text11-dark", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"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\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#2a363f\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-weight\":\"200\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wpos_revslider_css` VALUES("140", ".tp-caption.text13-dark", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"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\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#2a363f\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"21px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"0.5px\",\"text-align\":\"right\"},\"hover\":\"\"}");

/* INSERT TABLE DATA: wpos_revslider_layer_animations */
INSERT INTO `wpos_revslider_layer_animations` VALUES("2", "Top - 45px", "{\"movex\":\"0\",\"movey\":\"-45\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("3", "Bottom - 45px", "{\"movex\":\"0\",\"movey\":\"45\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("4", "scale 1.5 - 1.6", "{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"150\",\"scaley\":\"160\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("5", "scalefromX 100px", "{\"movex\":\"100\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"120\",\"scaley\":\"120\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("6", "scalefromX - 50px", "{\"movex\":\"-50\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"120\",\"scaley\":\"120\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("7", "Left - 45px", "{\"movex\":\"-45px\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"easeOutExpo\",\"speed\":\"1800\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("8", "Right - 45px", "{\"movex\":\"45px\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"easeOutExpo\",\"speed\":\"1800\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("9", "Scale-50-60", "{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"50\",\"scaley\":\"60\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("10", "scalefrom-1.1-1.1", "{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"120\",\"scaley\":\"120\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("11", "scalefromX 70px", "{\"movex\":\"70\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"120\",\"scaley\":\"120\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}", NULL);
INSERT INTO `wpos_revslider_layer_animations` VALUES("12", "Left---45px", "{\"movex\":\"-45px\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"inherit\",\"scaley\":\"inherit\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"easeOutExpo\",\"speed\":\"1800\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", "{\"version\":\"custom\"}");
INSERT INTO `wpos_revslider_layer_animations` VALUES("13", "Right---45px", "{\"movex\":\"45\",\"movey\":\"inherit\",\"movez\":\"inherit\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"inherit\",\"scaley\":\"inherit\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"easeOutExpo\",\"speed\":\"1800\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", "{\"version\":\"custom\"}");
INSERT INTO `wpos_revslider_layer_animations` VALUES("14", "Top---45px", "{\"movex\":\"inherit\",\"movey\":\"-45\",\"movez\":\"inherit\",\"rotationx\":\"inherit\",\"rotationy\":\"inherit\",\"rotationz\":\"inherit\",\"scalex\":\"inherit\",\"scaley\":\"inherit\",\"skewx\":\"inherit\",\"skewy\":\"inherit\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"easeOutExpo\",\"speed\":\"1800\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", "{\"version\":\"custom\"}");
INSERT INTO `wpos_revslider_layer_animations` VALUES("15", "Bottom---45px", "{\"movex\":\"inherit\",\"movey\":\"45\",\"movez\":\"inherit\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"inherit\",\"scaley\":\"inherit\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"Power2.easeInOut\",\"speed\":\"300\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", "{\"version\":\"custom\"}");
INSERT INTO `wpos_revslider_layer_animations` VALUES("16", "scale-15---16", "{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"3\",\"scaley\":\"3\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"mask\":\"false\",\"mask_x\":\"0\",\"mask_y\":\"0\",\"easing\":\"Power2.easeInOut\",\"speed\":\"300\",\"split\":\"none\",\"splitdelay\":\"10\",\"type\":\"customin\"}", "{\"version\":\"custom\"}");

/* INSERT TABLE DATA: wpos_revslider_sliders */
INSERT INTO `wpos_revslider_sliders` VALUES("1", "Home page 1", "home-page-1", "{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home page 1\",\"alias\":\"home-page-1\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-page-1\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1354\",\"height\":\"560\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"0\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"#ffffff\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/arkahost.com\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"uranus\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"on\",\"arrows_under_hidden\":\"600\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"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\",\"enable_bullets\":\"on\",\"navigation_bullets_style\":\"preview3\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}", "{\"version\":\"5.0.7\"}", "");
INSERT INTO `wpos_revslider_sliders` VALUES("2", "Home page 2", "home-page-2", "{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home page 2\",\"alias\":\"home-page-2\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-page-2\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1354\",\"height\":\"610\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"0\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"#ffffff\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/arkahost.com\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"uranus\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"on\",\"arrows_under_hidden\":\"600\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"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\",\"enable_bullets\":\"on\",\"navigation_bullets_style\":\"preview3\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}", "{\"version\":\"5.0.7\"}", "");
INSERT INTO `wpos_revslider_sliders` VALUES("3", "Home page 3", "home-page-3", "{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"category_2\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home page 3\",\"alias\":\"home-page-3\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-page-3\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1354\",\"height\":\"560\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"0\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"on\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"#E9E9E9\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"3\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"uranus\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"on\",\"arrows_under_hidden\":\"600\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"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\",\"enable_bullets\":\"on\",\"navigation_bullets_style\":\"preview3\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}", "{\"version\":\"5.0.7\"}", "");
INSERT INTO `wpos_revslider_sliders` VALUES("4", "Home page 4", "home-page-4", "{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home page 4\",\"alias\":\"home-page-4\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-page-4\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1354\",\"height\":\"725\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"0\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"#ffffff\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/arkahost.com\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"uranus\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"on\",\"arrows_under_hidden\":\"600\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"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\",\"enable_bullets\":\"on\",\"navigation_bullets_style\":\"preview3\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}", "{\"version\":\"5.0.7\"}", "");
INSERT INTO `wpos_revslider_sliders` VALUES("5", "Home Corporate 2", "home-corporate-2", "{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home Corporate 2\",\"alias\":\"home-corporate-2\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-corporate-2\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1354\",\"height\":\"600\",\"width_notebook\":\"1024\",\"height_notebook\":\"600\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"500\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"400\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"1\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"on\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"transparent\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"-1\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"uranus\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"on\",\"arrows_under_hidden\":\"600\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"30\",\"leftarrow_offset_vert\":\"0\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"30\",\"rightarrow_offset_vert\":\"0\",\"enable_bullets\":\"on\",\"navigation_bullets_style\":\"preview3\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"true\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"on\",\"bullets_under_hidden\":\"600\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"30\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"50\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"slidercenter\",\"parallax_speed\":\"2000\",\"parallax_level_1\":\"2\",\"parallax_level_2\":\"3\",\"parallax_level_3\":\"4\",\"parallax_level_4\":\"5\",\"parallax_level_5\":\"6\",\"parallax_level_6\":\"7\",\"parallax_level_7\":\"12\",\"parallax_level_8\":\"16\",\"parallax_level_9\":\"10\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"off\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}", "{\"version\":\"5.0.7\"}", "");
INSERT INTO `wpos_revslider_sliders` VALUES("6", "Home One page", "one-page", "{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home One page\",\"alias\":\"one-page\",\"shortcode\":\"[rev_slider alias=\\\\\\\"one-page\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1354\",\"height\":\"520\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"1\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"on\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"transparent\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"-1\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"uranus\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"on\",\"arrows_under_hidden\":\"600\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"30\",\"leftarrow_offset_vert\":\"0\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"30\",\"rightarrow_offset_vert\":\"0\",\"enable_bullets\":\"on\",\"navigation_bullets_style\":\"preview3\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"true\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"on\",\"bullets_under_hidden\":\"600\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"30\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"50\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"slidercenter\",\"parallax_speed\":\"2000\",\"parallax_level_1\":\"2\",\"parallax_level_2\":\"3\",\"parallax_level_3\":\"4\",\"parallax_level_4\":\"5\",\"parallax_level_5\":\"6\",\"parallax_level_6\":\"7\",\"parallax_level_7\":\"12\",\"parallax_level_8\":\"16\",\"parallax_level_9\":\"10\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"off\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}", "{\"version\":\"5.0.7\"}", "");

/* INSERT TABLE DATA: wpos_revslider_slides */
INSERT INTO `wpos_revslider_slides` VALUES("1", "1", "1", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/revslider\\/home-page-1\\/01.jpg\",\"image_id\":\"1373\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"fade\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"0\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\"}", "[{\"text\":\"Build Your Dream Website with\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":160},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong\",\"time\":300,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":0,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"animation\":\"customin-2\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-transparency\":1,\"text-align\":\"left\",\"border-transparency\":1,\"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_right\":\"nothing\"},\"inline\":[],\"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\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"30px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"build your dream web...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":1},{\"text\":\"<em>ARKA<\\/em> Hosting\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":196},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong\",\"time\":600,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":1,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-transparency\":1,\"text-align\":\"left\",\"border-transparency\":1,\"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_right\":\"nothing\"},\"inline\":[],\"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\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"arka hosting\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2},{\"text\":\"Powerful and Cheap Web Hosting and Domains for your Website. <br \\/> Get Web Hosting and Receive a <em>FREE Domain Name!<\\/em>\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":295},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3\",\"time\":800,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto, sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-transparency\":1,\"text-align\":\"left\",\"border-transparency\":1,\"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_right\":\"nothing\"},\"inline\":[],\"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\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"Roboto, sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"powerful and cheap w...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3},{\"text\":\"<div class=\\\"vline\\\">&nbsp;<\\/div>\",\"type\":\"text\",\"left\":{\"desktop\":785},\"top\":{\"desktop\":0},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"vline\",\"time\":300,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":3,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto, sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-transparency\":1,\"text-align\":\"left\",\"border-transparency\":1,\"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_right\":\"nothing\"},\"inline\":[],\"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\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"Roboto, sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"&nbsp;\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":4},{\"text\":\"Up to <br \\/>\\n<strong>40% OFF<\\/strong> <br \\/>\\nHosting &amp; <br \\/>\\nDomains\",\"type\":\"text\",\"left\":{\"desktop\":725},\"top\":{\"desktop\":70},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-14\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbox1\",\"time\":300,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":4,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":359,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"sbox1\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"2\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"20px\",\"16px\",\"57px\",\"20px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\"},\"inline\":[],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"500\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"25px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"up to 40% off host...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":5,\"autolinebreak\":false,\"orig-anim\":\"Top - 45px\",\"orig-anim-handle\":\"customin-2\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"<div class=\\\"cirbox1\\\">\\n<span class=\\\"dncfont\\\">Starts at<\\/span><br \\/>\\n$3.99 <em>\\/mo<\\/em>\\n<\\/div>\",\"type\":\"text\",\"left\":{\"desktop\":740},\"top\":{\"desktop\":210},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"cirbox1text\",\"time\":650,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":5,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\"},\"inline\":[],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"600\"},\"font-size\":{\"desktop\":\"21px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"starts at$3.99 \\/mo...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":6,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"<a href=\'#\' class=\'sbut1\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":390},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut1text\",\"time\":1000,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":6,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.5,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.6,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-transparency\":1,\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":1,\"border-transparency\":1,\"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_right\":\"nothing\"},\"inline\":[],\"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\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"500\"},\"font-size\":{\"desktop\":\"14px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"line-height\":{}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"get started now!\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":7}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("2", "1", "2", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/bg.jpg\",\"image_id\":\"1375\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":0,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\"}", "[{\"style\":\"\",\"text\":\"Image 13\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/02.png\",\"left\":810,\"top\":140,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-5\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":486,\"height\":382,\"serial\":12,\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7900,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"100\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"<strong>AFFORDABLE Prices Hosting<\\/strong>\",\"type\":\"text\",\"left\":115,\"top\":120,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"animation\":\"customin-2\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<strong><em>Unlimited<\\/em> Host<\\/strong>\",\"type\":\"text\",\"left\":115,\"top\":156,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong\",\"time\":600,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> Unlimited Web Space &amp; Data\",\"type\":\"text\",\"left\":115,\"top\":265,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> cPanel Control Panel\",\"type\":\"text\",\"left\":405,\"top\":265,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"8\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> FREE Domain Name\",\"type\":\"text\",\"left\":115,\"top\":300,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":900,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> FREE Site Building Tools\",\"type\":\"text\",\"left\":405,\"top\":300,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":900,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"9\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> 99.9% Uptime Guarantee\",\"type\":\"text\",\"left\":115,\"top\":335,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":1000,\"endtime\":8700,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> FREE Marketing &amp; SEO Tools\",\"type\":\"text\",\"left\":405,\"top\":335,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"10\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> FREE 24\\/7 Tech Support\",\"type\":\"text\",\"left\":115,\"top\":370,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":1100,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<i class=\\\"fa fa-check\\\"><\\/i> 30 Day Money Back Guarantee\",\"type\":\"text\",\"left\":405,\"top\":370,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"h6\",\"time\":1100,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"11\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-style\":\"normal\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"font-size\":\"14px\",\"line-height\":\"23px\"}},{\"text\":\"<div class=\\\"cirbox1 colored\\\">\\n<span class=\\\"dncfont\\\">Starts at<\\/span><br \\/>\\n$3.99 <em>\\/mo<\\/em>\\n<\\/div>\",\"type\":\"text\",\"left\":820,\"top\":110,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"cirbox1text\",\"time\":650,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"6\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"600\",\"font-size\":\"21px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<a href=\'#\' class=\'sbut1\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":115,\"top\":430,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut1text\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"7\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.5,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.6,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}}]", "");
INSERT INTO `wpos_revslider_slides` VALUES("3", "1", "3", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/bg.jpg\",\"image_id\":\"1375\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":0,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\"}", "[{\"style\":\"\",\"text\":\"Image 8\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/03.png\",\"left\":740,\"top\":95,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-5\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":431,\"height\":288,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"100\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"style\":\"\",\"text\":\"Image 8\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/04.png\",\"left\":40,\"top\":140,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-5\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":2000,\"align_hor\":\"right\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":395,\"height\":454,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"100\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Cloud Server great hosting\",\"type\":\"text\",\"left\":115,\"top\":160,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"animation\":\"customin-2\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<em>cloud<\\/em> Hosting\",\"type\":\"text\",\"left\":115,\"top\":196,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong\",\"time\":600,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Powerful and Cheap Web Hosting and Domains for your Website. <br \\/> Get Web Hosting and Receive a <em>FREE Domain Name!<\\/em>\",\"type\":\"text\",\"left\":115,\"top\":295,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto, sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"400\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"Roboto, sans-serif\"}},{\"text\":\"<a href=\'#\' class=\'sbut1\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":115,\"top\":390,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut1text\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.5,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.6,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}}]", "");
INSERT INTO `wpos_revslider_slides` VALUES("5", "1", "4", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/bg.jpg\",\"image_id\":\"1375\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":0,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\"}", "[{\"style\":\"\",\"text\":\"Image 8\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/05.png\",\"left\":120,\"top\":145,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-5\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":2000,\"align_hor\":\"right\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":424,\"height\":338,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"100\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"style\":\"\",\"text\":\"Image 8\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/06.png\",\"left\":70,\"top\":220,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-5\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":2000,\"align_hor\":\"right\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":123,\"height\":264,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"100\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Get your website online now!\",\"type\":\"text\",\"left\":115,\"top\":160,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"animation\":\"customin-2\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<em>Website<\\/em> Builder\",\"type\":\"text\",\"left\":115,\"top\":196,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong\",\"time\":600,\"endtime\":8700,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"800\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Powerful and Cheap Web Hosting and Domains for your Website. <br \\/> Get Web Hosting and Receive a <em>FREE Domain Name!<\\/em>\",\"type\":\"text\",\"left\":115,\"top\":295,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto, sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#2a363f\",\"font-weight\":\"400\",\"font-size\":\"18px\",\"line-height\":\"30px\",\"font-family\":\"Roboto, sans-serif\"}},{\"text\":\"<div class=\\\"cirbox1 colored\\\">\\n<span class=\\\"dncfont\\\">Starts at<\\/span><br \\/>\\n$3.99 <em>\\/mo<\\/em>\\n<\\/div>\",\"type\":\"text\",\"left\":780,\"top\":90,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"cirbox1text\",\"time\":650,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"600\",\"font-size\":\"21px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<a href=\'#\' class=\'sbut1\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":115,\"top\":390,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut1text\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"6\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.5,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.6,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}}]", "");
INSERT INTO `wpos_revslider_slides` VALUES("13", "2", "1", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/11.jpg\",\"image_id\":\"1518\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"slidehorizontal\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":500,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\"}", "[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/12.png\",\"left\":0,\"top\":-12,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-6\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2000,\"align_hor\":\"right\",\"align_vert\":\"bottom\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":910,\"height\":578,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"-50\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Unlimited Web Hosting\",\"type\":\"text\",\"left\":115,\"top\":145,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text11-caps\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"200\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"All you needs\",\"type\":\"text\",\"left\":115,\"top\":180,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-caps\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"200\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"in one package\",\"type\":\"text\",\"left\":115,\"top\":245,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-strong-caps\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"900\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Starting<br \\/>From\",\"type\":\"text\",\"left\":153,\"top\":365,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-7\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text13\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"-45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"21px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<strong>$1.75<em>\\/m<\\/em><\\/strong>\",\"type\":\"text\",\"left\":225,\"top\":360,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text14\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"normal\",\"font-size\":\"45px\",\"line-height\":\"50px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<div class=\\\"cirbox2\\\">Save\\n<strong>40%<\\/strong>\\nNOW!\\n<\\/div>\",\"type\":\"text\",\"left\":400,\"top\":340,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"cirbox2text\",\"time\":850,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"6\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"View Plans\",\"type\":\"text\",\"left\":115,\"top\":465,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-7\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut11text\",\"time\":1200,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"7\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"-45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"10px\",\"25px\",\"10px\",\"25px\"],\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"]},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Sign Up Now!\",\"type\":\"text\",\"left\":270,\"top\":465,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut11text\",\"time\":1200,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"8\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"10px\",\"25px\",\"10px\",\"25px\"],\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"]},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}}]", "");
INSERT INTO `wpos_revslider_slides` VALUES("14", "2", "3", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/11.jpg\",\"image_id\":\"1518\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"slidehorizontal\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":\"500\",\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\"}", "[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/14.png\",\"left\":100,\"top\":130,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-6\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2000,\"align_hor\":\"right\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":623,\"height\":386,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"-50\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Unlimited Web Hosting\",\"type\":\"text\",\"left\":115,\"top\":145,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text11-caps\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"200\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Easy Cloud\",\"type\":\"text\",\"left\":115,\"top\":180,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-caps\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"200\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Computing\",\"type\":\"text\",\"left\":115,\"top\":245,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-strong-caps\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"900\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Starting<br \\/>From\",\"type\":\"text\",\"left\":153,\"top\":365,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-7\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text13\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"static_start\":\"1\",\"x_start\":\"-45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"21px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<strong>$2.99<em>\\/m<\\/em><\\/strong>\",\"type\":\"text\",\"left\":225,\"top\":360,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text14\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"normal\",\"font-size\":\"45px\",\"line-height\":\"50px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<div class=\\\"cirbox2\\\">Save\\n<strong>50%<\\/strong>\\nNOW!\\n<\\/div>\",\"type\":\"text\",\"left\":400,\"top\":340,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"cirbox2text\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"6\",\"endTimeFinal\":8650,\"endSpeedFinal\":300,\"realEndTime\":8950,\"timeLast\":8650,\"endWithSlide\":false,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"View Plans\",\"type\":\"text\",\"left\":115,\"top\":465,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-7\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut11text\",\"time\":1200,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"7\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"static_start\":\"1\",\"x_start\":\"-45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"10px\",\"25px\",\"10px\",\"25px\"],\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"]},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Sign Up Now!\",\"type\":\"text\",\"left\":270,\"top\":465,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut11text\",\"time\":1200,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"8\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"static_start\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"10px\",\"25px\",\"10px\",\"25px\"],\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"]},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}}]", "");
INSERT INTO `wpos_revslider_slides` VALUES("15", "2", "2", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/11.jpg\",\"image_id\":\"1518\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"slidehorizontal\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":\"500\",\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\"}", "[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/13.png\",\"left\":140,\"top\":20,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-6\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2000,\"align_hor\":\"right\",\"align_vert\":\"bottom\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":463,\"height\":539,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\",\"x_start\":\"-50\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1.2,\"scale_x_end\":\"inherit\",\"scale_y_start\":1.2,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Unlimited Hosting\",\"type\":\"text\",\"left\":115,\"top\":145,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text11-caps\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"200\",\"font-size\":\"30px\",\"line-height\":\"35px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Reseller\",\"type\":\"text\",\"left\":115,\"top\":180,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-caps\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"200\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Web Hosting\",\"type\":\"text\",\"left\":115,\"top\":245,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-strong-caps\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"900\",\"font-size\":\"72px\",\"line-height\":\"75px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Starting<br \\/>From\",\"type\":\"text\",\"left\":153,\"top\":365,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-7\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text13\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"static_start\":\"1\",\"x_start\":\"-45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"21px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<strong>$1.25<em>\\/m<\\/em><\\/strong>\",\"type\":\"text\",\"left\":225,\"top\":360,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text14\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"normal\",\"font-size\":\"45px\",\"line-height\":\"50px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"<div class=\\\"cirbox2\\\">Save\\n<strong>70%<\\/strong>\\nNOW!\\n<\\/div>\",\"type\":\"text\",\"left\":400,\"top\":340,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":2500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"cirbox2text\",\"time\":850,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"6\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"View Plans\",\"type\":\"text\",\"left\":115,\"top\":465,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-7\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut11text\",\"time\":1200,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"7\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"1\",\"static_start\":\"1\",\"x_start\":\"-45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"10px\",\"25px\",\"10px\",\"25px\"],\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"]},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}},{\"text\":\"Sign Up Now!\",\"type\":\"text\",\"left\":270,\"top\":465,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut11text\",\"time\":1200,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"8\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"10px\",\"25px\",\"10px\",\"25px\"],\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"]},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-weight\":\"500\",\"font-size\":\"14px\",\"font-family\":\"\\\"Roboto\\\", sans-serif\"}}]", "");
INSERT INTO `wpos_revslider_slides` VALUES("16", "3", "1", "{\"background_type\":\"image\",\"image\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2015\\/08\\/10.jpg\",\"image_id\":\"1526\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"notransition\"],\"0\":\"Limpar\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"media-filter-type\":\"none\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"thumb_for_admin\":\"off\",\"ph-uranus-arrows-height-custom-slide\":\"off\",\"ph-uranus-arrows-height-custom\":\"50\",\"ph-uranus-arrows-font-size-custom-slide\":\"off\",\"ph-uranus-arrows-font-size-custom\":\"40\",\"ph-uranus-arrows-background-color-rgba-slide\":\"off\",\"ph-uranus-arrows-background-color-rgba\":\"rgba(255,255,255,0)\",\"ph-uranus-arrows-width-custom-slide\":\"off\",\"ph-uranus-arrows-width-custom\":\"50\",\"ph-preview3-bullets-bullet-back-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-back-color-color-rgba\":\"#ffffff\",\"ph-preview3-bullets-bullet-border-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-border-color-color-rgba\":\"#000000\",\"ph-preview3-bullets-bullet-border-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-border-size-custom\":\"5\",\"ph-preview3-bullets-bullet-back-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-back-size-custom\":\"3\",\"ph-preview3-bullets-width-custom-slide\":\"off\",\"ph-preview3-bullets-width-custom\":\"70\",\"ph-preview3-bullets-height-custom-slide\":\"off\",\"ph-preview3-bullets-height-custom\":\"70\",\"ph-preview3-bullets-iradius-custom-slide\":\"off\",\"ph-preview3-bullets-iradius-custom\":\"6\",\"ph-preview3-bullets-bradius-custom-slide\":\"off\",\"ph-preview3-bullets-bradius-custom\":\"50%\",\"ph-preview3-bullets-aspeed-custom-slide\":\"off\",\"ph-preview3-bullets-aspeed-custom\":\"0.3\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"0\":\"Limpar\"}", "[{\"text\":\"<strong>Oferecemos liga\\u00e7\\u00f5es r\\u00e1pidas e de extrema fiabilidade\\n<\\/strong>\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":90},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text5-strong-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":1,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"we are offering high...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":800,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":800},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6400}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":6,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"PREMIUM LINUX HOSTING WITH cPanel\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":120},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8200,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"38px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"personal hosting\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":1000},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6200}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":7,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"<strong>A partir de:<\\/strong>\",\"type\":\"text\",\"left\":{\"desktop\":1072},\"top\":{\"desktop\":278},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text5\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":108,\"height\":30,\"serial\":3,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"introductory offer\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":4,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":900,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-8\",\"easing\":\"easeOutExpo\",\"time_relative\":900},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6300}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":8,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"<div class=\\\"squarebox\\\">\\n<strong>1.66\\u20ac<\\/strong>\\/m\\u00eas ou 20\\u20ac\\/ano\\n<\\/div>\",\"type\":\"text\",\"left\":{\"desktop\":1072},\"top\":{\"desktop\":318},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text5\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":199,\"height\":30,\"serial\":4,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"$2.75\\/mo regularly ....\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":5,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":2500,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1000},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":5500}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":9,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Discos RAID10 e SSD\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":270},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":5,\"timeLast\":7600,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"unlimited desk space\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":7,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1000},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6200}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":10,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Criador de Sites Gratuito\\n\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":300},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":6,\"timeLast\":7600,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"free domain registra...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":8,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1100,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1100},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6100}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":11,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"R\\u00e1pido Suporte T\\u00e9cnico\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":330},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":7,\"timeLast\":8650,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"24\\/7\\/365 technical s...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":9,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1200,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1200},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6000}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":12,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Uptime acima de 99%\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":360},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":8,\"timeLast\":8650,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"30 day money back gu...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":10,\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1300,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1300},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":5900}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":13,\"parallax_layer_ddd_zlevel\":\"front\"},{\"style\":\"\",\"text\":\"Image 10\",\"type\":\"image\",\"image_url\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2017\\/04\\/cPanel-logo-1.png\",\"scaleProportional\":true,\"scaleX\":{\"desktop\":555},\"scaleY\":{\"desktop\":200},\"originalWidth\":555,\"originalHeight\":200,\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":0,\"delay\":0,\"split\":\"none\",\"splitdelay\":10,\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":0},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"splitdelay\":10,\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":8700}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":11,\"left\":{\"desktop\":417},\"top\":{\"desktop\":198},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 10\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"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,\"layer_blend_mode\":\"normal\",\"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_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"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\",\"css-position\":\"relative\",\"width\":555,\"height\":200,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":20},\"line-height\":{\"desktop\":22},\"font-weight\":{\"desktop\":400},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[0,0,0,0]},\"padding\":{\"desktop\":[0,0,0,0]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-style\":\"normal\",\"color-transparency\":1,\"text-decoration\":\"none\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":1,\"border-color\":\"transparent\",\"border-transparency\":1,\"border-style\":\"none\",\"border-width\":[0,0,0,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_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":0,\"grayscalefilter\":0,\"overflow\":\"visible\"},\"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\":{\"blurfilter\":0,\"grayscalefilter\":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,0,0,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,\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":9,\"endWithSlide\":true,\"p_uid\":-1,\"zIndex\":14}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("17", "3", "2", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"notransition\"],\"0\":\"Limpar\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"1529\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2015\\/08\\/12.jpg\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"media-filter-type\":\"none\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"thumb_for_admin\":\"off\",\"ph-uranus-arrows-height-custom-slide\":\"off\",\"ph-uranus-arrows-height-custom\":\"50\",\"ph-uranus-arrows-font-size-custom-slide\":\"off\",\"ph-uranus-arrows-font-size-custom\":\"40\",\"ph-uranus-arrows-background-color-rgba-slide\":\"off\",\"ph-uranus-arrows-background-color-rgba\":\"rgba(255,255,255,0)\",\"ph-uranus-arrows-width-custom-slide\":\"off\",\"ph-uranus-arrows-width-custom\":\"50\",\"ph-preview3-bullets-bullet-back-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-back-color-color-rgba\":\"#ffffff\",\"ph-preview3-bullets-bullet-border-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-border-color-color-rgba\":\"#000000\",\"ph-preview3-bullets-bullet-border-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-border-size-custom\":\"5\",\"ph-preview3-bullets-bullet-back-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-back-size-custom\":\"3\",\"ph-preview3-bullets-width-custom-slide\":\"off\",\"ph-preview3-bullets-width-custom\":\"70\",\"ph-preview3-bullets-height-custom-slide\":\"off\",\"ph-preview3-bullets-height-custom\":\"70\",\"ph-preview3-bullets-iradius-custom-slide\":\"off\",\"ph-preview3-bullets-iradius-custom\":\"6\",\"ph-preview3-bullets-bradius-custom-slide\":\"off\",\"ph-preview3-bullets-bradius-custom\":\"50%\",\"ph-preview3-bullets-aspeed-custom-slide\":\"off\",\"ph-preview3-bullets-aspeed-custom\":\"0.3\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"0\":\"Limpar\"}", "[{\"text\":\"Pre\\u00e7os Low Cost\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":120},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text5-strong-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":1,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"affordable prices ho...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":500,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":500},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6700}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":6,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"PREMIUM HOSTING\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":156},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"68px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"unlimited host\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":800,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":800},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6400}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":7,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Emails Ilimitados\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":265},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":3,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"unlimited web space ...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":5,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1000},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6200}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":8,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Tr\\u00e1fego Ilimitado\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":300},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":4,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"free domain name\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":6,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1100,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1100},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6100}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":9,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Bases de Dados Ilimitadas\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":335},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":5,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"99.9% uptime guarant...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":7,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1200,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1200},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6000}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":10,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Subdominios Ilimitados\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":370},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":6,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"free 24\\/7 tech suppo...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":8,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1300,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1300},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":5900}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":11,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"cPanel Control Panel\",\"type\":\"text\",\"left\":{\"desktop\":405},\"top\":{\"desktop\":265},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":7,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"\",\"font-style\":\"normal\",\"color-transparency\":1,\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":1,\"border-transparency\":1,\"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_right\":\"nothing\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"blurfilter\":0,\"grayscalefilter\":0,\"overflow\":\"visible\"},\"inline\":[],\"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,0,0,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\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":0,\"grayscalefilter\":0,\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"cpanel control panel\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":9,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1000},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6200}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"parallax_layer_ddd_zlevel\":\"front\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"min_height\":\"40\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[0,0,0,0]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"zIndex\":12},{\"text\":\"Softaculous\",\"type\":\"text\",\"left\":{\"desktop\":405},\"top\":{\"desktop\":300},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":8,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"free site building t...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":10,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1100,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1100},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6100}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":13,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Webmail\",\"type\":\"text\",\"left\":{\"desktop\":405},\"top\":{\"desktop\":335},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":9,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"free marketing &...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":11,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1200,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1200},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6000}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":14,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"SSL Gratuito\",\"type\":\"text\",\"left\":{\"desktop\":405},\"top\":{\"desktop\":370},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"bgclor-text\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":10,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"padding\":[\"2px\",\"10px\",\"2px\",\"10px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-family\":\"Arial\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"14px\"},\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"30 day money back gu...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":12,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1300,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"time_relative\":1300},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":5900}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"2px\",\"10px\",\"2px\",\"10px\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":15,\"parallax_layer_ddd_zlevel\":\"front\"},{\"style\":\"\",\"text\":\"Image 12\",\"type\":\"image\",\"image_url\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2017\\/04\\/solutions-server.png\",\"scaleProportional\":true,\"scaleX\":{\"desktop\":502},\"scaleY\":{\"desktop\":426},\"originalWidth\":502,\"originalHeight\":426,\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":0,\"delay\":0,\"split\":\"none\",\"splitdelay\":10,\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":0},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"splitdelay\":10,\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":8700}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":13,\"left\":{\"desktop\":848},\"top\":{\"desktop\":120},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 12\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"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,\"layer_blend_mode\":\"normal\",\"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_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"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\",\"css-position\":\"relative\",\"width\":502,\"height\":426,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":20},\"line-height\":{\"desktop\":22},\"font-weight\":{\"desktop\":400},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[0,0,0,0]},\"padding\":{\"desktop\":[0,0,0,0]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-style\":\"normal\",\"color-transparency\":1,\"text-decoration\":\"none\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":1,\"border-color\":\"transparent\",\"border-transparency\":1,\"border-style\":\"none\",\"border-width\":[0,0,0,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_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":0,\"grayscalefilter\":0,\"overflow\":\"visible\"},\"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\":{\"blurfilter\":0,\"grayscalefilter\":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,0,0,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,\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":11,\"endWithSlide\":true,\"p_uid\":-1,\"zIndex\":16}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("19", "3", "4", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"notransition\"],\"0\":\"Limpar\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"1526\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2015\\/08\\/10.jpg\",\"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\":\"full\",\"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\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"media-filter-type\":\"none\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"ph-uranus-arrows-height-custom-slide\":\"off\",\"ph-uranus-arrows-height-custom\":\"50\",\"ph-uranus-arrows-font-size-custom-slide\":\"off\",\"ph-uranus-arrows-font-size-custom\":\"40\",\"ph-uranus-arrows-background-color-rgba-slide\":\"off\",\"ph-uranus-arrows-background-color-rgba\":\"rgba(255,255,255,0)\",\"ph-uranus-arrows-width-custom-slide\":\"off\",\"ph-uranus-arrows-width-custom\":\"50\",\"ph-preview3-bullets-bullet-back-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-back-color-color-rgba\":\"#ffffff\",\"ph-preview3-bullets-bullet-border-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-border-color-color-rgba\":\"#000000\",\"ph-preview3-bullets-bullet-border-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-border-size-custom\":\"5\",\"ph-preview3-bullets-bullet-back-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-back-size-custom\":\"3\",\"ph-preview3-bullets-width-custom-slide\":\"off\",\"ph-preview3-bullets-width-custom\":\"70\",\"ph-preview3-bullets-height-custom-slide\":\"off\",\"ph-preview3-bullets-height-custom\":\"70\",\"ph-preview3-bullets-iradius-custom-slide\":\"off\",\"ph-preview3-bullets-iradius-custom\":\"6\",\"ph-preview3-bullets-bradius-custom-slide\":\"off\",\"ph-preview3-bullets-bradius-custom\":\"50%\",\"ph-preview3-bullets-aspeed-custom-slide\":\"off\",\"ph-preview3-bullets-aspeed-custom\":\"0.3\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\"}", "[{\"text\":\"Fa\\u00e7a j\\u00e1 o seu site ou loja online!!!\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":160},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text5-strong-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-transform\":\"none\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\"},\"inline\":[],\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"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\",\"0\",\"0\",\"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\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":500,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":500},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6700}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"get your website onl...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"min_height\":\"40px\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"display\":\"block\",\"seo-optimized\":false,\"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\",\"css-position\":\"relative\",\"cover_mode\":\"custom\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"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\",\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":7},{\"text\":\"Website Builder\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":196},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":3,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":1,\"scale_x_end\":\"inherit\",\"scale_y_start\":1,\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":100,\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":1,\"vertical-align\":\"top\",\"text-transform\":\"none\",\"border-transparency\":1,\"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_right\":\"nothing\",\"blurfilter\":0,\"grayscalefilter\":0,\"overflow\":\"visible\"},\"inline\":[],\"deformation-hover\":{\"blurfilter\":0,\"grayscalefilter\":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,0,0,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,\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":700,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":700},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6500}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":4,\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"website builder\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"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_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"min_height\":\"40\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"display\":\"block\",\"seo-optimized\":false,\"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\",\"css-position\":\"relative\",\"cover_mode\":\"custom\",\"margin\":{\"desktop\":[0,0,0,0]},\"padding\":{\"desktop\":[0,0,0,0]},\"text-align\":{\"desktop\":\"inherit\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"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\",\"p_uid\":-1,\"zIndex\":8},{\"text\":\"F\\u00e1cil e din\\u00e2mico construtor de sites drag-and-drop\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":295},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3-white\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":4,\"timeLast\":7800,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"Roboto,sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-transform\":\"none\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\"},\"inline\":[],\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"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\",\"0\",\"0\",\"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\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFF\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"Roboto,sans-serif\"},\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":900,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":900},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":7800}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":5,\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"powerful and cheap w...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"min_height\":\"40px\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"display\":\"block\",\"seo-optimized\":false,\"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\",\"css-position\":\"relative\",\"cover_mode\":\"custom\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"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\",\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":9},{\"text\":\"Ponha o seu neg\\u00f3cio online!\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":390},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut10\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":6,\"timeLast\":7700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1.5\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1.6\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"14px\",\"23px\",\"14px\",\"23px\"],\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#fff\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-transparency\":\"1\",\"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\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"500\"},\"font-size\":{\"desktop\":\"16px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"line-height\":{\"desktop\":\"\"}},\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":1200,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"time_relative\":1200},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6000}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":7,\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"get started now!\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"min_height\":\"40px\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"display\":\"block\",\"seo-optimized\":false,\"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\",\"css-position\":\"relative\",\"cover_mode\":\"custom\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"14px\",\"23px\",\"14px\",\"23px\"]},\"text-align\":{\"desktop\":\"inherit\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"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\",\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":11,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"style\":\"\",\"text\":\"Image 8\",\"type\":\"image\",\"image_url\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2017\\/04\\/tumblr_inline_obubanQs6O1ut90hm_1280.jpg\",\"scaleProportional\":true,\"scaleX\":{\"desktop\":\"541px\"},\"scaleY\":{\"desktop\":\"380px\"},\"originalWidth\":620,\"originalHeight\":436,\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":0,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":0},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":8700}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":8,\"left\":{\"desktop\":780},\"top\":{\"desktop\":73},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 8\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"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\",\"layer_blend_mode\":\"normal\",\"html_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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"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\",\"css-position\":\"relative\",\"width\":541,\"height\":380,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"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_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"font-family\":\"\"},\"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\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"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\",\"0\",\"0\",\"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\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":7,\"endWithSlide\":true,\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":12}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("20", "4", "1", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/21.jpg\",\"image_id\":\"1653\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"fade\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"0\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\"}", "[{\"text\":\"Build Your Dream Website with\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":290},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong-white\",\"time\":500,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":0,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"animation\":\"customin-12\",\"static_end\":\"2\",\"x_start\":\"-45px\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\"},\"inline\":[],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"30px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"build your dream web...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":1,\"autolinebreak\":false,\"orig-anim\":\"Left - 45px\",\"orig-anim-handle\":\"customin-7\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Multi Purpose\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":326},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-13\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"time\":600,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":1,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"last\",\"x_start\":\"45px\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"arka hosting\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"autolinebreak\":false,\"orig-anim\":\"Right - 45px\",\"orig-anim-handle\":\"customin-8\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Powerful and Cheap Web Hosting and Domains for your Website. <br \\/> Get Web Hosting and Receive a <em>FREE Domain Name!<\\/em>\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":425},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3-white\",\"time\":800,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"2\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto,sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFF\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"Roboto, sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"powerful and cheap w...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"<a href=\'#\' class=\'sbut1 white\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":520},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"normal\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut10-white\",\"time\":1000,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":3,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1.5\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1.6\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"rgb(255, 255, 255)\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"500\"},\"font-size\":{\"desktop\":\"16px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"get started now!\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":7,\"autolinebreak\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("27", "4", "2", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/22.jpg\",\"image_id\":\"1654\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"fade\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"0\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\"}", "[{\"text\":\"Build Your Dream Website with\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":200},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong-white\",\"time\":500,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":0,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"animation\":\"customin-13\",\"static_end\":\"last\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\"},\"inline\":[],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"30px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"build your dream web...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":1,\"autolinebreak\":false,\"orig-anim\":\"Right - 45px\",\"orig-anim-handle\":\"customin-8\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Corporate + Hosting\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":236},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-12\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"time\":600,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":1,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"last\",\"x_start\":\"-45px\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"arka hosting\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"autolinebreak\":false,\"orig-anim\":\"Left - 45px\",\"orig-anim-handle\":\"customin-7\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Powerful and Cheap Web Hosting and Domains for your Website. <br \\/> Get Web Hosting and Receive a <em>FREE Domain Name!<\\/em>\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":335},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3-white\",\"time\":800,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"last\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto,sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFF\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"Roboto, sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"powerful and cheap w...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"<a href=\'#\' class=\'sbut1 white\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":420},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"normal\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut10-white\",\"time\":1000,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":3,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1.5\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1.6\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"rgb(255, 255, 255)\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"500\"},\"font-size\":{\"desktop\":\"16px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"get started now!\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":7,\"autolinebreak\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("28", "4", "3", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/23.jpg\",\"image_id\":\"1655\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"fade\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"0\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"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\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\"}", "[{\"text\":\"Build Your Dream Website with\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":290},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text1strong-white\",\"time\":500,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":0,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"animation\":\"customin-13\",\"static_end\":\"2\",\"x_start\":\"45\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\"},\"inline\":[],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"30px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"build your dream web...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":1,\"autolinebreak\":false,\"orig-anim\":\"Right - 45px\",\"orig-anim-handle\":\"customin-8\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Multi Purpose\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":326},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-12\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"time\":600,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":1,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"text2 caps\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"last\",\"x_start\":\"-45px\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"arka hosting\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"autolinebreak\":false,\"orig-anim\":\"Left - 45px\",\"orig-anim-handle\":\"customin-7\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Powerful and Cheap Web Hosting and Domains for your Website. <br \\/> Get Web Hosting and Receive a <em>FREE Domain Name!<\\/em>\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":425},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-3\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3-white\",\"time\":800,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":2,\"timeLast\":8600,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_end\":\"2\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"Roboto,sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFF\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"Roboto, sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"powerful and cheap w...\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"<a href=\'#\' class=\'sbut1 white\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":520},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-4\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"normal\"},\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut10-white\",\"time\":1000,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":3,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"0\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1.5\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1.6\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":\"0px\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"rgb(255, 255, 255)\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#2a363f\"},\"font-weight\":{\"desktop\":\"500\"},\"font-size\":{\"desktop\":\"16px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"line-height\":{\"desktop\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"get started now!\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":7,\"autolinebreak\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("29", "5", "1", "{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"slide_parallax_level\":\"-\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"1714\",\"title\":\"Slide\",\"delay\":\"\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"default\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/slide-cor11.jpg\"}", "[{\"text\":\"Tons of Features\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":0},\"top\":{\"desktop\":140},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text1\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-15\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong\",\"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\":500,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-weight\":{\"desktop\":\"900\"},\"color\":{\"desktop\":\"#2a363f\"}},\"x_start\":\"inherit\",\"y_start\":\"45\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"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\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"static_start\":\"1\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false},{\"text\":\"Awesome Theme With\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":0},\"top\":{\"desktop\":90},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text2\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-14\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text11-dark\",\"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\":800,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":320,\"height\":35,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"40px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-weight\":{\"desktop\":\"200\"},\"color\":{\"desktop\":\"#2a363f\"}},\"x_start\":\"inherit\",\"y_start\":\"-45\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Many desktop packages and web page editors now use\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"left\":{\"desktop\":0},\"top\":{\"desktop\":235},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text3\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-15\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"550px\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"normal\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text13-dark\",\"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\":1100,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20px\"},\"line-height\":{\"desktop\":\"21px\"},\"font-weight\":{\"desktop\":\"300\"},\"color\":{\"desktop\":\"#2a363f\"}},\"x_start\":\"inherit\",\"y_start\":\"45\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"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\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"<a href=\'#\' class=\'sbut1\'>Get Started Now!<\\/a>\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":5,\"left\":{\"desktop\":0},\"top\":{\"desktop\":295},\"internal_class\":\"\",\"hover\":false,\"alias\":\"<a href=\'#\' class=\'sbut1\'>Get Started Now!<\\/a>\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"tp-fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"sbut10\",\"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\":1100,\"endspeed\":300,\"endtime\":9300,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"16px\"},\"line-height\":{\"desktop\":\"\"},\"font-weight\":{\"desktop\":\"500\"},\"color\":{\"desktop\":\"#fff\"}},\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"14px\",\"23px\",\"14px\",\"23px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":4,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("30", "5", "2", "{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"slide_parallax_level\":\"-\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"1707\",\"title\":\"Slide\",\"delay\":\"6300\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"default\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/KADOHF81P4.jpg\"}", "[{\"text\":\"Corporate & Hosting\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":0},\"top\":{\"desktop\":140},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text1\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-15\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text12-strong-caps\",\"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\":500,\"endspeed\":300,\"endtime\":\"6300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-weight\":{\"desktop\":\"900\"},\"color\":{\"desktop\":\"#fff\"}},\"x_start\":\"inherit\",\"y_start\":\"45\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"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\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Awesome Theme For\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":0},\"top\":{\"desktop\":90},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text2\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-14\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text11-caps\",\"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\":800,\"endspeed\":300,\"endtime\":\"6300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":320,\"height\":35,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"30px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-weight\":{\"desktop\":\"200\"},\"color\":{\"desktop\":\"#fff\"}},\"x_start\":\"inherit\",\"y_start\":\"-45\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Many desktop packages and web page editors now use ipsum as their default model text <br\\/>\\n\\ntend to necessary making this the first true generator on the Internet.\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":5,\"left\":{\"desktop\":0},\"top\":{\"desktop\":235},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text5\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-15\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3-white\",\"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\":1100,\"endspeed\":300,\"endtime\":\"6300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":141,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#FFF\"}},\"x_start\":\"inherit\",\"y_start\":\"45\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"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\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Roboto,sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-size\":{\"desktop\":\"16px\"},\"line-height\":{\"desktop\":\"23px\"},\"font-weight\":{\"desktop\":\"500\"}},\"inline\":{\"idle\":{\"outline\":\"none\",\"box-shadow\":\"none\",\"box-sizing\":\"border-box\",\"-moz-box-sizing\":\"border-box\",\"-webkit-box-sizing\":\"border-box\",\"text-transform\":\"uppercase\"},\"hover\":{\"background\":\"#fff!important\"}},\"deformation\":{\"padding\":[\"14px\",\"23px\",\"14px\",\"23px\"],\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"background-color\":\"transparent\",\"background-transparency\":\"0.75\",\"color-transparency\":\"1\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"text-align\":\"center\",\"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_right\":\"nothing\",\"parallax\":\"-\"},\"deformation-hover\":{\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"css_cursor\":\"pointer\",\"text-decoration\":\"none\",\"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.easeNone\"},\"text\":\"Get Started\",\"type\":\"button\",\"subtype\":\"roundbutton\",\"specialsettings\":{},\"alias\":\"Button\",\"style\":\"\",\"internal_class\":\"rev-btn\",\"resize-full\":false,\"resizeme\":false,\"hover\":true,\"unique_id\":4,\"left\":{\"desktop\":0},\"top\":{\"desktop\":350},\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"custom\",\"easing\":\"easeOutExpo\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"time\":1400,\"endspeed\":300,\"endtime\":\"6300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":144,\"height\":41,\"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\":\"4\",\"scale_y_start\":\"4\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"2d_rotation\":0,\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"sbut10\",\"attrTitle\":\"\",\"attrRel\":\"\",\"orig-anim\":\"scalefrom-1.1-1.1\",\"orig-anim-handle\":\"customin-10\",\"static_start\":\"1\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("31", "5", "3", "{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"slide_parallax_level\":\"-\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"1708\",\"title\":\"Slide\",\"delay\":\"\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"default\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/XC8XH37TX9.jpg\"}", "[{\"text\":\"Everything You Need\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":115},\"top\":{\"desktop\":115},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text1\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text11-caps\",\"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\":500,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"30px\"},\"line-height\":{\"desktop\":\"35px\"},\"font-weight\":{\"desktop\":\"200\"},\"color\":{\"desktop\":\"#fff\"}},\"x_start\":\"-50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Look & Feel\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":115},\"top\":{\"desktop\":150},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text2\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfr\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"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\":800,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"72px\"},\"line-height\":{\"desktop\":\"75px\"},\"font-weight\":{\"desktop\":\"800\"},\"color\":{\"desktop\":\"#FFFFFF\"}},\"x_start\":\"50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Many web sites still their infancy versions have over years.\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"left\":{\"desktop\":115},\"top\":{\"desktop\":260},\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text3\",\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-15\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text3-white\",\"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\":1100,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":594,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#FFF\"}},\"x_start\":\"inherit\",\"y_start\":\"45\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"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\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Roboto,sans-serif\",\"padding\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#2a363f\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-size\":{\"desktop\":\"16px\"},\"line-height\":{\"desktop\":\"23px\"},\"font-weight\":{\"desktop\":\"500\"}},\"inline\":{\"idle\":{\"outline\":\"none\",\"box-shadow\":\"none\",\"box-sizing\":\"border-box\",\"-moz-box-sizing\":\"border-box\",\"-webkit-box-sizing\":\"border-box\",\"text-transform\":\"uppercase\"},\"hover\":{\"background\":\"#fff!important\"}},\"deformation\":{\"padding\":[\"15px\",\"35px\",\"15px\",\"35px\"],\"font-family\":\"\\\"Roboto\\\",sans-serif\",\"background-color\":\"transparent\",\"background-transparency\":\"0.75\",\"color-transparency\":\"1\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"text-align\":\"left\",\"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_right\":\"nothing\",\"parallax\":\"-\"},\"deformation-hover\":{\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"css_cursor\":\"pointer\",\"text-decoration\":\"none\",\"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.easeNone\"},\"text\":\"Buy Now!\",\"type\":\"button\",\"subtype\":\"roundbutton\",\"specialsettings\":{},\"alias\":\"Button\",\"style\":\"\",\"internal_class\":\"rev-btn\",\"resize-full\":false,\"resizeme\":false,\"hover\":true,\"unique_id\":4,\"left\":{\"desktop\":115},\"top\":{\"desktop\":330},\"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\",\"mask_start\":false,\"mask_end\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-16\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"time\":1400,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":141,\"height\":41,\"cover_mode\":\"custom\",\"x_start\":\"0\",\"y_start\":\"0\",\"z_start\":\"0\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"3\",\"scale_y_start\":\"3\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"2d_rotation\":0,\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":true,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"sbut10\",\"attrTitle\":\"\",\"attrRel\":\"\",\"orig-anim\":\"scale 1.5 - 1.6\",\"orig-anim-handle\":\"customin-4\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("32", "6", "1", "{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"slide_parallax_level\":\"-\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"1772\",\"title\":\"Slide\",\"delay\":\"9310\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"default\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/life-864367_1920.jpg\"}", "[{\"text\":\"Quick Install & Easy To Use\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":0},\"top\":{\"desktop\":115},\"internal_class\":\"\",\"hover\":false,\"alias\":\"Quick Install & Easy...\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-Display\",\"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\":500,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"65px\"},\"line-height\":{\"desktop\":\"70px\"},\"font-weight\":{\"desktop\":\"900\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"-50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"We present you the material design, unlimited color schemes\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":0},\"top\":{\"desktop\":230},\"internal_class\":\"\",\"hover\":false,\"alias\":\"Caption Text2\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfr\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-SmallText\",\"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\":800,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":389,\"height\":60,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"25px\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"600\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-size\":{\"desktop\":\"15px\"},\"line-height\":{\"desktop\":\"15px\"},\"font-weight\":{\"desktop\":\"600\"}},\"inline\":{\"idle\":{\"outline\":\"none\",\"box-shadow\":\"none\",\"box-sizing\":\"border-box\",\"-moz-box-sizing\":\"border-box\",\"-webkit-box-sizing\":\"border-box\"},\"hover\":{}},\"deformation\":{\"padding\":[\"20px\",\"35px\",\"20px\",\"35px\"],\"font-family\":\"Raleway\",\"background-color\":\"#272727\",\"background-transparency\":\"1\",\"color-transparency\":\"1\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"text-align\":\"left\",\"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_right\":\"nothing\",\"parallax\":\"-\"},\"deformation-hover\":{\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"css_cursor\":\"pointer\",\"text-decoration\":\"none\",\"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\":\"300\",\"easing\":\"Power1.easeInOut\"},\"text\":\"Buy Now on Themeforest\",\"type\":\"button\",\"subtype\":\"roundbutton\",\"specialsettings\":{},\"alias\":\"Button\",\"style\":\"Gym-Button\",\"internal_class\":\"rev-btn\",\"resize-full\":false,\"resizeme\":false,\"max_width\":{\"desktop\":\"auto\"},\"max_height\":{\"desktop\":\"auto\"},\"autolinebreak\":false,\"hover\":true,\"unique_id\":3,\"left\":{\"desktop\":0},\"top\":{\"desktop\":350},\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-16\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"time\":1100,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":144,\"height\":41,\"cover_mode\":\"custom\",\"x_start\":\"0\",\"y_start\":\"0\",\"z_start\":\"0\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"3\",\"scale_y_start\":\"3\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"2d_rotation\":0,\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("33", "6", "2", "{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"slide_parallax_level\":\"-\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"1771\",\"title\":\"Slide\",\"delay\":\"9310\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"default\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/entrepreneur-593378_1920.jpg\"}", "[{\"text\":\"Easy Customize\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":115},\"top\":{\"desktop\":115},\"internal_class\":\"\",\"hover\":false,\"alias\":\"Quick Install & Easy...\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sft\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-Display\",\"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\":500,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"65px\"},\"line-height\":{\"desktop\":\"70px\"},\"font-weight\":{\"desktop\":\"900\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"-50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"With strongly UI, UX\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":4,\"left\":{\"desktop\":115},\"top\":{\"desktop\":210},\"internal_class\":\"\",\"hover\":false,\"alias\":\"With strongly UI, UX\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfb\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-SmallText\",\"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\":800,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":149,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"27px\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"600\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"We provide list of sections integrated with theme editor.\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":115},\"top\":{\"desktop\":260},\"internal_class\":\"\",\"hover\":false,\"alias\":\"Caption Text2\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfb\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-SmallText\",\"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\":1100,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":474,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20px\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"300\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-size\":{\"desktop\":\"15px\"},\"line-height\":{\"desktop\":\"15px\"},\"font-weight\":{\"desktop\":\"600\"}},\"inline\":{\"idle\":{\"outline\":\"none\",\"box-shadow\":\"none\",\"box-sizing\":\"border-box\",\"-moz-box-sizing\":\"border-box\",\"-webkit-box-sizing\":\"border-box\"},\"hover\":{}},\"deformation\":{\"padding\":[\"20px\",\"35px\",\"20px\",\"35px\"],\"font-family\":\"Raleway\",\"background-color\":\"#272727\",\"background-transparency\":\"1\",\"color-transparency\":\"1\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"text-align\":\"left\",\"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_right\":\"nothing\",\"parallax\":\"-\"},\"deformation-hover\":{\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"css_cursor\":\"pointer\",\"text-decoration\":\"none\",\"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\":\"300\",\"easing\":\"Power1.easeInOut\"},\"text\":\"Get Started\",\"type\":\"button\",\"subtype\":\"roundbutton\",\"specialsettings\":{},\"alias\":\"Button\",\"style\":\"Gym-Button\",\"internal_class\":\"rev-btn\",\"resize-full\":false,\"resizeme\":false,\"max_width\":{\"desktop\":\"auto\"},\"max_height\":{\"desktop\":\"auto\"},\"autolinebreak\":false,\"hover\":true,\"unique_id\":3,\"left\":{\"desktop\":115},\"top\":{\"desktop\":350},\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-16\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"time\":1400,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":144,\"height\":41,\"cover_mode\":\"custom\",\"x_start\":\"0\",\"y_start\":\"0\",\"z_start\":\"0\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"3\",\"scale_y_start\":\"3\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"2d_rotation\":0,\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("34", "6", "3", "{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"slide_parallax_level\":\"-\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"1778\",\"title\":\"Slide\",\"delay\":\"9310\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"default\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/arkahost.com\\/wp-content\\/uploads\\/2015\\/08\\/PLAJNHNMWK.jpg\"}", "[{\"text\":\"Great way for Creative website\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":0},\"top\":{\"desktop\":115},\"internal_class\":\"\",\"hover\":false,\"alias\":\"Quick Install & Easy...\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sft\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-Display\",\"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\":500,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"65px\"},\"line-height\":{\"desktop\":\"70px\"},\"font-weight\":{\"desktop\":\"900\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"-50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Great responsive for Desktop, Tabless, Mobile,...\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":4,\"left\":{\"desktop\":0},\"top\":{\"desktop\":210},\"internal_class\":\"\",\"hover\":false,\"alias\":\"With strongly UI, UX\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfb\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-SmallText\",\"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\":800,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":149,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"27px\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"600\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"text\":\"Great sections integrated with theme editor. Just insert, modify and use.\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":0},\"top\":{\"desktop\":260},\"internal_class\":\"\",\"hover\":false,\"alias\":\"Caption Text2\",\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"sfb\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"Gym-SmallText\",\"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\":1100,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":474,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20px\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"300\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"50px\",\"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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"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\"],\"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_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":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.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"link\":\"\",\"link_open_in\":\"same\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\"},{\"static_styles\":{\"color\":{\"desktop\":\"#ffffff\"},\"font-size\":{\"desktop\":\"15px\"},\"line-height\":{\"desktop\":\"15px\"},\"font-weight\":{\"desktop\":\"600\"}},\"inline\":{\"idle\":{\"outline\":\"none\",\"box-shadow\":\"none\",\"box-sizing\":\"border-box\",\"-moz-box-sizing\":\"border-box\",\"-webkit-box-sizing\":\"border-box\"},\"hover\":{}},\"deformation\":{\"padding\":[\"20px\",\"35px\",\"20px\",\"35px\"],\"font-family\":\"Raleway\",\"background-color\":\"#272727\",\"background-transparency\":\"1\",\"color-transparency\":\"1\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"text-align\":\"left\",\"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_right\":\"nothing\",\"parallax\":\"-\"},\"deformation-hover\":{\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-opacity\":\"1\",\"border-width\":\"0\",\"border-style\":\"solid\",\"icon-class\":\"\",\"css_cursor\":\"pointer\",\"text-decoration\":\"none\",\"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\":\"300\",\"easing\":\"Power1.easeInOut\"},\"text\":\"Get Started\",\"type\":\"button\",\"subtype\":\"roundbutton\",\"specialsettings\":{},\"alias\":\"Button\",\"style\":\"Gym-Button\",\"internal_class\":\"rev-btn\",\"resize-full\":false,\"resizeme\":false,\"max_width\":{\"desktop\":\"auto\"},\"max_height\":{\"desktop\":\"auto\"},\"autolinebreak\":false,\"hover\":true,\"unique_id\":3,\"left\":{\"desktop\":0},\"top\":{\"desktop\":350},\"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\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"customin-16\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":1800,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"time\":1400,\"endspeed\":300,\"endtime\":\"9300\",\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":144,\"height\":41,\"cover_mode\":\"custom\",\"x_start\":\"0\",\"y_start\":\"0\",\"z_start\":\"0\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"0\",\"y_rotate_start\":\"0\",\"z_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"3\",\"scale_y_start\":\"3\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_y_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"2d_rotation\":0,\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":false,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"static_start\":\"1\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]", "\"\"");
INSERT INTO `wpos_revslider_slides` VALUES("35", "3", "5", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":[\"notransition\"],\"0\":\"Limpar\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"1529\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2015\\/08\\/12.jpg\",\"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\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"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\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"media-filter-type\":\"none\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"thumb_for_admin\":\"off\",\"ph-uranus-arrows-height-custom-slide\":\"off\",\"ph-uranus-arrows-height-custom\":\"50\",\"ph-uranus-arrows-font-size-custom-slide\":\"off\",\"ph-uranus-arrows-font-size-custom\":\"40\",\"ph-uranus-arrows-background-color-rgba-slide\":\"off\",\"ph-uranus-arrows-background-color-rgba\":\"rgba(255,255,255,0)\",\"ph-uranus-arrows-width-custom-slide\":\"off\",\"ph-uranus-arrows-width-custom\":\"50\",\"ph-preview3-bullets-bullet-back-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-back-color-color-rgba\":\"#ffffff\",\"ph-preview3-bullets-bullet-border-color-color-rgba-slide\":\"off\",\"ph-preview3-bullets-bullet-border-color-color-rgba\":\"#000000\",\"ph-preview3-bullets-bullet-border-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-border-size-custom\":\"5\",\"ph-preview3-bullets-bullet-back-size-custom-slide\":\"off\",\"ph-preview3-bullets-bullet-back-size-custom\":\"3\",\"ph-preview3-bullets-width-custom-slide\":\"off\",\"ph-preview3-bullets-width-custom\":\"70\",\"ph-preview3-bullets-height-custom-slide\":\"off\",\"ph-preview3-bullets-height-custom\":\"70\",\"ph-preview3-bullets-iradius-custom-slide\":\"off\",\"ph-preview3-bullets-iradius-custom\":\"6\",\"ph-preview3-bullets-bradius-custom-slide\":\"off\",\"ph-preview3-bullets-bradius-custom\":\"50%\",\"ph-preview3-bullets-aspeed-custom-slide\":\"off\",\"ph-preview3-bullets-aspeed-custom\":\"0.3\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"0\":\"Limpar\"}", "[{\"text\":\"Gr\\u00e1tis em todos os Planos\",\"type\":\"text\",\"left\":{\"desktop\":115},\"top\":{\"desktop\":120},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text5-strong-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":0,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\",\"vertical-align\":\"top\",\"parallax\":\"-\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-weight\":{\"desktop\":\"400\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"30px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"affordable prices ho...\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":500,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":500},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6700}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":5,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"Instala\\u00e7\\u00f5ess autom\\u00e1ticas em 2 Minutos<br>\\ne muito... muito mais!\",\"type\":\"text\",\"left\":{\"desktop\":44},\"top\":{\"desktop\":369},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"whitespace\":{\"desktop\":\"nowrap\"},\"static_start\":\"1\",\"static_end\":\"2\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"text2strong-white-caps\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":598,\"height\":150,\"serial\":1,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"2d_rotation\":0,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"0\",\"x_end\":\"inherit\",\"y_start\":\"-45\",\"y_end\":\"inherit\",\"z_start\":\"0\",\"z_end\":\"inherit\",\"x_rotate_start\":\"0\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"0\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"0\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"1\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"1\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"0\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"0\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"font-family\":\"\\\"Roboto\\\", sans-serif\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#2a363f\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"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_right\":\"nothing\",\"text-transform\":\"none\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"display\":\"block\"},\"inline\":[],\"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\",\"0\",\"0\",\"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.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"zindex\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#FFFFFF\"},\"font-weight\":{\"desktop\":\"800\"},\"font-size\":{\"desktop\":\"18px\"},\"line-height\":{\"desktop\":\"55px\"},\"font-family\":\"\\\"Roboto\\\", sans-serif\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"unlimited host\",\"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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"seo-optimized\":false,\"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\",\"cover_mode\":\"custom\",\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":800,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":1800,\"animation\":\"customin-2\",\"easing\":\"easeOutExpo\",\"time_relative\":800},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"auto\",\"easing\":\"nothing\",\"time_relative\":6400}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"min_height\":\"40px\",\"display\":\"block\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"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\"},\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":6,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"style\":\"\",\"text\":\"Image 12\",\"type\":\"image\",\"image_url\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2017\\/04\\/softaculous.png\",\"scaleProportional\":true,\"scaleX\":{\"desktop\":434},\"scaleY\":{\"desktop\":169},\"originalWidth\":434,\"originalHeight\":169,\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":0,\"delay\":0,\"split\":\"none\",\"splitdelay\":10,\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":0},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"splitdelay\":10,\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":8700}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":15,\"left\":{\"desktop\":33},\"top\":{\"desktop\":179},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 12\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"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,\"layer_blend_mode\":\"normal\",\"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_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"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\",\"css-position\":\"relative\",\"width\":434,\"height\":169,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":20},\"line-height\":{\"desktop\":22},\"font-weight\":{\"desktop\":400},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[0,0,0,0]},\"padding\":{\"desktop\":[0,0,0,0]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-style\":\"normal\",\"color-transparency\":1,\"text-decoration\":\"none\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":1,\"border-color\":\"transparent\",\"border-transparency\":1,\"border-style\":\"none\",\"border-width\":[0,0,0,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_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":0,\"grayscalefilter\":0,\"overflow\":\"visible\"},\"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\":{\"blurfilter\":0,\"grayscalefilter\":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,0,0,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,\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":true,\"p_uid\":-1,\"zIndex\":7,\"addedToStage\":true},{\"style\":\"\",\"text\":\"Image 13\",\"type\":\"image\",\"image_url\":\"https:\\/\\/mlksolutions.org\\/wp-content\\/uploads\\/2017\\/04\\/softaculous-1.png\",\"scaleProportional\":true,\"scaleX\":{\"desktop\":\"639px\"},\"scaleY\":{\"desktop\":\"455px\"},\"originalWidth\":562,\"originalHeight\":400,\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":0,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":0},\"frame_999\":{\"time\":9000,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":8700}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":16,\"left\":{\"desktop\":645},\"top\":{\"desktop\":42},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 13\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"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\",\"layer_blend_mode\":\"normal\",\"html_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_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"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\",\"css-position\":\"relative\",\"width\":639,\"height\":455,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_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\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"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_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"font-family\":\"\",\"vertical-align\":\"top\",\"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\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"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\",\"0\",\"0\",\"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\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":true,\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"displaymode\":true,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"zIndex\":8,\"addedToStage\":true,\"parallax_layer_ddd_zlevel\":\"front\"}]", "\"\"");

/* INSERT TABLE DATA: wpos_term_relationships */
INSERT INTO `wpos_term_relationships` VALUES("1", "1", "0");
INSERT INTO `wpos_term_relationships` VALUES("1778", "45", "0");
INSERT INTO `wpos_term_relationships` VALUES("9871", "29", "0");
INSERT INTO `wpos_term_relationships` VALUES("9872", "29", "0");
INSERT INTO `wpos_term_relationships` VALUES("1782", "45", "0");
INSERT INTO `wpos_term_relationships` VALUES("9876", "29", "0");
INSERT INTO `wpos_term_relationships` VALUES("9874", "29", "0");
INSERT INTO `wpos_term_relationships` VALUES("67", "38", "0");
INSERT INTO `wpos_term_relationships` VALUES("73", "38", "0");
INSERT INTO `wpos_term_relationships` VALUES("74", "38", "0");
INSERT INTO `wpos_term_relationships` VALUES("76", "38", "0");
INSERT INTO `wpos_term_relationships` VALUES("77", "38", "0");
INSERT INTO `wpos_term_relationships` VALUES("78", "38", "0");
INSERT INTO `wpos_term_relationships` VALUES("1458", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1465", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1466", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1467", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1468", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1470", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1471", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1472", "30", "0");
INSERT INTO `wpos_term_relationships` VALUES("1531", "39", "0");
INSERT INTO `wpos_term_relationships` VALUES("1532", "39", "0");
INSERT INTO `wpos_term_relationships` VALUES("25", "35", "0");
INSERT INTO `wpos_term_relationships` VALUES("25", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("30", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("30", "41", "0");
INSERT INTO `wpos_term_relationships` VALUES("31", "31", "0");
INSERT INTO `wpos_term_relationships` VALUES("31", "36", "0");
INSERT INTO `wpos_term_relationships` VALUES("32", "35", "0");
INSERT INTO `wpos_term_relationships` VALUES("32", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("32", "41", "0");
INSERT INTO `wpos_term_relationships` VALUES("406", "31", "0");
INSERT INTO `wpos_term_relationships` VALUES("406", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("411", "36", "0");
INSERT INTO `wpos_term_relationships` VALUES("411", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("411", "41", "0");
INSERT INTO `wpos_term_relationships` VALUES("481", "35", "0");
INSERT INTO `wpos_term_relationships` VALUES("481", "36", "0");
INSERT INTO `wpos_term_relationships` VALUES("481", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("577", "31", "0");
INSERT INTO `wpos_term_relationships` VALUES("577", "37", "0");
INSERT INTO `wpos_term_relationships` VALUES("577", "41", "0");
INSERT INTO `wpos_term_relationships` VALUES("1537", "39", "0");
INSERT INTO `wpos_term_relationships` VALUES("1538", "39", "0");
INSERT INTO `wpos_term_relationships` VALUES("9882", "52", "0");
INSERT INTO `wpos_term_relationships` VALUES("9870", "29", "0");
INSERT INTO `wpos_term_relationships` VALUES("9875", "29", "0");
INSERT INTO `wpos_term_relationships` VALUES("9887", "45", "0");
INSERT INTO `wpos_term_relationships` VALUES("2169", "45", "0");
INSERT INTO `wpos_term_relationships` VALUES("128", "32", "0");
INSERT INTO `wpos_term_relationships` VALUES("129", "32", "0");
INSERT INTO `wpos_term_relationships` VALUES("130", "32", "0");
INSERT INTO `wpos_term_relationships` VALUES("1628", "33", "0");
INSERT INTO `wpos_term_relationships` VALUES("1629", "33", "0");
INSERT INTO `wpos_term_relationships` VALUES("1630", "33", "0");
INSERT INTO `wpos_term_relationships` VALUES("1631", "33", "0");
INSERT INTO `wpos_term_relationships` VALUES("1633", "34", "0");
INSERT INTO `wpos_term_relationships` VALUES("1634", "34", "0");
INSERT INTO `wpos_term_relationships` VALUES("1635", "34", "0");
INSERT INTO `wpos_term_relationships` VALUES("1636", "34", "0");

/* INSERT TABLE DATA: wpos_term_taxonomy */
INSERT INTO `wpos_term_taxonomy` VALUES("15", "1", "category", "", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("49", "40", "category", "Todos os assuntos referentes a segurança.", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("48", "39", "category", "Todos os assuntos referentes a DNS", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("47", "38", "category", "Todos os temas referentes a e-mails", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("46", "37", "category", "Assuntos relativos a dominios.", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("29", "20", "testimonials-category", "", "0", "6");
INSERT INTO `wpos_term_taxonomy` VALUES("30", "21", "our-team-category", "", "0", "8");
INSERT INTO `wpos_term_taxonomy` VALUES("31", "22", "our-works-category", "", "0", "3");
INSERT INTO `wpos_term_taxonomy` VALUES("32", "23", "pricing-tables-category", "", "0", "3");
INSERT INTO `wpos_term_taxonomy` VALUES("33", "24", "pricing-tables-category", "", "0", "4");
INSERT INTO `wpos_term_taxonomy` VALUES("34", "25", "pricing-tables-category", "", "0", "4");
INSERT INTO `wpos_term_taxonomy` VALUES("35", "26", "our-works-category", "", "0", "3");
INSERT INTO `wpos_term_taxonomy` VALUES("36", "27", "our-works-category", "", "0", "3");
INSERT INTO `wpos_term_taxonomy` VALUES("37", "28", "our-works-category", "", "0", "7");
INSERT INTO `wpos_term_taxonomy` VALUES("38", "29", "our-team-category", "", "0", "6");
INSERT INTO `wpos_term_taxonomy` VALUES("39", "30", "our-team-category", "", "0", "4");
INSERT INTO `wpos_term_taxonomy` VALUES("40", "31", "testimonials-category", "", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("41", "32", "our-works-category", "", "0", "4");
INSERT INTO `wpos_term_taxonomy` VALUES("45", "36", "nav_menu", "", "0", "4");
INSERT INTO `wpos_term_taxonomy` VALUES("50", "41", "category", "Todos os assunto referentes ao serviço de hosting MLK Solutions", "0", "0");
INSERT INTO `wpos_term_taxonomy` VALUES("52", "43", "category", "Todos os temas referentes a Wordpress", "0", "1");

/* INSERT TABLE DATA: wpos_terms */
INSERT INTO `wpos_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wpos_terms` VALUES("41", "Serviço", "servico", "0");
INSERT INTO `wpos_terms` VALUES("40", "Security", "security", "0");
INSERT INTO `wpos_terms` VALUES("39", "DNS", "dns", "0");
INSERT INTO `wpos_terms` VALUES("37", "Domínios", "dominios", "0");
INSERT INTO `wpos_terms` VALUES("38", "E-Mails", "emails", "0");
INSERT INTO `wpos_terms` VALUES("43", "Wordpress", "wordpress", "0");
INSERT INTO `wpos_terms` VALUES("20", "Clients", "clients", "0");
INSERT INTO `wpos_terms` VALUES("21", "Company", "company", "0");
INSERT INTO `wpos_terms` VALUES("22", "Graphic", "graphic", "0");
INSERT INTO `wpos_terms` VALUES("23", "Hosting Group 1", "hosting-group-1", "0");
INSERT INTO `wpos_terms` VALUES("24", "Hosting Group 2", "hosting-group-2", "0");
INSERT INTO `wpos_terms` VALUES("25", "Hosting Group 3", "hosting-group-3", "0");
INSERT INTO `wpos_terms` VALUES("26", "Identity", "identity", "0");
INSERT INTO `wpos_terms` VALUES("27", "Logo", "logo", "0");
INSERT INTO `wpos_terms` VALUES("28", "Our Project", "our-project", "0");
INSERT INTO `wpos_terms` VALUES("29", "Our Team", "our-team", "0");
INSERT INTO `wpos_terms` VALUES("30", "Our Team 2", "our-team-2", "0");
INSERT INTO `wpos_terms` VALUES("31", "Partners", "partners", "0");
INSERT INTO `wpos_terms` VALUES("32", "Web Design", "web-design", "0");
INSERT INTO `wpos_terms` VALUES("36", "Menu Onepage", "menu-onepage", "0");

/* INSERT TABLE DATA: wpos_usermeta */
INSERT INTO `wpos_usermeta` VALUES("1", "1", "nickname", "apccraimundo");
INSERT INTO `wpos_usermeta` VALUES("2", "1", "first_name", "");
INSERT INTO `wpos_usermeta` VALUES("3", "1", "last_name", "");
INSERT INTO `wpos_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wpos_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wpos_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wpos_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wpos_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wpos_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `wpos_usermeta` VALUES("10", "1", "locale", "");
INSERT INTO `wpos_usermeta` VALUES("11", "1", "wpos_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wpos_usermeta` VALUES("12", "1", "wpos_user_level", "10");
INSERT INTO `wpos_usermeta` VALUES("13", "1", "display_name", "apccraimundo");
INSERT INTO `wpos_usermeta` VALUES("14", "1", "dismissed_wp_pointers", "vc_pointers_backend_editor,vc_pointers_frontend_editor");
INSERT INTO `wpos_usermeta` VALUES("15", "1", "default_password_nag", "");
INSERT INTO `wpos_usermeta` VALUES("16", "1", "show_welcome_panel", "1");
INSERT INTO `wpos_usermeta` VALUES("17", "1", "session_tokens", "a:1:{s:64:\"b1bcfdc42ef7f966047bdddbbc7dc9b92b641c3fdd2e5ab46c1d9fb7a4daa6e6\";a:4:{s:10:\"expiration\";i:1495639931;s:2:\"ip\";s:11:\"95.93.57.67\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1495467131;}}");
INSERT INTO `wpos_usermeta` VALUES("18", "1", "wpos_user-settings", "edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=406px&edit_element_vcUIPanelTop=41px&libraryContent=browse&editor=tinymce");
INSERT INTO `wpos_usermeta` VALUES("19", "1", "wpos_user-settings-time", "1491386207");
INSERT INTO `wpos_usermeta` VALUES("20", "1", "wpos_dashboard_quick_press_last_post_id", "9905");
INSERT INTO `wpos_usermeta` VALUES("24", "1", "closedpostboxes_testimonials", "a:1:{i:0;s:13:\"pageparentdiv\";}");
INSERT INTO `wpos_usermeta` VALUES("21", "1", "nav_menu_recently_edited", "36");
INSERT INTO `wpos_usermeta` VALUES("22", "1", "managenav-menuscolumnshidden", "a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}");
INSERT INTO `wpos_usermeta` VALUES("23", "1", "metaboxhidden_nav-menus", "a:15:{i:0;s:22:\"add-post-type-our-team\";i:1;s:23:\"add-post-type-our-works\";i:2;s:26:\"add-post-type-testimonials\";i:3;s:17:\"add-post-type-faq\";i:4;s:28:\"add-post-type-pricing-tables\";i:5;s:24:\"add-post-type-subcribers\";i:6;s:23:\"add-post-type-mega_menu\";i:7;s:12:\"add-post_tag\";i:8;s:15:\"add-post_format\";i:9;s:21:\"add-our-team-category\";i:10;s:22:\"add-our-works-category\";i:11;s:25:\"add-testimonials-category\";i:12;s:16:\"add-faq-category\";i:13;s:27:\"add-pricing-tables-category\";i:14;s:23:\"add-subcribers-category\";}");
INSERT INTO `wpos_usermeta` VALUES("25", "1", "metaboxhidden_testimonials", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wpos_usermeta` VALUES("28", "1", "wpos_yoast_notifications", "a:2:{i:0;a:2:{s:7:\"message\";s:132:\"Since you are new to Yoast SEO you can configure the <a href=\"https://mlksolutions.org/wp-admin/?page=wpseo_configurator\">plugin</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:31:\"wpseo-dismiss-onboarding-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:167:\"Don\'t miss your crawl errors: <a href=\"https://mlksolutions.org/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}");
INSERT INTO `wpos_usermeta` VALUES("26", "1", "meta-box-order_testimonials", "a:3:{s:4:\"side\";s:66:\"submitdiv,tagsdiv-testimonials-category,pageparentdiv,postimagediv\";s:6:\"normal\";s:45:\"KingFeildsTesti,slugdiv,mymetabox_revslider_0\";s:8:\"advanced\";s:0:\"\";}");
INSERT INTO `wpos_usermeta` VALUES("27", "1", "screen_layout_testimonials", "2");
INSERT INTO `wpos_usermeta` VALUES("30", "1", "wpseo-dismiss-onboarding-notice", "seen");
INSERT INTO `wpos_usermeta` VALUES("29", "1", "wpseo-remove-upsell-notice", "1");

/* INSERT TABLE DATA: wpos_users */
INSERT INTO `wpos_users` VALUES("1", "apccraimundo", "$P$Be9/dHYieZHyKdDft0eSDptvMXyWck/", "apccraimundo", "ar@mlksolutions.org", "", "2017-03-31 10:51:04", "", "0", "apccraimundo");

/* INSERT TABLE DATA: wpos_whmpress_announcements */
INSERT INTO `wpos_whmpress_announcements` VALUES("1", "2017-03-31 16:13:24", "Thank you for choosing WHMCS!", "<p>Welcome to <a title=\"WHMCS\" href=\"http://whmcs.com\" target=\"_blank\">WHMCS</a>! You have made a great choice and we want to help you get up and running as quickly as possible.</p>\n<p>This is a sample announcement. Announcements are a great way to keep your customers informed about news and special offers. You can edit or delete this announcement by logging into the admin area and navigating to <em>Support &gt; Announcements</em>.</p>\n<p>If at any point you get stuck, our support team is available 24x7 to assist you. Simply visit <a title=\"www.whmcs.com/support\" href=\"http://www.whmcs.com/support\" target=\"_blank\">www.whmcs.com/support</a> to request assistance.</p>", "1", "0", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");

/* INSERT TABLE DATA: wpos_whmpress_clientgroups */
INSERT INTO `wpos_whmpress_clientgroups` VALUES("1", "PREMIUM", "#EAFF03", "0.00", "", "");
INSERT INTO `wpos_whmpress_clientgroups` VALUES("2", "LowCost", "#00B7FF", "0.00", "", "");

/* INSERT TABLE DATA: wpos_whmpress_configuration */
INSERT INTO `wpos_whmpress_configuration` VALUES("Language", "portuguese-pt", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CompanyName", "MLK Solutions", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("Email", "support@mlk.pt", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("Domain", "https://support.mlksolutions.org/", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("LogoURL", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SystemURL", "https://support.mlksolutions.org/", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoSuspension", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoSuspensionDays", "15", "0000-00-00 00:00:00", "2017-04-01 00:45:39");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBefore", "15", "0000-00-00 00:00:00", "2017-04-01 00:45:39");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliateEnabled", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliateEarningPercent", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliateBonusDeposit", "0.00", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliatePayout", "25.00", "0000-00-00 00:00:00", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliateLinks", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ActivityLimit", "10000", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DateFormat", "DD/MM/YYYY", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("PreSalesQuestions", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("Template", "six", "0000-00-00 00:00:00", "2017-04-01 15:52:56");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowRegister", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowTransfer", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowOwnDomain", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnableTOSAccept", "on", "0000-00-00 00:00:00", "2017-04-01 00:37:18");
INSERT INTO `wpos_whmpress_configuration` VALUES("TermsOfService", "https://mlksolutions.org/tos/", "0000-00-00 00:00:00", "2017-04-01 00:37:19");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowLanguageChange", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CutUtf8Mb4", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowCustomerChangeInvoiceGateway", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultNameserver1", "ns1.yourdomain.com", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultNameserver2", "ns2.yourdomain.com", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendInvoiceReminderDays", "7", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendReminder", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("NumRecordstoDisplay", "50", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("BCCMessages", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("MailType", "smtp", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("SMTPHost", "mail.mlk.pt", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("SMTPUsername", "support@mlk.pt", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("SMTPPassword", "9eYUtQAOoHTAJgakE/Bjhzm3sF4I7EafnP7DqYyU", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("SMTPPort", "25", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ShowCancellationButton", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("UpdateStatsAuto", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("InvoicePayTo", "Address goes here...", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendAffiliateReportMonthly", "", "0000-00-00 00:00:00", "2017-04-01 00:43:52");
INSERT INTO `wpos_whmpress_configuration` VALUES("InvalidLoginBanLength", "15", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("Signature", "", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainOnlyOrderEnabled", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TicketBannedAddresses", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendEmailNotificationonUserDetailsChange", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TicketAllowedFileTypes", ".jpg,.gif,.jpeg,.png", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CloseInactiveTickets", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("InvoiceLateFeeAmount", "0", "0000-00-00 00:00:00", "2017-04-01 00:41:03");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoTermination", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoTerminationDays", "35", "0000-00-00 00:00:00", "2017-04-01 00:45:39");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminFirstName", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminLastName", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminCompanyName", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminAddress1", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminAddress2", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminCity", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminStateProvince", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminCountry", "US", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminPostalCode", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminPhone", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminFax", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminEmailAddress", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RegistrarAdminUseClientDetails", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("Charset", "utf-8", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoUnsuspend", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RunScriptonCheckOut", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("License", "OWEwYjRlMDRiMjdkNzMwNTA0MTY4YzE5YTk4ZGU0MzExOGZiNjFjYmlVR2RoUjJabEpuSXNJU1p6Rlda\nTUJTZXNoR2R1OVdUaW9qSWwxV1l1UjNZMVIyYnlCbklzSXljbE5XYTJKWFpUZG1icFIzY3Zoa0k2SVNa\ndEZtYmtWbWNsUjNjcGRXWnlKQ0xsTkhiaFptT2l3V1kyOVdibEoxWnVsR1p1Rm1jQ0pDTGR0bE9pTW5i\ndlJHWmhKQ0xkdGxPaU1uYnZsR2R3OTJacFptYnZObUlzSUNNd29UTncwQ013b0RNd29ETXdRVk13MFNO\ndzB5TnhBak1pb2pJbFJYWWtsSGRwUkdiaFpYWjBGR1p3Vm5Jc1UyY3NGbVo2SXljbFJYWWtCWGR6Vm1j\ncFZYY2xKbklzSXlNMEFqWTJJaloyUURPd1lXTmtWak00Z0RNbTFDWmxOWFlseGtJNklTZWx0bUlzSVNa\nMmxHZGpGa0k2SXljMVJYWTBObklzSXlaeTltTHo1MmJwUlhkczkyY3J4V2J1UW5jdkJIYzFOM0xjUlhk\nczkyY3J4V2J2d1ZadDlHYXZ3bEk2SXljeWxHWmtsR2JoWm5JczAxVzZJeWNreFdacFpXYnZSM2MxTm1J\nc0lpTTQ0aU15NGlOeklqTHpjVE1pb2pJekJYYWtsR2JoWm5Jc0l5Wnk5bUx6NTJicFJYZHM5MmNyeFdi\ndVFuY3ZCSGMxTm5MM2QzZHNjbWN2NXljdTlXYTBWSGJ2TjNhczFtTDBKM2J3QlhkekppT2lNbmJwRldi\ndlJHWnB4V1kySnllYTE4ZGYzNGVmMTliMzRhNGI2YWVhYmI4ZTY0Mjg2YmM5NzIyMWY5NT09UWZpRXpN\nekF6TnhBak1pb2pJbFJYWWt0MllsaDJZaXdpSWlvakkwVm1jalYyVWxObmJsTldhTUpDTGlVR1poSjNa\nd1YzTGNSM1lsSlhha1ZtY3Z3VmJ2Tm1Mek5XYm9kbkwzZDNkdncxTGNwemN3Ukhkb0ppT2l3bWNWVkda\naEozWndWRmRwMVdhTVJuYmxsR2JESkNMaVVtY3YxV0x1SlhZbHgyTGNWR1poSjNad1YzTGNSM1lsSlhh\na1ZtY3Z3VmJ2Tm1Mek5XYm9kbkwzZDNkdncxTGNwemN3Ukhkb0ppT2l3bWNWVm1jdjFrYnlGV1pNUlhh\ndGxHVDA1V1pweDJRaXdTWjFKSGQ2SUNabHhtWWg1V1JsUldZeWRHY1Y5R2QxRkVkcDFXYU1SbmJsbEdi\nREpDTHdVak02SUNkcDFXYU1SbmJsbEdiREpDTGxOSGJoWm1PaVFXWnNKV1l1VjBjMGxXYnB4RWR1Vldh\nc05rSXNJaUk2SWljbHhHYmxOWFp5SkNMbFZuYzBwakl6Tlhaak5XWTBKM2J3QlhkekpDTGlFakxqSlhM\ndzRTTXVjakk2SWlidmwyY3lWbWRsTlhZbHhXWnlWbWN3UjNjbFJYWXNKQ0xpRWpMbE5YWWx4V1p5MWlN\ndUVqTDNJaU9pNDJicE5uY2xaM1lweG1ZMUJIZHpWR2RoeG1Jc0lpTncwQ053MHlOeEFqTWlvaklsUlhZ\na1ZXZGtSSGVsNW1Jc0lTZXNoR2R1OVdUaW9qSWx4Mlk1TjJadWxHYnNsbVlpd2lJd01UTHpBVEwzRURN\neUlpTzgyMmZiNjVkZDcxNTI2ZWViZmQ1MWM5N2RhNWFiMDBiZWUzMzg2NzQ=", "0000-00-00 00:00:00", "2017-03-31 21:19:48");
INSERT INTO `wpos_whmpress_configuration` VALUES("OrderFormTemplate", "premium_comparison", "0000-00-00 00:00:00", "2017-04-01 00:37:18");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowDomainsTwice", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddLateFeeDays", "0", "0000-00-00 00:00:00", "2017-04-01 00:45:39");
INSERT INTO `wpos_whmpress_configuration` VALUES("TaxEnabled", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultCountry", "PT", "0000-00-00 00:00:00", "2017-04-01 00:31:23");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoRedirectoInvoice", "gateway", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnablePDFInvoices", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CaptchaSetting", "offloggedin", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SupportTicketOrder", "ASC", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendFirstOverdueInvoiceReminder", "1", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TaxType", "Exclusive", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainDNSManagement", "5.00", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainEmailForwarding", "5.00", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("InvoiceIncrement", "1", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ContinuousInvoiceGeneration", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoCancellationRequests", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SystemEmailsFromName", "MLK Solutions", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SystemEmailsFromEmail", "support@mlk.pt", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowClientRegister", "", "0000-00-00 00:00:00", "2017-04-01 15:54:05");
INSERT INTO `wpos_whmpress_configuration` VALUES("BulkCheckTLDs", ".com,.net", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreditOnDowngrade", "", "0000-00-00 00:00:00", "2017-04-01 00:43:52");
INSERT INTO `wpos_whmpress_configuration` VALUES("AcceptedCardTypes", "Visa,MasterCard,Discover,American Express,JCB,EnRoute,Diners Club", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TaxDomains", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TaxLateFee", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ProductMonthlyPricingBreakdown", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("LateFeeType", "Percentage", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendSecondOverdueInvoiceReminder", "3", "0000-00-00 00:00:00", "2017-04-01 00:45:39");
INSERT INTO `wpos_whmpress_configuration` VALUES("SendThirdOverdueInvoiceReminder", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainIDProtection", "5.00", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainRenewalNotices", "30,7,-3,0,0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SequentialInvoiceNumbering", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SequentialInvoiceNumberFormat", "{NUMBER}", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SequentialInvoiceNumberValue", "1", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultNameserver3", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultNameserver4", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliatesDelayCommission", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SupportModule", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddFundsEnabled", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddFundsMinimum", "10.00", "0000-00-00 00:00:00", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddFundsMaximum", "100.00", "0000-00-00 00:00:00", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddFundsMaximumBalance", "300.00", "0000-00-00 00:00:00", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCProcessDaysBefore", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCAttemptOnlyOnce", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCDaySendExpiryNotices", "25", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("BulkDomainSearchEnabled", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoRenewDomainsonPayment", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainAutoRenewDefault", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCRetryEveryWeekFor", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SupportTicketKBSuggestions", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DailyEmailBackup", "ar@mlk.pt", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("FTPBackupHostname", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("FTPBackupUsername", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("FTPBackupPassword", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("FTPBackupDestination", "/", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TaxL2Compound", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SEOFriendlyUrls", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ShowCCIssueStart", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TicketRatingEnabled", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("NetworkIssuesRequireLogin", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ShowNotesFieldonCheckout", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RequireLoginforClientTickets", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("EmailCSS", ".ExternalClass,.ExternalClass div,.ExternalClass font,.ExternalClass p,.ExternalClass span,.ExternalClass td,h1,img{line-height:100%}h1,h2{display:block;font-family:Helvetica;font-style:normal;font-weight:700}#outlook a{padding:0}.ExternalClass,.ReadMsgBody{width:100%}a,blockquote,body,li,p,table,td{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}table,td{mso-table-lspace:0;mso-table-rspace:0}img{-ms-interpolation-mode:bicubic;border:0;height:auto;outline:0;text-decoration:none}table{border-collapse:collapse!important}#bodyCell,#bodyTable,body{height:100%!important;margin:0;padding:0;width:100%!important}#bodyCell{padding:20px;}#templateContainer{width:600px;border:1px solid #ddd;background-color:#fff}#bodyTable,body{background-color:#FAFAFA}h1{color:#202020!important;font-size:26px;letter-spacing:normal;text-align:left;margin:0 0 10px}h2{color:#404040!important;font-size:20px;line-height:100%;letter-spacing:normal;text-align:left;margin:0 0 10px}h3,h4{display:block;font-style:italic;font-weight:400;letter-spacing:normal;text-align:left;margin:0 0 10px;font-family:Helvetica;line-height:100%}h3{color:#606060!important;font-size:16px}h4{color:grey!important;font-size:14px}.headerContent{background-color:#f8f8f8;border-bottom:1px solid #ddd;color:#505050;font-family:Helvetica;font-size:20px;font-weight:700;line-height:100%;text-align:left;vertical-align:middle;padding:0}.bodyContent,.footerContent{font-family:Helvetica;line-height:150%;text-align:left;}.footerContent{text-align:center}.bodyContent pre{padding:15px;background-color:#444;color:#f8f8f8;border:0}.bodyContent pre code{white-space:pre;word-break:normal;word-wrap:normal}.bodyContent table{margin:10px 0;background-color:#fff;border:1px solid #ddd}.bodyContent table th{padding:4px 10px;background-color:#f8f8f8;border:1px solid #ddd;font-weight:700;text-align:center}.bodyContent table td{padding:3px 8px;border:1px solid #ddd}.table-responsive{border:0}.bodyContent a{word-break:break-all}.headerContent a .yshortcuts,.headerContent a:link,.headerContent a:visited{color:#1f5d8c;font-weight:400;text-decoration:underline}#headerImage{height:auto;max-width:600px;padding:20px}#templateBody{background-color:#fff}.bodyContent{color:#505050;font-size:14px;padding:20px}.bodyContent a .yshortcuts,.bodyContent a:link,.bodyContent a:visited{color:#1f5d8c;font-weight:400;text-decoration:underline}.bodyContent a:hover{text-decoration:none}.bodyContent img{display:inline;height:auto;max-width:560px}.footerContent{color:grey;font-size:12px;padding:20px}.footerContent a .yshortcuts,.footerContent a span,.footerContent a:link,.footerContent a:visited{color:#606060;font-weight:400;text-decoration:underline}@media only screen and (max-width:640px){h1,h2,h3,h4{line-height:100%!important}#templateContainer{max-width:600px!important;width:100%!important}#templateContainer,body{width:100%!important}a,blockquote,body,li,p,table,td{-webkit-text-size-adjust:none!important}body{min-width:100%!important}#bodyCell{padding:10px!important}h1{font-size:24px!important}h2{font-size:20px!important}h3{font-size:18px!important}h4{font-size:16px!important}#templatePreheader{display:none!important}.headerContent{font-size:20px!important;line-height:125%!important}.footerContent{font-size:14px!important;line-height:115%!important}.footerContent a{display:block!important}.hide-mobile{display:none;}}", "0000-00-00 00:00:00", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("CurrencyAutoUpdateExchangeRates", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CurrencyAutoUpdateProductPrices", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("RequiredPWStrength", "50", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("MaintenanceMode", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("MaintenanceModeMessage", "We are currently performing maintenance and will be back shortly.", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("SkipFraudForExisting", "on", "0000-00-00 00:00:00", "2017-04-01 00:37:19");
INSERT INTO `wpos_whmpress_configuration` VALUES("SMTPSSL", "ssl", "0000-00-00 00:00:00", "2017-04-01 00:39:42");
INSERT INTO `wpos_whmpress_configuration` VALUES("ContactFormDept", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ContactFormTo", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TicketEscalationLastRun", "2017-04-04 10:10:07", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("APIAllowedIPs", "a:1:{i:0;a:2:{s:2:\"ip\";s:0:\"\";s:4:\"note\";s:0:\"\";}}", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("NOMD5", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DisableSessionIPCheck", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DisableSupportTicketReplyEmailsLogging", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("OverageBillingMethod", "1", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCNeverStore", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCAllowCustomerDelete", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateDomainInvoiceDaysBefore", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("NoInvoiceEmailOnOrder", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TaxInclusiveDeduct", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("LateFeeMinimum", "0.00", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoProvisionExistingOnly", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnableDomainRenewalOrders", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnableMassPay", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("NoAutoApplyCredit", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBeforeMonthly", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBeforeQuarterly", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBeforeSemiAnnually", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBeforeAnnually", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBeforeBiennially", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CreateInvoiceDaysBeforeTriennially", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ClientsProfileUneditableFields", "firstname,lastname", "0000-00-00 00:00:00", "2017-04-01 00:43:52");
INSERT INTO `wpos_whmpress_configuration` VALUES("ClientDisplayFormat", "3", "0000-00-00 00:00:00", "2017-04-01 00:43:52");
INSERT INTO `wpos_whmpress_configuration` VALUES("CCDoNotRemoveOnExpiry", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("GenerateRandomUsername", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddFundsRequireOrder", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("GroupSimilarLineItems", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("ProrataClientsAnniversaryDate", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TCPDFFont", "helvetica", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CancelInvoiceOnCancellation", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AttachmentThumbnails", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("EmailGlobalHeader", "&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;\r\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\r\n    &lt;head&gt;\r\n        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset={$charset}&quot; /&gt;\r\n        &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no&quot;&gt;\r\n        &lt;style type=&quot;text/css&quot;&gt;\r\n            [EmailCSS]\r\n        &lt;/style&gt;\r\n    &lt;/head&gt;\r\n    &lt;body leftmargin=&quot;0&quot; marginwidth=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; offset=&quot;0&quot;&gt;\r\n        &lt;center&gt;\r\n            &lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;100%&quot; width=&quot;100%&quot; id=&quot;bodyTable&quot;&gt;\r\n                &lt;tr&gt;\r\n                    &lt;td align=&quot;center&quot; valign=&quot;top&quot; id=&quot;bodyCell&quot;&gt;\r\n                        &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; id=&quot;templateContainer&quot;&gt;\r\n                            &lt;tr&gt;\r\n                                &lt;td align=&quot;center&quot; valign=&quot;top&quot;&gt;\r\n                                    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot; id=&quot;templateHeader&quot;&gt;\r\n                                        &lt;tr&gt;\r\n                                            &lt;td valign=&quot;top&quot; class=&quot;headerContent&quot;&gt;\r\n                                                &lt;a href=&quot;{$company_domain}&quot;&gt;\r\n                                                    &lt;img src=&quot;{$company_logo_url}&quot; style=&quot;max-width:600px;padding:20px&quot; id=&quot;headerImage&quot; alt=&quot;{$company_name}&quot; /&gt;\r\n                                            &lt;/td&gt;\r\n                                        &lt;/tr&gt;\r\n                                    &lt;/table&gt;\r\n                                &lt;/td&gt;\r\n                            &lt;/tr&gt;\r\n                            &lt;tr&gt;\r\n                                &lt;td align=&quot;center&quot; valign=&quot;top&quot;&gt;\r\n                                    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot; id=&quot;templateBody&quot;&gt;\r\n                                        &lt;tr&gt;\r\n                                            &lt;td valign=&quot;top&quot; class=&quot;bodyContent&quot;&gt;", "0000-00-00 00:00:00", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("EmailGlobalFooter", "&lt;/td&gt;\r\n                                        &lt;/tr&gt;\r\n                                    &lt;/table&gt;\r\n                                &lt;/td&gt;\r\n                            &lt;/tr&gt;\r\n                            &lt;tr&gt;\r\n                                &lt;td align=&quot;center&quot; valign=&quot;top&quot;&gt;\r\n                                    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot; id=&quot;templateFooter&quot;&gt;\r\n                                        &lt;tr&gt;\r\n                                            &lt;td valign=&quot;top&quot; class=&quot;footerContent&quot;&gt;\r\n                                                 &lt;a href=&quot;{$company_domain}&quot;&gt;visit our website&lt;/a&gt;\r\n                                                &lt;span class=&quot;hide-mobile&quot;&gt; | &lt;/span&gt;\r\n                                                &lt;a href=&quot;{$whmcs_url}&quot;&gt;log in to your account&lt;/a&gt;\r\n                                                &lt;span class=&quot;hide-mobile&quot;&gt; | &lt;/span&gt;\r\n                                                &lt;a href=&quot;{$whmcs_url}submitticket.php&quot;&gt;get support&lt;/a&gt; &lt;br /&gt;\r\n                                                Copyright © {$company_name}, All rights reserved.\r\n                                            &lt;/td&gt;\r\n                                        &lt;/tr&gt;\r\n                                    &lt;/table&gt;\r\n                                &lt;/td&gt;\r\n                            &lt;/tr&gt;\r\n                        &lt;/table&gt;\r\n                    &lt;/td&gt;\r\n                &lt;/tr&gt;\r\n            &lt;/table&gt;\r\n        &lt;/center&gt;\r\n    &lt;/body&gt;\r\n&lt;/html&gt;", "0000-00-00 00:00:00", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainSyncEnabled", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainSyncNextDueDate", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainSyncNextDueDateDays", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("TicketMask", "%n%n%n%n%n%n", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoClientStatusChange", "3", "0000-00-00 00:00:00", "2017-04-01 00:45:39");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowClientsEmailOptOut", "", "0000-00-00 00:00:00", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("BannedSubdomainPrefixes", "mail,mx,gapps,gmail,webmail,cpanel,whm,ftp,clients,billing,members,login,accounts,access", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("FreeDomainAutoRenewRequiresProduct", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainToDoListEntries", "", "0000-00-00 00:00:00", "2017-04-01 00:37:59");
INSERT INTO `wpos_whmpress_configuration` VALUES("Version", "7.1.2-release.1", "0000-00-00 00:00:00", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("OrderDaysGrace", "2", "0000-00-00 00:00:00", "2017-04-01 00:37:18");
INSERT INTO `wpos_whmpress_configuration` VALUES("OrderFormSidebarToggle", "1", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("CutUtf8Mb4", "on", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("MDEFromTime", "2017-03-31 16:13:24", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("UpdaterLatestVersion", "7.1.2-release.1", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("UpdaterLatestBetaVersion", "7.1.2-release.1", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("UpdaterLatestStableVersion", "7.1.2-release.1", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("UpdaterLatestSupportAndUpdatesVersion", "7.1.2-release.1", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("DailyCronExecutionHour", "09", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("PremiumDomains", "0", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("ModuleHooks", "cpanel", "2017-03-31 11:13:24", "2017-03-31 21:43:04");
INSERT INTO `wpos_whmpress_configuration` VALUES("AddonModulesHooks", "", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("WHMCSUpdatePinVersion", "stable", "2017-03-31 11:13:24", "2017-03-31 11:13:24");
INSERT INTO `wpos_whmpress_configuration` VALUES("InstanceID", "ZtnxJya5MmFR", "2017-03-31 21:19:47", "2017-03-31 21:19:47");
INSERT INTO `wpos_whmpress_configuration` VALUES("token_namespaces", "a:3:{s:13:\"WHMCS.default\";b:1;s:19:\"WHMCS.admin.default\";b:1;s:19:\"WHMCS.domainchecker\";b:0;}", "2017-03-31 21:19:47", "2017-03-31 21:19:47");
INSERT INTO `wpos_whmpress_configuration` VALUES("DisableSetupWizard", "1", "2017-03-31 21:20:14", "2017-03-31 21:20:14");
INSERT INTO `wpos_whmpress_configuration` VALUES("MaintenanceModeURL", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("ClientDateFormat", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnableTranslations", "0", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("DomainSyncNotifyOnly", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowIDNDomains", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultNameserver5", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("MailEncoding", "0", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("TicketEmailLimit", "10", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("ShowClientOnlyDepts", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("PreventEmailReopening", "0", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("UpdateLastReplyTimestamp", "always", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("DownloadsIncludeProductLinked", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("PDFPaperSize", "A4", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("StoreClientDataSnapshotOnInvoiceCreation", "on", "2017-04-01 00:29:33", "2017-04-01 00:41:03");
INSERT INTO `wpos_whmpress_configuration` VALUES("AutoCancelSubscriptions", "", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnableProformaInvoicing", "0", "2017-04-01 00:29:33", "2017-04-01 00:29:33");
INSERT INTO `wpos_whmpress_configuration` VALUES("AffiliateDepartment", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("CaptchaType", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("ReCAPTCHAPublicKey", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("ReCAPTCHAPrivateKey", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("EnableEmailVerification", "1", "2017-04-01 00:29:34", "2017-04-01 00:41:56");
INSERT INTO `wpos_whmpress_configuration` VALUES("sendFailedLoginWhitelist", "0", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("DisableAdminPWReset", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("AllowSmartyPhpTags", "0", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("proxyHeader", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("LogAPIAuthentication", "0", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("TwitterUsername", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("AnnouncementsTweet", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("AnnouncementsFBRecommend", "on", "2017-04-01 00:29:34", "2017-04-01 00:42:19");
INSERT INTO `wpos_whmpress_configuration` VALUES("AnnouncementsFBComments", "on", "2017-04-01 00:29:34", "2017-04-01 00:42:19");
INSERT INTO `wpos_whmpress_configuration` VALUES("GooglePlus1", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("DefaultToClientArea", "", "2017-04-01 00:29:34", "2017-04-01 15:54:05");
INSERT INTO `wpos_whmpress_configuration` VALUES("ClientsProfileOptionalFields", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("DisplayErrors", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("SQLErrorReporting", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("HooksDebugMode", "", "2017-04-01 00:29:34", "2017-04-01 00:29:34");
INSERT INTO `wpos_whmpress_configuration` VALUES("lastDailyCronInvocationTime", "2017-04-04 09:10:34", "2017-04-01 09:10:06", "2017-04-04 09:10:36");
INSERT INTO `wpos_whmpress_configuration` VALUES("FTPBackupPort", "21", "0000-00-00 00:00:00", "0000-00-00 00:00:00");
INSERT INTO `wpos_whmpress_configuration` VALUES("FTPPassiveMode", "", "0000-00-00 00:00:00", "0000-00-00 00:00:00");

/* INSERT TABLE DATA: wpos_whmpress_countries */
INSERT INTO `wpos_whmpress_countries` VALUES("1", "US", "United States");
INSERT INTO `wpos_whmpress_countries` VALUES("2", "CA", "Canada");
INSERT INTO `wpos_whmpress_countries` VALUES("3", "AF", "Afghanistan");
INSERT INTO `wpos_whmpress_countries` VALUES("4", "AL", "Albania");
INSERT INTO `wpos_whmpress_countries` VALUES("5", "DZ", "Algeria");
INSERT INTO `wpos_whmpress_countries` VALUES("6", "DS", "American Samoa");
INSERT INTO `wpos_whmpress_countries` VALUES("7", "AD", "Andorra");
INSERT INTO `wpos_whmpress_countries` VALUES("8", "AO", "Angola");
INSERT INTO `wpos_whmpress_countries` VALUES("9", "AI", "Anguilla");
INSERT INTO `wpos_whmpress_countries` VALUES("10", "AQ", "Antarctica");
INSERT INTO `wpos_whmpress_countries` VALUES("11", "AG", "Antigua and/or Barbuda");
INSERT INTO `wpos_whmpress_countries` VALUES("12", "AR", "Argentina");
INSERT INTO `wpos_whmpress_countries` VALUES("13", "AM", "Armenia");
INSERT INTO `wpos_whmpress_countries` VALUES("14", "AW", "Aruba");
INSERT INTO `wpos_whmpress_countries` VALUES("15", "AU", "Australia");
INSERT INTO `wpos_whmpress_countries` VALUES("16", "AT", "Austria");
INSERT INTO `wpos_whmpress_countries` VALUES("17", "AZ", "Azerbaijan");
INSERT INTO `wpos_whmpress_countries` VALUES("18", "BS", "Bahamas");
INSERT INTO `wpos_whmpress_countries` VALUES("19", "BH", "Bahrain");
INSERT INTO `wpos_whmpress_countries` VALUES("20", "BD", "Bangladesh");
INSERT INTO `wpos_whmpress_countries` VALUES("21", "BB", "Barbados");
INSERT INTO `wpos_whmpress_countries` VALUES("22", "BY", "Belarus");
INSERT INTO `wpos_whmpress_countries` VALUES("23", "BE", "Belgium");
INSERT INTO `wpos_whmpress_countries` VALUES("24", "BZ", "Belize");
INSERT INTO `wpos_whmpress_countries` VALUES("25", "BJ", "Benin");
INSERT INTO `wpos_whmpress_countries` VALUES("26", "BM", "Bermuda");
INSERT INTO `wpos_whmpress_countries` VALUES("27", "BT", "Bhutan");
INSERT INTO `wpos_whmpress_countries` VALUES("28", "BO", "Bolivia");
INSERT INTO `wpos_whmpress_countries` VALUES("29", "BA", "Bosnia and Herzegovina");
INSERT INTO `wpos_whmpress_countries` VALUES("30", "BW", "Botswana");
INSERT INTO `wpos_whmpress_countries` VALUES("31", "BV", "Bouvet Island");
INSERT INTO `wpos_whmpress_countries` VALUES("32", "BR", "Brazil");
INSERT INTO `wpos_whmpress_countries` VALUES("33", "IO", "British Indian Ocean Territory");
INSERT INTO `wpos_whmpress_countries` VALUES("34", "BN", "Brunei Darussalam");
INSERT INTO `wpos_whmpress_countries` VALUES("35", "BG", "Bulgaria");
INSERT INTO `wpos_whmpress_countries` VALUES("36", "BF", "Burkina Faso");
INSERT INTO `wpos_whmpress_countries` VALUES("37", "BI", "Burundi");
INSERT INTO `wpos_whmpress_countries` VALUES("38", "KH", "Cambodia");
INSERT INTO `wpos_whmpress_countries` VALUES("39", "CM", "Cameroon");
INSERT INTO `wpos_whmpress_countries` VALUES("40", "CV", "Cape Verde");
INSERT INTO `wpos_whmpress_countries` VALUES("41", "KY", "Cayman Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("42", "CF", "Central African Republic");
INSERT INTO `wpos_whmpress_countries` VALUES("43", "TD", "Chad");
INSERT INTO `wpos_whmpress_countries` VALUES("44", "CL", "Chile");
INSERT INTO `wpos_whmpress_countries` VALUES("45", "CN", "China");
INSERT INTO `wpos_whmpress_countries` VALUES("46", "CX", "Christmas Island");
INSERT INTO `wpos_whmpress_countries` VALUES("47", "CC", "Cocos (Keeling) Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("48", "CO", "Colombia");
INSERT INTO `wpos_whmpress_countries` VALUES("49", "KM", "Comoros");
INSERT INTO `wpos_whmpress_countries` VALUES("50", "CG", "Congo");
INSERT INTO `wpos_whmpress_countries` VALUES("51", "CK", "Cook Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("52", "CR", "Costa Rica");
INSERT INTO `wpos_whmpress_countries` VALUES("53", "HR", "Croatia (Hrvatska)");
INSERT INTO `wpos_whmpress_countries` VALUES("54", "CU", "Cuba");
INSERT INTO `wpos_whmpress_countries` VALUES("55", "CY", "Cyprus");
INSERT INTO `wpos_whmpress_countries` VALUES("56", "CZ", "Czech Republic");
INSERT INTO `wpos_whmpress_countries` VALUES("57", "DK", "Denmark");
INSERT INTO `wpos_whmpress_countries` VALUES("58", "DJ", "Djibouti");
INSERT INTO `wpos_whmpress_countries` VALUES("59", "DM", "Dominica");
INSERT INTO `wpos_whmpress_countries` VALUES("60", "DO", "Dominican Republic");
INSERT INTO `wpos_whmpress_countries` VALUES("61", "TP", "East Timor");
INSERT INTO `wpos_whmpress_countries` VALUES("62", "EC", "Ecuador");
INSERT INTO `wpos_whmpress_countries` VALUES("63", "EG", "Egypt");
INSERT INTO `wpos_whmpress_countries` VALUES("64", "SV", "El Salvador");
INSERT INTO `wpos_whmpress_countries` VALUES("65", "GQ", "Equatorial Guinea");
INSERT INTO `wpos_whmpress_countries` VALUES("66", "ER", "Eritrea");
INSERT INTO `wpos_whmpress_countries` VALUES("67", "EE", "Estonia");
INSERT INTO `wpos_whmpress_countries` VALUES("68", "ET", "Ethiopia");
INSERT INTO `wpos_whmpress_countries` VALUES("69", "FK", "Falkland Islands (Malvinas)");
INSERT INTO `wpos_whmpress_countries` VALUES("70", "FO", "Faroe Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("71", "FJ", "Fiji");
INSERT INTO `wpos_whmpress_countries` VALUES("72", "FI", "Finland");
INSERT INTO `wpos_whmpress_countries` VALUES("73", "FR", "France");
INSERT INTO `wpos_whmpress_countries` VALUES("74", "FX", "France, Metropolitan");
INSERT INTO `wpos_whmpress_countries` VALUES("75", "GF", "French Guiana");
INSERT INTO `wpos_whmpress_countries` VALUES("76", "PF", "French Polynesia");
INSERT INTO `wpos_whmpress_countries` VALUES("77", "TF", "French Southern Territories");
INSERT INTO `wpos_whmpress_countries` VALUES("78", "GA", "Gabon");
INSERT INTO `wpos_whmpress_countries` VALUES("79", "GM", "Gambia");
INSERT INTO `wpos_whmpress_countries` VALUES("80", "GE", "Georgia");
INSERT INTO `wpos_whmpress_countries` VALUES("81", "DE", "Germany");
INSERT INTO `wpos_whmpress_countries` VALUES("82", "GH", "Ghana");
INSERT INTO `wpos_whmpress_countries` VALUES("83", "GI", "Gibraltar");
INSERT INTO `wpos_whmpress_countries` VALUES("246", "GK", "Guernsey");
INSERT INTO `wpos_whmpress_countries` VALUES("84", "GR", "Greece");
INSERT INTO `wpos_whmpress_countries` VALUES("85", "GL", "Greenland");
INSERT INTO `wpos_whmpress_countries` VALUES("86", "GD", "Grenada");
INSERT INTO `wpos_whmpress_countries` VALUES("87", "GP", "Guadeloupe");
INSERT INTO `wpos_whmpress_countries` VALUES("88", "GU", "Guam");
INSERT INTO `wpos_whmpress_countries` VALUES("89", "GT", "Guatemala");
INSERT INTO `wpos_whmpress_countries` VALUES("90", "GN", "Guinea");
INSERT INTO `wpos_whmpress_countries` VALUES("91", "GW", "Guinea-Bissau");
INSERT INTO `wpos_whmpress_countries` VALUES("92", "GY", "Guyana");
INSERT INTO `wpos_whmpress_countries` VALUES("93", "HT", "Haiti");
INSERT INTO `wpos_whmpress_countries` VALUES("94", "HM", "Heard and Mc Donald Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("95", "HN", "Honduras");
INSERT INTO `wpos_whmpress_countries` VALUES("96", "HK", "Hong Kong");
INSERT INTO `wpos_whmpress_countries` VALUES("97", "HU", "Hungary");
INSERT INTO `wpos_whmpress_countries` VALUES("98", "IS", "Iceland");
INSERT INTO `wpos_whmpress_countries` VALUES("99", "IN", "India");
INSERT INTO `wpos_whmpress_countries` VALUES("244", "IM", "Isle of Man");
INSERT INTO `wpos_whmpress_countries` VALUES("100", "ID", "Indonesia");
INSERT INTO `wpos_whmpress_countries` VALUES("101", "IR", "Iran (Islamic Republic of)");
INSERT INTO `wpos_whmpress_countries` VALUES("102", "IQ", "Iraq");
INSERT INTO `wpos_whmpress_countries` VALUES("103", "IE", "Ireland");
INSERT INTO `wpos_whmpress_countries` VALUES("104", "IL", "Israel");
INSERT INTO `wpos_whmpress_countries` VALUES("105", "IT", "Italy");
INSERT INTO `wpos_whmpress_countries` VALUES("106", "CI", "Ivory Coast");
INSERT INTO `wpos_whmpress_countries` VALUES("245", "JE", "Jersey");
INSERT INTO `wpos_whmpress_countries` VALUES("107", "JM", "Jamaica");
INSERT INTO `wpos_whmpress_countries` VALUES("108", "JP", "Japan");
INSERT INTO `wpos_whmpress_countries` VALUES("109", "JO", "Jordan");
INSERT INTO `wpos_whmpress_countries` VALUES("110", "KZ", "Kazakhstan");
INSERT INTO `wpos_whmpress_countries` VALUES("111", "KE", "Kenya");
INSERT INTO `wpos_whmpress_countries` VALUES("112", "KI", "Kiribati");
INSERT INTO `wpos_whmpress_countries` VALUES("113", "KP", "Korea, Democratic People\'s Republic of");
INSERT INTO `wpos_whmpress_countries` VALUES("114", "KR", "Korea, Republic of");
INSERT INTO `wpos_whmpress_countries` VALUES("115", "XK", "Kosovo");
INSERT INTO `wpos_whmpress_countries` VALUES("116", "KW", "Kuwait");
INSERT INTO `wpos_whmpress_countries` VALUES("117", "KG", "Kyrgyzstan");
INSERT INTO `wpos_whmpress_countries` VALUES("118", "LA", "Lao People\'s Democratic Republic");
INSERT INTO `wpos_whmpress_countries` VALUES("119", "LV", "Latvia");
INSERT INTO `wpos_whmpress_countries` VALUES("120", "LB", "Lebanon");
INSERT INTO `wpos_whmpress_countries` VALUES("121", "LS", "Lesotho");
INSERT INTO `wpos_whmpress_countries` VALUES("122", "LR", "Liberia");
INSERT INTO `wpos_whmpress_countries` VALUES("123", "LY", "Libyan Arab Jamahiriya");
INSERT INTO `wpos_whmpress_countries` VALUES("124", "LI", "Liechtenstein");
INSERT INTO `wpos_whmpress_countries` VALUES("125", "LT", "Lithuania");
INSERT INTO `wpos_whmpress_countries` VALUES("126", "LU", "Luxembourg");
INSERT INTO `wpos_whmpress_countries` VALUES("127", "MO", "Macau");
INSERT INTO `wpos_whmpress_countries` VALUES("128", "MK", "Macedonia");
INSERT INTO `wpos_whmpress_countries` VALUES("129", "MG", "Madagascar");
INSERT INTO `wpos_whmpress_countries` VALUES("130", "MW", "Malawi");
INSERT INTO `wpos_whmpress_countries` VALUES("131", "MY", "Malaysia");
INSERT INTO `wpos_whmpress_countries` VALUES("132", "MV", "Maldives");
INSERT INTO `wpos_whmpress_countries` VALUES("133", "ML", "Mali");
INSERT INTO `wpos_whmpress_countries` VALUES("134", "MT", "Malta");
INSERT INTO `wpos_whmpress_countries` VALUES("135", "MH", "Marshall Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("136", "MQ", "Martinique");
INSERT INTO `wpos_whmpress_countries` VALUES("137", "MR", "Mauritania");
INSERT INTO `wpos_whmpress_countries` VALUES("138", "MU", "Mauritius");
INSERT INTO `wpos_whmpress_countries` VALUES("139", "TY", "Mayotte");
INSERT INTO `wpos_whmpress_countries` VALUES("140", "MX", "Mexico");
INSERT INTO `wpos_whmpress_countries` VALUES("141", "FM", "Micronesia, Federated States of");
INSERT INTO `wpos_whmpress_countries` VALUES("142", "MD", "Moldova, Republic of");
INSERT INTO `wpos_whmpress_countries` VALUES("143", "MC", "Monaco");
INSERT INTO `wpos_whmpress_countries` VALUES("144", "MN", "Mongolia");
INSERT INTO `wpos_whmpress_countries` VALUES("145", "ME", "Montenegro");
INSERT INTO `wpos_whmpress_countries` VALUES("146", "MS", "Montserrat");
INSERT INTO `wpos_whmpress_countries` VALUES("147", "MA", "Morocco");
INSERT INTO `wpos_whmpress_countries` VALUES("148", "MZ", "Mozambique");
INSERT INTO `wpos_whmpress_countries` VALUES("149", "MM", "Myanmar");
INSERT INTO `wpos_whmpress_countries` VALUES("150", "NA", "Namibia");
INSERT INTO `wpos_whmpress_countries` VALUES("151", "NR", "Nauru");
INSERT INTO `wpos_whmpress_countries` VALUES("152", "NP", "Nepal");
INSERT INTO `wpos_whmpress_countries` VALUES("153", "NL", "Netherlands");
INSERT INTO `wpos_whmpress_countries` VALUES("154", "AN", "Netherlands Antilles");
INSERT INTO `wpos_whmpress_countries` VALUES("155", "NC", "New Caledonia");
INSERT INTO `wpos_whmpress_countries` VALUES("156", "NZ", "New Zealand");
INSERT INTO `wpos_whmpress_countries` VALUES("157", "NI", "Nicaragua");
INSERT INTO `wpos_whmpress_countries` VALUES("158", "NE", "Niger");
INSERT INTO `wpos_whmpress_countries` VALUES("159", "NG", "Nigeria");
INSERT INTO `wpos_whmpress_countries` VALUES("160", "NU", "Niue");
INSERT INTO `wpos_whmpress_countries` VALUES("161", "NF", "Norfolk Island");
INSERT INTO `wpos_whmpress_countries` VALUES("162", "MP", "Northern Mariana Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("163", "NO", "Norway");
INSERT INTO `wpos_whmpress_countries` VALUES("164", "OM", "Oman");
INSERT INTO `wpos_whmpress_countries` VALUES("165", "PK", "Pakistan");
INSERT INTO `wpos_whmpress_countries` VALUES("166", "PW", "Palau");
INSERT INTO `wpos_whmpress_countries` VALUES("243", "PS", "Palestine");
INSERT INTO `wpos_whmpress_countries` VALUES("167", "PA", "Panama");
INSERT INTO `wpos_whmpress_countries` VALUES("168", "PG", "Papua New Guinea");
INSERT INTO `wpos_whmpress_countries` VALUES("169", "PY", "Paraguay");
INSERT INTO `wpos_whmpress_countries` VALUES("170", "PE", "Peru");
INSERT INTO `wpos_whmpress_countries` VALUES("171", "PH", "Philippines");
INSERT INTO `wpos_whmpress_countries` VALUES("172", "PN", "Pitcairn");
INSERT INTO `wpos_whmpress_countries` VALUES("173", "PL", "Poland");
INSERT INTO `wpos_whmpress_countries` VALUES("174", "PT", "Portugal");
INSERT INTO `wpos_whmpress_countries` VALUES("175", "PR", "Puerto Rico");
INSERT INTO `wpos_whmpress_countries` VALUES("176", "QA", "Qatar");
INSERT INTO `wpos_whmpress_countries` VALUES("177", "RE", "Reunion");
INSERT INTO `wpos_whmpress_countries` VALUES("178", "RO", "Romania");
INSERT INTO `wpos_whmpress_countries` VALUES("179", "RU", "Russian Federation");
INSERT INTO `wpos_whmpress_countries` VALUES("180", "RW", "Rwanda");
INSERT INTO `wpos_whmpress_countries` VALUES("181", "KN", "Saint Kitts and Nevis");
INSERT INTO `wpos_whmpress_countries` VALUES("182", "LC", "Saint Lucia");
INSERT INTO `wpos_whmpress_countries` VALUES("183", "VC", "Saint Vincent and the Grenadines");
INSERT INTO `wpos_whmpress_countries` VALUES("184", "WS", "Samoa");
INSERT INTO `wpos_whmpress_countries` VALUES("185", "SM", "San Marino");
INSERT INTO `wpos_whmpress_countries` VALUES("186", "ST", "Sao Tome and Principe");
INSERT INTO `wpos_whmpress_countries` VALUES("187", "SA", "Saudi Arabia");
INSERT INTO `wpos_whmpress_countries` VALUES("188", "SN", "Senegal");
INSERT INTO `wpos_whmpress_countries` VALUES("189", "RS", "Serbia");
INSERT INTO `wpos_whmpress_countries` VALUES("190", "SC", "Seychelles");
INSERT INTO `wpos_whmpress_countries` VALUES("191", "SL", "Sierra Leone");
INSERT INTO `wpos_whmpress_countries` VALUES("192", "SG", "Singapore");
INSERT INTO `wpos_whmpress_countries` VALUES("193", "SK", "Slovakia");
INSERT INTO `wpos_whmpress_countries` VALUES("194", "SI", "Slovenia");
INSERT INTO `wpos_whmpress_countries` VALUES("195", "SB", "Solomon Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("196", "SO", "Somalia");
INSERT INTO `wpos_whmpress_countries` VALUES("197", "ZA", "South Africa");
INSERT INTO `wpos_whmpress_countries` VALUES("198", "GS", "South Georgia South Sandwich Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("199", "ES", "Spain");
INSERT INTO `wpos_whmpress_countries` VALUES("200", "LK", "Sri Lanka");
INSERT INTO `wpos_whmpress_countries` VALUES("201", "SH", "St. Helena");
INSERT INTO `wpos_whmpress_countries` VALUES("202", "PM", "St. Pierre and Miquelon");
INSERT INTO `wpos_whmpress_countries` VALUES("203", "SD", "Sudan");
INSERT INTO `wpos_whmpress_countries` VALUES("204", "SR", "Suriname");
INSERT INTO `wpos_whmpress_countries` VALUES("205", "SJ", "Svalbard and Jan Mayen Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("206", "SZ", "Swaziland");
INSERT INTO `wpos_whmpress_countries` VALUES("207", "SE", "Sweden");
INSERT INTO `wpos_whmpress_countries` VALUES("208", "CH", "Switzerland");
INSERT INTO `wpos_whmpress_countries` VALUES("209", "SY", "Syrian Arab Republic");
INSERT INTO `wpos_whmpress_countries` VALUES("210", "TW", "Taiwan");
INSERT INTO `wpos_whmpress_countries` VALUES("211", "TJ", "Tajikistan");
INSERT INTO `wpos_whmpress_countries` VALUES("212", "TZ", "Tanzania, United Republic of");
INSERT INTO `wpos_whmpress_countries` VALUES("213", "TH", "Thailand");
INSERT INTO `wpos_whmpress_countries` VALUES("214", "TG", "Togo");
INSERT INTO `wpos_whmpress_countries` VALUES("215", "TK", "Tokelau");
INSERT INTO `wpos_whmpress_countries` VALUES("216", "TO", "Tonga");
INSERT INTO `wpos_whmpress_countries` VALUES("217", "TT", "Trinidad and Tobago");
INSERT INTO `wpos_whmpress_countries` VALUES("218", "TN", "Tunisia");
INSERT INTO `wpos_whmpress_countries` VALUES("219", "TR", "Turkey");
INSERT INTO `wpos_whmpress_countries` VALUES("220", "TM", "Turkmenistan");
INSERT INTO `wpos_whmpress_countries` VALUES("221", "TC", "Turks and Caicos Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("222", "TV", "Tuvalu");
INSERT INTO `wpos_whmpress_countries` VALUES("223", "UG", "Uganda");
INSERT INTO `wpos_whmpress_countries` VALUES("224", "UA", "Ukraine");
INSERT INTO `wpos_whmpress_countries` VALUES("225", "AE", "United Arab Emirates");
INSERT INTO `wpos_whmpress_countries` VALUES("226", "GB", "United Kingdom");
INSERT INTO `wpos_whmpress_countries` VALUES("227", "UM", "United States minor outlying islands");
INSERT INTO `wpos_whmpress_countries` VALUES("228", "UY", "Uruguay");
INSERT INTO `wpos_whmpress_countries` VALUES("229", "UZ", "Uzbekistan");
INSERT INTO `wpos_whmpress_countries` VALUES("230", "VU", "Vanuatu");
INSERT INTO `wpos_whmpress_countries` VALUES("231", "VA", "Vatican City State");
INSERT INTO `wpos_whmpress_countries` VALUES("232", "VE", "Venezuela");
INSERT INTO `wpos_whmpress_countries` VALUES("233", "VN", "Vietnam");
INSERT INTO `wpos_whmpress_countries` VALUES("234", "VG", "Virgin Islands (British)");
INSERT INTO `wpos_whmpress_countries` VALUES("235", "VI", "Virgin Islands (U.S.)");
INSERT INTO `wpos_whmpress_countries` VALUES("236", "WF", "Wallis and Futuna Islands");
INSERT INTO `wpos_whmpress_countries` VALUES("237", "EH", "Western Sahara");
INSERT INTO `wpos_whmpress_countries` VALUES("238", "YE", "Yemen");
INSERT INTO `wpos_whmpress_countries` VALUES("239", "YU", "Yugoslavia");
INSERT INTO `wpos_whmpress_countries` VALUES("240", "ZR", "Zaire");
INSERT INTO `wpos_whmpress_countries` VALUES("241", "ZM", "Zambia");
INSERT INTO `wpos_whmpress_countries` VALUES("242", "ZW", "Zimbabwe");

/* INSERT TABLE DATA: wpos_whmpress_currencies */
INSERT INTO `wpos_whmpress_currencies` VALUES("1", "EUR", "€", "EUR", "1", "1.00000", "1");

/* INSERT TABLE DATA: wpos_whmpress_pricing */
INSERT INTO `wpos_whmpress_pricing` VALUES("1", "product", "1", "1", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "-1.00", "-1.00", "-1.00", "30.00", "-1.00", "-1.00");
INSERT INTO `wpos_whmpress_pricing` VALUES("2", "product", "1", "2", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "-1.00", "-1.00", "-1.00", "40.00", "-1.00", "-1.00");
INSERT INTO `wpos_whmpress_pricing` VALUES("3", "product", "1", "3", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "-1.00", "-1.00", "-1.00", "15.00", "-1.00", "-1.00");
INSERT INTO `wpos_whmpress_pricing` VALUES("4", "product", "1", "4", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "-1.00", "-1.00", "-1.00", "20.00", "-1.00", "-1.00");
INSERT INTO `wpos_whmpress_pricing` VALUES("5", "product", "1", "5", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "-1.00", "-1.00", "-1.00", "20.00", "-1.00", "-1.00");
INSERT INTO `wpos_whmpress_pricing` VALUES("6", "product", "1", "6", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "-1.00", "-1.00", "-1.00", "-1.00", "-1.00", "-1.00");

/* INSERT TABLE DATA: wpos_whmpress_productgroups */
INSERT INTO `wpos_whmpress_productgroups` VALUES("1", "Premium Hosting", "Escolha o que mais se adequa", "", "supreme_comparison", "", "0", "1", "2017-03-31 21:34:27", "2017-03-31 21:36:08");
INSERT INTO `wpos_whmpress_productgroups` VALUES("2", "MLK Care Hosting", "Porque a vida é muito mais que euros.", "Garantimos um excelente serviço", "premium_comparison", "", "1", "2", "2017-03-31 21:38:29", "2017-04-01 22:34:20");

/* INSERT TABLE DATA: wpos_whmpress_products */
INSERT INTO `wpos_whmpress_products` VALUES("1", "hostingaccount", "1", "GOLD", "100 Gigas\r\nContas de FTP Ilimitadas\r\nContas de Email Ilimitadas\r\nSubdominios Ilimitados\r\nBases de Dados Ilimitadas\r\nWebsite Builder\r\nSoftaculous\r\n1 Dominio Adicional\r\n3 Dominios Parqueados\r\nAnti-Spam Profissional", "0", "1", "1", "0", "0", "0", "0", "0", "recurring", "1", "", "on", "cpanel", "0", "mlkpt_Base100G", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0", "0", "0", "0", "", "0", "", "0", "0", "0.0000", "0.0000", "0", "0", "", "0.00", "0", "0", "1", "2017-03-31 21:39:44", "2017-04-01 15:42:11");
INSERT INTO `wpos_whmpress_products` VALUES("2", "hostingaccount", "1", "DIAMOND", "250Gigas\r\nContas de FTP Ilimitadas\r\nContas de Email Ilimitadas\r\nSubdominios Ilimitados\r\nBases de Dados Ilimitadas\r\nWebsite Builder\r\nSoftaculous\r\n3 Dominio Adicional\r\n15 Dominios Parqueados\r\nAnti-Spam Profissional", "0", "1", "1", "0", "0", "0", "0", "0", "recurring", "1", "", "on", "cpanel", "0", "mlkpt_Base250G", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0", "0", "0", "0", "", "0", "", "0", "0", "0.0000", "0.0000", "0", "0", "", "0.00", "1", "0", "0", "2017-03-31 21:57:15", "2017-04-01 15:43:03");
INSERT INTO `wpos_whmpress_products` VALUES("5", "hostingaccount", "1", "SILVER", "50 Gigas\r\nContas de FTP Ilimitadas\r\nContas de Email Ilimitadas\r\nSubdominios Ilimitados\r\nBases de Dados Ilimitadas\r\nSSL\r\nAnti-Spam Profissional\r\nSoftaculous", "0", "1", "1", "0", "0", "0", "0", "0", "recurring", "1", "", "on", "cpanel", "0", "BASE50G", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0", "0", "0", "0", "", "0", "", "0", "0", "0.0000", "0.0000", "0", "0", "", "0.00", "2", "0", "0", "2017-04-01 22:14:29", "2017-04-01 22:29:41");
INSERT INTO `wpos_whmpress_products` VALUES("6", "hostingaccount", "2", "MLK Care Hosting", "50 Gigas\r\nContas de FTP Ilimitadas\r\nContas de Email Ilimitadas\r\nSubdominios Ilimitados\r\nBases de Dados Ilimitadas\r\nWebsite Builder\r\nSoftaculous\r\nAnti-Spam Profissional\r\nAnti-Virus ", "0", "1", "1", "0", "0", "0", "0", "0", "free", "0", "", "on", "cpanel", "1", "LC50G", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0", "0", "0", "0", "", "0", "", "0", "0", "0.0000", "0.0000", "0", "0", "", "0.00", "0", "0", "0", "2017-04-01 22:31:08", "2017-04-01 22:33:31");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2017-05-22 15:35:58*/
/* DUPLICATOR_MYSQLDUMP_EOF */
